/* ═══════════════════════════════════════════════════════
   HABER SİTESİ — ANA CSS
   Font: Inter (Google Fonts)
   Renk: CSS değişkenleri (Genel Ayarlar'dan)
═══════════════════════════════════════════════════════ */

/* ── Haber Detay ─────────────────────────────── */
.hd-wrap { background: #fdfdfd; }

/* Breadcrumb */
.hd-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px 0px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}
.hd-breadcrumb a { color: #311b1b; transition: color .2s; }
.hd-breadcrumb a:hover { color: var(--site-renk); }
.hd-breadcrumb span { color: #999; }
.hd-breadcrumb-aktif { color: #333; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 400px; }

/* Article Grid */
.hd-container { max-width: 1200px; margin: 0 auto; padding: 0px 0px; }
.hd-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }

/* Sol: İçerik */
.hd-baslik {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: #000000;
    margin: 10px 0 10px;
}

/* Yazar + Sosyal */
.hd-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
    margin-bottom: 12px;
    gap: 12px;
    flex-wrap: wrap;
}
.hd-yazar { display: flex; align-items: center; gap: 12px; }
.hd-yazar-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #e2e8f0;
    overflow: hidden;
    flex-shrink: 0;
}
.hd-yazar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hd-yazar-ad { font-size: 14px; font-weight: 700; color: #1a202c; }
.hd-yazar-tarih { font-size: 12px; color: #9ca3af; margin-top: 2px; }

/* Sosyal Paylaşım */
.hd-sosyal { display: flex; align-items: center; gap: 2px; }
.hd-sosyal-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    cursor: pointer; color: #555;
    transition: color .2s, background .2s;
    font-size: 15px;
}
.hd-sosyal-btn:hover { background: #f3f4f6; color: var(--site-renk); }
.hd-sosyal-btn.fb:hover { color: #1877f2; }
.hd-sosyal-btn.tw:hover { color: #000; }
.hd-sosyal-btn.wa:hover { color: #25d366; }

/* Kapak Resmi */
.hd-kapak {
    width: 100%;
    height: 460px;
    overflow: hidden;
    margin-bottom: 24px;
}
.hd-kapak img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Spot */
.hd-spot {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* İçerik */
.hd-icerik {
    font-size: 18px;
    line-height: 1.85;
    color: #10151e;
}
.hd-icerik h2 { font-size: 1.4rem; font-weight: 800; margin: 28px 0 12px; color: #1a202c; }
.hd-icerik h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; color: #1a202c; }
.hd-icerik p { margin-bottom: 18px; }
.hd-icerik strong { color: #1a202c; }
.hd-icerik a { color: var(--site-renk); text-decoration: underline; }
.hd-icerik ul, .hd-icerik ol { margin: 0 0 18px 24px; }
.hd-icerik li { margin-bottom: 6px; }
.hd-icerik blockquote {

    padding: 12px 20px;
    margin: 20px 0;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
}
.hd-icerik img { max-width: 100%; height: auto; margin: 16px 0; }

/* Etiketler */
.hd-etiketler { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; border-top: 1px solid #e5e7eb; padding-top: 20px; }
.hd-etiket {
    font-size: 12px; font-weight: 600;
    padding: 4px 12px;
    border: 1px solid #e5e7eb;
    color: #555;
    transition: all .2s;
}
.hd-etiket:hover { background: var(--site-renk); color: #fff; border-color: var(--site-renk); }

/* Sosyal Paylaşım Alt */
.hd-paylasim-alt {
    background: #f8f9fa;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hd-paylasim-alt span { font-size: 14px; font-weight: 700; color: #333; }
.hd-paylasim-alt-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    font-size: 13px; font-weight: 700;
    color: #fff; border: none; cursor: pointer;
    transition: opacity .2s;
    text-decoration: none;
}
.hd-paylasim-alt-btn:hover { opacity: 0.88; color: #fff; }
.hd-paylasim-alt-btn.fb { background: #1877f2; }
.hd-paylasim-alt-btn.tw { background: #000; }
.hd-paylasim-alt-btn.wa { background: #25d366; }
.hd-sosyal-btn.bsky:hover { color: #0085ff; }

/* Yorum Formu */
.hd-yorum { border-top: 1px solid #e5e7eb; padding-top: 32px; margin-top: 8px; }
.hd-yorum-baslik { font-size: 18px; font-weight: 800; color: #1a202c; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hd-yorum-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.hd-yorum input, .hd-yorum textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color .2s;
    background: #fff;
}
.hd-yorum input:focus, .hd-yorum textarea:focus { border-color: var(--site-renk); }
.hd-yorum textarea { resize: vertical; min-height: 120px; margin-bottom: 12px; }
.hd-yorum-kvkk { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: #777; margin-bottom: 16px; }
.hd-yorum-kvkk input { width: auto; margin-top: 2px; }
.hd-yorum-btn {
    padding: 10px 28px;
    background: var(--site-renk);
    color: #fff;
    font-size: 14px; font-weight: 700;
    border: none; cursor: pointer;
    transition: opacity .2s;
}
.hd-yorum-btn:hover { opacity: .88; }

/* ── Sidebar ─────────────────────────────────── */
.hd-sidebar { position: sticky; top: 60px; }

.hd-sidebar-baslik {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--site-renk);
}

/* Popüler - büyük kart */
.hd-pop-buyuk {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 4px;
}
.hd-pop-buyuk img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.hd-pop-buyuk:hover img { transform: scale(1.04); }
.hd-pop-buyuk-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px;
}
.hd-pop-buyuk-baslik { color: #fff; font-size: 18px; font-weight: 700; line-height: 1.35; margin: 0; }

/* Popüler - liste */
.hd-pop-liste { margin-top: 4px; }
.hd-pop-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
    transition: color .2s;
}
.hd-pop-item:last-child { border-bottom: none; }
.hd-pop-item:hover { color: var(--site-renk); }

/* Reklam */
.hd-reklam {
    background: #f3f4f6;
    border: 1px dashed #d1d5db;
    height: 250px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #9ca3af;
    margin-top: 24px;
}

/* ── İlgili Haberler ─────────────────────────── */
.hd-ilgili { background: #ffffff; padding: 20px 0; margin-top: 0; }
.hd-ilgili-ic { max-width: 1200px; margin: 0 auto; padding: 0 0px; }
.hd-ilgili-baslik {
    font-size: 20px; font-weight: 800;
    color: #1a202c; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
}
.hd-ilgili-cizgi { width: 4px; height: 24px; background: var(--site-renk); flex-shrink: 0; }
.hd-ilgili-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hd-ilgili-kart { display: block; text-decoration: none; background: #fff; transition: box-shadow .2s; }
.hd-ilgili-kart:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.hd-ilgili-resim { height: 160px; overflow: hidden; }
.hd-ilgili-resim img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.hd-ilgili-kart:hover .hd-ilgili-resim img { transform: scale(1.05); }
.hd-ilgili-bilgi { padding: 12px 14px; }
.hd-ilgili-kat { font-size: 14px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 0px; }
.hd-ilgili-baslik-kart { font-size: 18px; font-weight: 700; color: #1a202c; line-height: 1.4; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hd-ilgili-kart:hover .hd-ilgili-baslik-kart { color: var(--site-renk); }

/* Responsive */
@media(max-width: 768px) {
    .hd-grid { grid-template-columns: 1fr; }
    .hd-sidebar { position: static; }
    .hd-ilgili-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
    .hd-baslik { font-size: 1.4rem; }
    .hd-kapak { height: 240px; }
    .hd-yorum-grid { grid-template-columns: 1fr; }
    .hd-ilgili-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
    .hd-ilgili-grid { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .hd-container { padding: 12px 12px 12px 12px; }
    .hd-baslik { padding-right: 8px; }
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; background: #f0f2f5; }
body {
    font-family: var(--font-ailesi, 'Inter', sans-serif);
    font-size: var(--font-boyutu, 15px);
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
a:hover { color: var(--site-renk); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container & Wrapper ─────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.site-wrapper { max-width: 1280px; margin: 0 auto; }

/* ── Site Header Full Width ──────────────────────── */
#site-header {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    position: relative !important;
}

/* ══════════════════════════════════════════
   TOPBAR (Logo alanı)
══════════════════════════════════════════ */
.ypv1-topbar {
    display: none;
}
.ypv1-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sol: Sosyal ikonlar */
.ypv1-topbar-sosyal {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 160px;
}
.ypv1-sosyal-link {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: all .2s;
    opacity: 0.9;
}
.ypv1-sosyal-link:hover { opacity: 1; transform: scale(1.1); }

/* Sosyal ikon renkleri */
.ypv1-sosyal-link[href*="facebook"]               { background: #1877f2; }
.ypv1-sosyal-link[href*="twitter"],
.ypv1-sosyal-link[href*="x.com"]                  { background: #000000; }
.ypv1-sosyal-link[href*="instagram"]              { background: #e1306c; }
.ypv1-sosyal-link[href*="youtube"]                { background: #ff0000; }
.ypv1-sosyal-link[href*="telegram"]               { background: #0088cc; }
.ypv1-sosyal-link[href*="whatsapp"],
.ypv1-sosyal-link[href*="wa.me"]                  { background: #25d366; }
.ypv1-sosyal-link[href*="bsky.app"],
.ypv1-sosyal-link[href*="bluesky"]                { background: #0085ff; }

/* Orta: Logo */
.ypv1-logo {
    position: static;
    transform: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ypv1-logo-img { height: 36px; width: auto; }
.ypv1-logo-yazi { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; line-height: 1; }
.ypv1-logo-siyah { color: #111; }
.ypv1-logo-kirmizi { color: var(--site-renk, #c0392b); }

.ypv1-topbar-sag {
    display: flex;
    align-items: center;
    gap: 8px;                        /* biraz daha nefes */
    min-width: 80px;
    justify-content: flex-end;
}
.ypv1-ikon-btn {
    width: 30px; height: 30px;       /* sosyal ikonlarla eşit */
    border: none;
    background: transparent;         /* temiz */
    color: #444;
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;              /* yuvarlak — sosyal ikonlar gibi */
    transition: all .2s;
}
.ypv1-ikon-btn:hover { 
    background: #f0f0f0; 
    color: var(--site-renk); 
}

/* ══════════════════════════════════════════
   SON DAKİKA BANDI
══════════════════════════════════════════ */
.son-dakika-bant {
    background: var(--header-bg, #1a0505);
    width: 100%;
    height: 40px;
    overflow: hidden;
}
.son-dakika-inner {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 100%;
}
.son-dakika-etiket {
    flex-shrink: 0;
    background: #c0392b;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    margin-right: 16px;
}
.yanip-sonen {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    animation: yanip-sone 1s infinite;
}
@keyframes yanip-sone { 0%,100%{opacity:1} 50%{opacity:0} }
.son-dakika-sarici {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.son-dakika-sarici::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 40px; z-index: 2;
    pointer-events: none;
    background: linear-gradient(to left, var(--header-bg, #1a0505), transparent);
}
.son-dakika-kaydirici {
    display: flex;
    white-space: nowrap;
    animation: sd-kaydir 40s linear infinite;
}
.son-dakika-kaydirici:hover { animation-play-state: paused; }
@keyframes sd-kaydir { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.sd-link {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 24px;
    transition: color .2s;
}
.sd-link:hover { color: #fff; }

/* ══════════════════════════════════════════
   NAV MENÜ
══════════════════════════════════════════ */
.ypv1-nav {
    background: var(--menu-bg, #c0392b);
    border-top: 1px solid rgba(0,0,0,.2);
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    min-height: 52px;   /* ← BU SATIRI EKLE */
}
.ypv1-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ypv1-nav-liste {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
    flex: 1;
    justify-content: flex-start;
}
.ypv1-nav-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.ypv1-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    color: var(--menu-yazi, #fff) !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    transition: background .2s, border-color .2s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.ypv1-nav-link:hover {
    background: transparent;
    color: var(--menu-yazi, #fff) !important;
}

@media(max-width:768px) { 
    .ypv1-nav { display: block !important; }  /* ← NAV görünür */
    .ypv1-nav-liste { display: none !important; }  /* ← Kategori listesi gizli */
}

/* ══════════════════════════════════════════
   ARAMA OVERLAY
══════════════════════════════════════════ */
.arama-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,20,.92);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.arama-overlay.acik { opacity: 1; visibility: visible; }
.arama-icerik { width: 100%; max-width: 680px; padding: 0 20px; position: relative; }
.arama-kapat {
    position: absolute;
    top: -60px; right: 20px;
    width: 44px; height: 44px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.arama-kapat:hover { background: rgba(255,255,255,.1); }
.arama-form {
    display: flex;
    border-bottom: 2px solid rgba(255,255,255,.3);
    padding-bottom: 10px;
}
.arama-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 28px;
    font-family: var(--font-ailesi);
    font-weight: 300;
}
.arama-input::placeholder { color: rgba(255,255,255,.3); }
.arama-gonder {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 22px;
    cursor: pointer;
    padding: 0 10px;
    transition: color .2s;
}
.arama-gonder:hover { color: var(--site-renk); }

/* ══════════════════════════════════════════
   MOBİL MENÜ
══════════════════════════════════════════ */
.mobil-menu {
    position: fixed;
    top: 0; left: -300px;
    width: 280px; height: 100vh;
    background: #fff;
    z-index: 9998;
    transition: left .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.mobil-menu.acik { left: 0; }
.mobil-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9997;
    opacity: 0; visibility: hidden;
    transition: all .3s;
}
.mobil-overlay.acik { opacity: 1; visibility: visible; }
.mobil-menu-baslik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--menu-bg, #c0392b);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.mobil-menu-baslik button { background: transparent; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.mobil-menu-liste { padding: 10px 0; }
.mobil-menu-liste li a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px; color: #333;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 500;
}
.mobil-menu-liste li a:hover { color: var(--site-renk); background: #fafafa; }

/* ══════════════════════════════════════════
   ANASAYFA - GENEL
══════════════════════════════════════════ */
.blok-baslik { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.blok-baslik-flex { justify-content: space-between; }
.blok-baslik-sol { display: flex; align-items: center; gap: 10px; }
.blok-cizgi { display: block; width: 4px; height: 26px; background: var(--site-renk); flex-shrink: 0; }
.blok-baslik h2 { font-size: 18px; font-weight: 800; color: #1a1a1a; margin: 0; text-transform: uppercase; }
.blok-tumu { font-size: 13px; font-weight: 600; color: var(--site-renk); text-decoration: none; display: flex; align-items: center; gap: 4px; }

/* /* ══════════════════════════════════════════
   TRENDING SLIDER
══════════════════════════════════════════ */
.ts-wrap { background: #fff; border-bottom: 1px solid #e5e7eb; padding: 20px 0; }
.ts-ic { max-width: 1200px; margin: 0 auto; padding: 0; position: relative; overflow: hidden; box-sizing: border-box; }
.ts-slider-group { display: flex; gap: 16px; transition: transform .4s ease; }
.ts-kart { flex: 0 0 calc((100% - 64px) / 5); text-decoration: none; color: inherit; display: block; }
.ts-resim { 
    aspect-ratio: 16 / 9;
    overflow: hidden; 
    background: #f1f5f9; 
}
.ts-resim img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .3s; }
.ts-kart:hover .ts-resim img { transform: scale(1.05); }
.ts-resim-yok { width: 100%; height: 100%; background: #e2e8f0; }
.ts-bilgi { padding: 10px 0 4px; }
.ts-kat { font-size: 14px; font-weight: 700; text-transform: uppercase; }
.ts-baslik { font-size: 16px; font-weight: 700; color: #111; line-height: 1.4; margin: 4px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ts-kart:hover .ts-baslik { color: var(--site-renk); }
.ts-prev, .ts-next {
    position: absolute; top: 35%; transform: translateY(-50%);
    background: var(--site-renk); color: #fff;
    border: none; width: 34px; height: 34px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s;
    z-index: 10; font-size: 13px;
}
.ts-ic:hover .ts-prev, .ts-ic:hover .ts-next { opacity: 1; }
.ts-prev { left: 4px; }
.ts-next { right: 4px; }
.ts-prev:hover, .ts-next:hover { background: #111; }

/* Mobile - Trend Slider */
@media(max-width: 768px) {
    .ts-kart { 
        flex: 0 0 calc(100vw - 32px) !important;
    }
    
    .ts-slider-group {
        padding: 0 16px !important;
    }
    
    .ts-resim {
        aspect-ratio: 1 / 1 !important;
    }
}

══════════════════════════════════════════
   HERO BÖLÜMÜ
══════════════════════════════════════════ */
.hero-wrap { background: #fff; padding: 28px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 24px; }

/* Sol: Trendler */
.trend-liste { display: flex; flex-direction: column; }
.trend-item { display: block; text-decoration: none; padding: 12px 0; border-bottom: 1px solid #e5e7eb; }
.trend-item:last-child { border-bottom: none; }
.trend-kat { display: inline-block; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; margin-bottom: 6px; text-transform: uppercase; }
.trend-baslik { font-size: 16px; font-weight: 600; color: #1a1a1a; line-height: 1.45; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.trend-item:hover .trend-baslik { color: var(--site-renk); }

/* Orta: Hero Slider */
.hs-wrap { position: relative; height: 460px; overflow: hidden; }
.hs-slide { display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0; text-decoration: none; }
.hs-slide.aktif { display: block; }
.hs-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s; }
.hs-slide:hover img { transform: scale(1.03); }
.hs-bos { width: 100%; height: 100%; background: #e2e8f0; }
.hs-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.5) 50%, transparent);
    padding: 24px 20px 20px;
}
.hs-kat { display: inline-block; color: #fff; font-size: 14px; font-weight: 700; padding: 3px 10px; margin-bottom: 8px; text-transform: uppercase; }
.hs-baslik { color: #fff; font-size: 22px; font-weight: 800; line-height: 1.35; margin: 0; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.hs-kontrol { display: flex; justify-content: center; gap: 6px; padding: 10px 0 4px; background: #ebebeb; flex-wrap: wrap; overflow-x: auto; }
.hs-btn { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #ccc; background: #fff; cursor: pointer; transition: all .2s; }
.hs-btn.aktif { background: var(--site-renk); border-color: var(--site-renk); transform: scale(1.2); }

/* Sağ: Çok Okunanlar */
.cok-liste { display: flex; flex-direction: column; }
.cok-item { display: flex; gap: 10px; text-decoration: none; padding: 10px 0; border-bottom: 1px solid #e5e7eb; }
.cok-item:last-child { border-bottom: none; }
.cok-resim { position: relative; width: 80px; height: 64px; flex-shrink: 0; overflow: hidden; }
.cok-resim img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .3s; }
.cok-item:hover .cok-resim img { transform: scale(1.08); }
.cok-resim-yok { width: 100%; height: 100%; background: #e2e8f0; }
.cok-kat { position: absolute; top: 2px; left: 2px; color: #fff; font-size: 9px; font-weight: 700; padding: 1px 5px; }
.cok-bilgi { flex: 1; min-width: 0; }
.cok-baslik { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.4; margin: 0 0 4px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cok-item:hover .cok-baslik { color: var(--site-renk); }
.cok-tarih { font-size: 11px; color: #9ca3af; }

/* ══════════════════════════════════════════
   KATEGORİ BÖLÜMÜ - GENEL
══════════════════════════════════════════ */
.kat-bolum { padding: 32px 0; border-bottom: 1px solid #e5e7eb; }
.kart-tarih { font-size: 11px; color: #9ca3af; margin-top: auto; }

/* ── GÜNDEM LAYOUT ────────────────────── */
.gundem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gundem-sol { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gundem-kart { display: block; text-decoration: none; color: inherit; }
.gundem-kart-resim { height: 160px; overflow: hidden; margin-bottom: 10px; }
.gundem-kart-resim img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .3s; }
.gundem-kart:hover .gundem-kart-resim img { transform: scale(1.05); }
.gundem-kart-baslik { font-size: 15px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin: 0 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gundem-kart:hover .gundem-kart-baslik { color: var(--site-renk); }
.gundem-kart-spot { font-size: 12px; color: #6b7280; margin: 0 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gundem-kart-tarih { font-size: 11px; color: #9ca3af; }
.gundem-sag { display: block; position: relative; overflow: hidden; text-decoration: none; min-height: 360px; }
.gundem-sag img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; position: absolute; inset: 0; }
.gundem-sag:hover img { transform: scale(1.04); }
.gundem-sag-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.4) 60%, transparent); padding: 24px 20px 20px; }
.gundem-sag-baslik { color: #fff; font-size: 22px; font-weight: 800; line-height: 1.35; margin: 0; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.gundem-sag-tarih { color: rgba(255,255,255,.7); font-size: 12px; margin-top: 6px; display: block; }

/* ── KÜLTÜR SANAT / STD LAYOUT ────────── */
.kultur-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.kultur-sol, .kultur-sag { display: flex; flex-direction: column; gap: 20px; }
.kultur-kart { display: flex; flex-direction: column; text-decoration: none; color: inherit; border: 1px solid #e5e7eb; overflow: hidden; background: #fff; transition: box-shadow .2s; }
.kultur-kart:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.kultur-kart-resim { height: 180px; overflow: hidden; }
.kultur-kart-resim img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .3s; }
.kultur-kart:hover .kultur-kart-resim img { transform: scale(1.05); }
.kultur-kart-bilgi { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.kultur-kart-baslik { font-size: 18px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kultur-kart:hover .kultur-kart-baslik { color: var(--site-renk); }
.kultur-kart-spot { font-size: 14px; color: #6b7280; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Orta büyük kart */
.kultur-orta { display: flex; flex-direction: column; text-decoration: none; color: inherit; overflow: hidden; }
.kultur-orta img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform .3s; }
.kultur-orta:hover img { transform: scale(1.04); }
.kultur-orta-overlay { padding: 12px 4px; }
.kultur-orta-baslik { color: #111; font-size: 17px; font-weight: 700; line-height: 1.4; margin: 0 0 6px; }

/* ── STD LAYOUT (Ekonomi, Spor, Yaşam, Teknoloji) ── */
.std-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.std-buyuk { display: block; position: relative; height: 380px; overflow: hidden; text-decoration: none; }
.std-buyuk img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s; }
.std-buyuk:hover img { transform: scale(1.04); }
.std-bos { width: 100%; height: 100%; background: #e2e8f0; }
.std-sag { display: flex; flex-direction: column; }
.std-item { display: flex; gap: 12px; text-decoration: none; padding: 12px 0; border-bottom: 1px solid #e5e7eb; }
.std-item:last-child { border-bottom: none; }
.std-item-resim { width: 100px; height: 70px; flex-shrink: 0; overflow: hidden; }
.std-item-resim img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .3s; }
.std-item:hover .std-item-resim img { transform: scale(1.08); }
.std-bos-kucuk { width: 100%; height: 100%; background: #e2e8f0; }
.std-item-baslik { font-size: 14px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.std-item:hover .std-item-baslik { color: var(--site-renk); }
.std-item-bilgi small { font-size: 11px; color: #9ca3af; }

/* ══════════════════════════════════════════
   SON HABERLER
══════════════════════════════════════════ */
.son-haberler-bolum { padding: 32px 0 48px; background: #fff; }
.sh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sh-kart { display: block; text-decoration: none; }
.sh-resim { height: 180px; overflow: hidden; background: #f1f5f9; margin-bottom: 12px; }
.sh-resim img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .3s; }
.sh-kart:hover .sh-resim img { transform: scale(1.05); }
.sh-bos { width: 100%; height: 100%; background: #e2e8f0; }
.sh-bilgi { padding: 0 4px; }
.sh-kat { font-size: 11px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 4px; }
.sh-baslik { font-size: 16px; font-weight: 700; color: #111; line-height: 1.4; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sh-kart:hover .sh-baslik { color: var(--site-renk); }
.sh-spot { font-size: 13px; color: #6b7280; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: #1a1a2e; color: #adb5bd; margin-top: 40px; }
.footer-ust { padding: 50px 0 30px; }
.footer-logo-yazi { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.footer-aciklama { font-size: 13px; line-height: 1.7; color: #7a8aa0; margin-bottom: 16px; }
.footer-sosyal { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-sosyal-link {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: #7a8aa0; font-size: 13px;
    transition: all .2s;
}
.footer-sosyal-link:hover { background: var(--site-renk); border-color: var(--site-renk); color: #fff; }
.footer-baslik {
    font-size: 12px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-liste { padding: 0; margin: 0; }
.footer-liste li { margin-bottom: 8px; }
.footer-liste li a { font-size: 13px; color: #7a8aa0; display: flex; align-items: center; gap: 7px; transition: all .2s; }
.footer-liste li a i { color: var(--site-renk); font-size: 10px; flex-shrink: 0; }
.footer-liste li a:hover { color: #fff; padding-left: 4px; }
.footer-iletisim { padding: 0; margin: 0; }
.footer-iletisim li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; color: #7a8aa0; align-items: flex-start; }
.footer-iletisim li i { color: var(--site-renk); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-iletisim li a { color: #7a8aa0; transition: color .2s; }
.footer-iletisim li a:hover { color: #fff; }
.footer-alt { background: rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.06); padding: 16px 0; }
.footer-alt-inner { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #4a5568; gap: 16px; flex-wrap: wrap; }
.footer-alt-sag { display: flex; align-items: center; gap: 10px; }
.footer-alt a { color: #4a5568; transition: color .2s; }
.footer-alt a:hover { color: #fff; }

/* ══════════════════════════════════════════
   GÜNDEM ORTA BÜYÜK KART
══════════════════════════════════════════ */
.gundem-orta-kart {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 340px;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.gundem-orta-kart img {
    width: 100%; height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.gundem-orta-kart:hover img { transform: scale(1.04); }
.gundem-orta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.45) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px 22px;
}
.gundem-orta-kat {
    display: inline-block;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
    width: fit-content;
}
.gundem-orta-baslik {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gundem-orta-spot {
    color: rgba(255,255,255,.88);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gundem-orta-tarih {
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

/* ══════════════════════════════════════════
   RESPONSİVE
══════════════════════════════════════════ */
@media(max-width:1024px) {
    .hero-grid { grid-template-columns: 1fr 1.6fr; }
    .hero-sag { display: none; }
    .std-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-sol { display: none; }
    
    .hs-baslik { font-size: 16px; }
    .sh-grid { grid-template-columns: repeat(2,1fr); }
    .gundem-grid, .kultur-grid, .std-grid { grid-template-columns: 1fr; }
    .gundem-sol { grid-template-columns: 1fr 1fr; }
}
@media(max-width:576px) {
    .sh-grid { grid-template-columns: 1fr; }
    .gundem-sol { grid-template-columns: 1fr; }
    .ypv1-topbar-sosyal { display: none; }
}


/* ══════════════════════════════════════════
   ÖNE ÇIKANLAR — SAĞ MANŞET OVERLAY
══════════════════════════════════════════ */
.one-cikan-liste { display: flex; flex-direction: column; gap: 6px; }
.one-cikan-kart {
    position: relative;
    display: block;
    height: 138px;
    overflow: hidden;
    text-decoration: none;
}
.one-cikan-kart img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.one-cikan-kart:hover img { transform: scale(1.05); }
.one-cikan-bos { width: 100%; height: 100%; background: #e2e8f0; }
.one-cikan-ic {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 14px 14px;
}
.one-cikan-baslik {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hero Slider Ok Butonları */
.hs-ok { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #333; opacity: 0; transition: opacity .3s, background .2s; }
.hs-sol { left: 12px; }
.hs-sag { right: 12px; }
.hs-wrap:hover .hs-ok { opacity: 1; }
.hs-ok:hover { background: var(--site-renk); color: #fff; }

/* Responsive */

@media(max-width:768px) {
    .ts-prev, .ts-next { opacity: 1 !important; width: 32px; height: 32px; font-size: 13px; }
}

@media(max-width:480px) {
}

/* Yatay scroll engelle */
/* Hero Slider — Masaüstü numara, Mobil dot */
@media(min-width:769px) {
    .hs-btn { width: 32px; height: 32px; font-size: 12px; font-weight: 700; color: #555; }
    .hs-btn::after { content: attr(data-index); }
    .hs-btn.aktif { background: var(--site-renk); color: #fff; border-color: var(--site-renk); }
}

/* Masaüstü: numara göster */
@media(min-width:769px) {
    .hs-btn { width: 32px; height: 32px; font-size: 12px; font-weight: 700; color: #555; }
    .hs-btn::after { content: attr(data-index); }
    .hs-btn.aktif { background: var(--site-renk); color: #fff; border-color: var(--site-renk); }
}

@media(min-width:769px) {
    .hs-btn { width: 28px; height: 28px; font-size: 11px; }
}

/* Sadece içerik alanı overflow hidden */
.hd-container { overflow-x: hidden; }
.ts-wrap { overflow-x: hidden; }

/* Yatay taşmayı engelle - sadece içerik */
.hd-wrap, .ts-wrap, .hero-wrap, .kategori-bolum, .son-haberler-bolum { overflow-x: hidden; }

@media(max-width:768px) {
    .hs-btn { width: 10px; height: 10px; border-width: 1.5px; }
    .hs-kontrol { gap: 5px; flex-wrap: nowrap; overflow-x: auto; padding: 8px 16px; justify-content: flex-start; }
}

@media(max-width:768px) {
    .hs-kontrol { justify-content: center !important; flex-wrap: wrap !important; overflow-x: hidden !important; padding: 8px 0 !important; gap: 8px !important; }
    .hs-btn { width: 10px !important; height: 10px !important; }
}

@media(max-width:768px) {
    .hs-ok { opacity: 1 !important; width: 36px; height: 36px; font-size: 13px; background: rgba(0,0,0,0.4); color: #fff; }
    .hs-sol { left: 8px; }
    .hs-sag { right: 8px; }
}

@media(max-width:768px) {
    .hero-wrap .container { padding: 0; }
    .hero-grid { gap: 0; }
    .hs-wrap { width: 100%; }
}

@media(max-width:768px) {
@media (max-width: 768px) {
    .ts-resim {
        aspect-ratio: 4 / 3;  /* Mobile'da 4:3 */
    }
}
    .ts-prev, .ts-next { opacity: 1 !important; background: rgba(0,0,0,0.5) !important; color: #fff !important; width: 36px !important; height: 36px !important; }
}

@media(max-width:768px) {
    .ts-resim { height: 200px !important; }
}

@media(max-width:768px) {
    .ts-prev { position: absolute; left: 16px; top: 100px; z-index: 10; background: rgba(0,0,0,0.5) !important; color: #fff !important; opacity: 1 !important; width: 36px !important; height: 36px !important; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; }
}

@media(max-width:768px) {
}

@media(max-width:768px) {
}

@media(max-width:768px) {
    .ts-ic { overflow: hidden !important; padding: 0 !important; }
    .ts-kart { flex: 0 0 calc(100vw - 32px) !important; }
}

@media(max-width:768px) {
    .hs-wrap { height: 240px !important; }
}

@media(max-width:768px) {
    .ts-slider-group { padding-left: 16px; }
}

@media(max-width:768px) {
    .ts-next { right: 20px !important; }
    .ts-prev { left: 20px !important; }
}

@media(max-width:768px) {
    .hd-container { padding: 16px; }
}

@media(max-width: 768px) {
    .hd-breadcrumb {
        padding: 16px 12px 8px 12px;  /* Mobile: daha az padding */
        font-size: 12px;
    }
}

@media(max-width: 768px) {
    .hd-spot {
    font-size: 16px;
    font-weight: 700;
    color: #343434;
    line-height: 1.6;
    margin-bottom: 24px;
    }
}

@media(max-width: 768px) {
    .hd-grid { grid-template-columns: 1fr; }
    .hd-sidebar { position: static; }
    .hd-ilgili-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
    .hd-baslik { font-size: 1.4rem; }
    .hd-kapak { height: 240px; }
    .hd-yorum-grid { grid-template-columns: 1fr; }
    .hd-ilgili-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
    .hd-ilgili-grid { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .hd-container { padding: 12px 12px 12px 12px; }
    .hd-baslik { padding-right: 8px; }
}

@media(max-width: 768px) {
    .hd-ilgili-ic { 
        padding: 0 12px; 
    }
    
    .hd-ilgili-baslik {
        padding-left: 4px;
    }
}

@media(max-width:768px) {
    .hd-sosyal { gap: 2px; }
    .hd-sosyal-btn { width: 30px; height: 30px; font-size: 13px; }
}

