/* --- HABERLER / MEDYA SAYFASI STİLLERİ --- */
:root {
    --alfa-blue: #063970;
    --alfa-orange: #ff8a42;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --card-bg: #ffffff;
}

.news-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-section-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--alfa-blue);
    margin-bottom: 15px;
}

.news-section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Yapısı */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

/* Kart Tasarımı */
.news-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 57, 112, 0.12);
}

/* Görsel Alanı */
.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--alfa-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image-placeholder {
    transform: scale(1.1);
}

/* Kategori Etiketi */
.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--alfa-orange);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* İçerik Alanı */
.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.news-meta i { color: var(--alfa-orange); }

.news-content h3 {
    font-size: 1.4rem;
    color: var(--alfa-blue);
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Devamını Oku Linki */
.read-more-link {
    margin-top: auto;
    font-weight: 700;
    color: var(--alfa-blue);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.news-card:hover .read-more-link {
    color: var(--alfa-orange);
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-section-header h1 { font-size: 2.2rem; }
    .news-grid { grid-template-columns: 1fr; }
}