/* --- TEMEL AYARLAR VE TAŞMA KORUMASI --- */
* { box-sizing: border-box !important; }

html, body { 
    width: 100% !important; 
    margin: 0 !important; 
    padding: 0 !important; 
    overflow-x: hidden !important; 
    background: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #333;
    -webkit-text-size-adjust: 100%;
}

/* İlgili haberlerin kutusu */
.ilgili-kartlar { 
    display: grid; 
    /* Masaüstünde yan yana tam 3 tane olsun, ne eksik ne fazla */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-top: 20px; 
}

/* Kartın içindeki resimlerin boyutu */
.ilgili-kartlar .kart img { 
    width: 100%; 
    height: 150px; /* Masaüstünde yüksekliği sabitledik, devleşmez */
    object-fit: cover; 
}

.ilgili-kartlar .kart h4 { 
    padding: 10px; 
    font-size: 14px; 
    line-height: 1.4;
    margin: 0;
}

/* MOBİL İÇİN AYAR (Media Query içine ekle) */
@media (max-width: 900px) {
    .ilgili-kartlar { 
        grid-template-columns: 1fr; /* Mobilde tek sütun devam */
    }
    .ilgili-kartlar .kart img { 
        height: 180px; /* Mobilde biraz daha belirgin olabilir */
    }
}


/* --- LOGO ALANI --- */
.site-logo-alanı { text-align: center; margin-bottom: 30px; padding-top: 20px; }
.site-logo-alanı a { text-decoration: none; }
.portal-baslik { font-size: 32px; font-weight: 800; color: #1a1a1a; transition: 0.3s; display: inline-block; }

/* --- ANA KONTEYNIR (Masaüstü ve Mobil Uyumu) --- */
.ana-konteynir { 
    max-width: 1200px; 
    margin: auto; 
    display: flex; 
    gap: 30px; 
    flex-wrap: wrap; 
    padding: 20px;
}

/* --- HABER AKIŞI VE ALANI --- */
.haber-akisi { flex: 2; min-width: 300px; }
.haber-alani { 
    flex: 3; 
    min-width: 300px; 
    background: #fff; 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
}

/* --- KARTLAR (İndex Sayfası) --- */
.kart { background: #fff; margin-bottom: 30px; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: 0.3s; border: 1px solid #eee; text-decoration: none; display: block; }
.kart img { width: 100%; height: 300px; object-fit: cover; transition: 0.5s; display: block; }
.kapak { width: 100%; border-radius: 15px; margin-bottom: 25px; height: auto; display: block; }

/* --- YAZI STİLLERİ --- */
.icerik { padding: 25px; }
.icerik h2 { margin: 0; line-height: 1.3; }
.icerik h2 a { text-decoration: none; color: #1a1a1a; font-size: 24px; }
.meta, .meta-bilgi { color: #888; font-size: 14px; margin-top: 15px; }
.meta-bilgi { border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 20px; display: block; }
h1 { font-size: 32px; color: #1a1a1a; line-height: 1.3; }
.haber-metni { font-size: 18px; line-height: 1.8; color: #2c3e50; }

/* --- PAYLAŞ VE YAN PANEL --- */
.paylas-butonlari { margin: 25px 0; display: flex; gap: 10px; flex-wrap: wrap; }
.paylas-butonlari a { text-decoration: none; color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: bold; }
.whatsapp { background: #25D366; } .twitter { background: #1DA1F2; } .facebook { background: #4267B2; }

.yan-panel { flex: 1; min-width: 300px; }
.widget { background: #fff; padding: 20px; border-radius: 15px; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); border: 1px solid #eee; }
.widget-baslik { font-size: 18px; font-weight: bold; margin-bottom: 15px; border-left: 4px solid #1a73e8; padding-left: 10px; }
.yan-liste { list-style: none; padding: 0; }
.yan-link { display: flex; gap: 12px; align-items: center; text-decoration: none; color: inherit; margin-bottom: 15px; }
.yan-link img { width: 65px; height: 65px; border-radius: 8px; object-fit: cover; }

/* --- BUTONLAR --- */
.arsiv-butonu { text-align: center; margin: 20px 0 50px; }
.arsiv-link, .geri-don { text-decoration: none; color: #1a73e8; font-weight: bold; border: 2px solid #1a73e8; padding: 12px 40px; border-radius: 50px; display: inline-block; }

/* -------------------------------------------------- */
/* --- MOBİL DEVRİMİ (900px ve Altı) --- */
/* -------------------------------------------------- */
@media (max-width: 900px) {
    .ana-konteynir { 
        flex-direction: column !important; 
        padding: 8px !important; /* Fotoğraftaki yan boşlukları öldürür */
    }
    
    .yan-panel { width: 100% !important; order: 2; }
    .haber-akisi, .haber-alani { width: 100% !important; order: 1; padding: 15px !important; }

    /* Mobilde her şeyi ekrana tam sığdır */
    .kart img { height: 180px !important; }
    h1, .portal-baslik { font-size: 22px !important; }
    .icerik h2 a { font-size: 18px !important; }
    .icerik { padding: 12px !important; }
    .haber-metni { font-size: 16px !important; line-height: 1.6 !important; }
    
    /* Paylaş butonları yan yana sığsın */
    .paylas-butonlari a { flex: 1; text-align: center; padding: 8px 2px !important; font-size: 11px !important; }
}