/* Sayfa Genel ve Hero Yapısı */
.news-page-wrapper {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.news-hero {
    background-color: #0b3c5d; /* Kurumsal Lacivert */
    padding: 70px 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.news-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.news-hero-line {
    width: 60px;
    height: 4px;
    background-color: #c5a059; /* Altın Vurgu */
    margin: 20px auto 0;
}

/* İçerik Konteynırı */
.news-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Yan Yana Dizilim (Grid) */
.news-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Kart Tasarımı */
.simple-news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.simple-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* %40 Resim Alanı */
.card-media-part {
    height: 200px;
    position: relative;
    background: #f0f0f0;
}

.card-media-part img {
    width: 100%;
    height: 100%;
    object-fit: contain !important; /* ✅ Resim kırpılmadan sığar - ZORUNLU */
    object-position: center !important;
}

/* --- DEĞİŞTİRİLEN KISIM: PREMIUM YER TUTUCU --- */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hafif metalik/gümüş bir gradyan */
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #0b3c5d;    /* Kurumsal Lacivert rengini kullanıyoruz */
    opacity: 0.8;      /* Tamamen mat değil */
    transition: all 0.3s ease;
}

.no-image-placeholder i {
    font-size: 3.5rem; /* İkon boyutu */
    opacity: 0.15;     /* İkonu silikleştirip 'Watermark' (Filigran) havası veriyoruz */
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Kartın üzerine gelince ikon hafifçe belirginleşsin */
.simple-news-card:hover .no-image-placeholder i {
    opacity: 0.3;
    transform: scale(1.1);
    color: #c5a059; /* Hover'da Altın rengine hafif bir geçiş */
}
/* --- DEĞİŞİKLİK SONU --- */

.card-category-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 60, 93, 0.9);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Bilgi Alanı */
.card-body-part {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta-date {
    color: #d97706;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-main-title {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.card-main-title a {
    text-decoration: none;
    color: #222;
    transition: color 0.2s;
}

.card-main-title a:hover {
    color: #0b3c5d;
}

.card-summary-text {
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer-action {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.card-readmore {
    text-decoration: none;
    color: #0b3c5d;
    font-weight: 700;
    font-size: 13px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .news-simple-grid {
        grid-template-columns: 1fr;
    }
    .news-hero-title {
        font-size: 2.2rem;
    }
}