/* =========================================
       HABERLER BÖLÜMÜ STİLLERİ
       ========================================= */
    
    .news-section {
        padding: 100px 0;
        background-color: #f9fafb; /* Çok açık gri zemin (Ayrım için) */
    }

    /* Başlık Alanı */
    .section-header { margin-bottom: 50px; }
    .sub-title {
        display: block;
        color: var(--white);
        font-weight: 700;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .header-line {
        width: 60px;
        height: 3px;
        background-color: var(--white);
        margin: 20px auto 0;
    }

    /* KART YAPISI */
    .news-card {
        background-color: var(--white);
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        height: 100%; /* Sütun yüksekliğini doldur */
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0,0,0,0.03);
    }

    .news-card:hover {
        transform: translateY(-10px); /* Yukarı kalkma */
        box-shadow: 0 15px 30px rgba(13, 23, 60, 0.15);
    }

    /* Resim Alanı */
    .news-img-box {
        position: relative;
        height: 240px; /* Sabit yükseklik */
        overflow: hidden;
    }

    .news-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .news-card:hover .news-img-box img {
        transform: scale(1.1); /* Zoom efekti */
    }

    /* Link Overlay (Tüm resme tıklanabilmesi için) */
    .img-link-overlay {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;
    }

    /* Tarih Rozeti */
    .date-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: var(--accent); /* Sarı */
        color: var(--primary-1000); /* Koyu yazı */
        padding: 8px 12px;
        border-radius: 4px;
        text-align: center;
        z-index: 3;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        line-height: 1.2;
    }

    .date-badge .day {
        display: block;
        font-size: 1.2rem;
        font-weight: 800;
    }

    .date-badge .month {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    /* İçerik Alanı */
    .news-content {
        padding: 25px;
        flex: 1; /* Kartın altını doldur */
        display: flex;
        flex-direction: column;
    }

    .news-meta {
        font-size: 0.85rem;
        color: var(--muted);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .news-meta i { color: var(--accent); }
    .news-meta .category { font-weight: 600; color: var(--primary); }

    .news-title {
        font-size: 1.25rem;
        margin: 0 0 15px;
        line-height: 1.4;
    }

    .news-title a {
        color: var(--primary-1000);
        text-decoration: none;
        transition: color 0.2s;
        font-weight: 700;
    }

    .news-title a:hover {
        color: var(--primary); /* Hoverda ana mavi */
    }

    .news-excerpt {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 20px;
        flex-grow: 1; /* Butonu en alta it */
    }

    /* Devamını Oku Butonu */
    .read-more-btn {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s;
    }

    .read-more-btn:hover {
        color: var(--accent-2); /* Turkuaz veya accent rengi */
        gap: 12px; /* Ok sağa kayar */
    }

    /* Outline Buton (Tüm Haberler için) */
    .btn-outline-primary {
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 12px 30px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
    }

    .btn-outline-primary:hover {
        background-color: var(--primary);
        color: var(--white);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .news-img-box { height: 200px; }
        .section-title { font-size: 2rem; }
    }