.haberler-page {
    position: relative;
    z-index: 5;
    width: min(calc(100% - 48px), 1140px);
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 90px;
}

.haberler-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(12, 16, 28, 0.85);
    backdrop-filter: blur(12px);
    color: #8c97ab;
    font-size: 13px;
}

.haberler-breadcrumb a { color: #8c97ab; transition: color 0.2s; }
.haberler-breadcrumb a:hover { color: #ff7418; }
.haberler-breadcrumb i { color: #5f6c82; font-style: normal; }
.haberler-breadcrumb strong { color: #fff; font-weight: 800; }

.page-title {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.haberler-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* FOTOĞRAFTAKİ BİREBİR YATAY HABER KARTI */
.haber-horizontal-card {
    display: grid;
    grid-template-columns: 460px 1fr;
    background: rgba(12, 16, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.haber-horizontal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 116, 24, 0.4);
    box-shadow: 0 20px 50px rgba(255, 116, 24, 0.15);
}

.card-thumb {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header-info {
    font-size: 12px;
    font-weight: 800;
    color: #ff7418;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card-header-info span {
    color: #8c97ab;
    font-weight: 600;
    margin-left: 6px;
}

.card-details h2 {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.card-details p {
    color: #8c97ab;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.card-btn-area {
    display: flex;
    justify-content: flex-end;
}

.btn-devam {
    background: linear-gradient(90deg, #ff7418, #ff922f);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    box-shadow: 0 6px 20px rgba(255, 116, 24, 0.3);
}

.btn-devam:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .haber-horizontal-card {
        grid-template-columns: 1fr;
    }
    .card-thumb {
        height: 240px;
    }
}