/* ============================================================
   OG Ana Sayfa — v2 (Verge tarzı, kutusuz, tipografi öncelikli)
   Renkler:
     Kırmızı  → Canlı / Son Dakika / HABER
     Yeşil    → Donanım / 85+ puan / Canlı CTA
     Sarı     → 70-84 puan
   Layout: 55 / 45 iki kolonlu (mobilde tek kolon)
   ============================================================ */

:root {
    --og-bg: #1b2838;
    --og-bg-elevated: #1e2b3d;
    --og-text: #e9eef5;
    --og-text-muted: #9aa6b8;
    --og-text-dim: #6f7d92;
    --og-hairline: rgba(255, 255, 255, 0.10);
    --og-hairline-strong: rgba(255, 255, 255, 0.18);

    --og-red: #c41e3a;
    --og-red-bright: #ff4757;
    --og-green: #4ade80;
    --og-yellow: #facc15;

    --og-pad-x: 16px;
    --og-section-gap: 26px;
    --og-grid-gap: 18px;
}

/* ============================================================
   HEADER — logo + 5 maddelik menü (TrendNews/BreakingNews bantları üstte, dokunulmadı)
   ============================================================ */
.og-mainnav {
    background: var(--og-bg);
    border-bottom: 1px solid var(--og-hairline);
}
.og-mainnav .container-fluid {
    max-width: 1320px;
}
.og-mainnav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--og-pad-x) 8px;
}
.og-mainnav__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
    transition: opacity 0.15s;
}
.og-mainnav__logo:hover { opacity: 0.85; }
.og-mainnav__logo img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 100%;
}

.og-mainnav__creative {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 6px 12px;
    transition: all 0.2s ease;
}
.og-mainnav__creative:hover { border-color: #ff5a36; box-shadow: 0 4px 18px rgba(255, 90, 54, 0.25); }
.og-mainnav__creative-og   { color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: -0.3px; }
.og-mainnav__creative-text { color: #ff5a36; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: -0.3px; }

.og-mainnav__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    padding: 4px var(--og-pad-x) 14px;
}
.og-mainnav__menu .menu-link {
    color: var(--og-text);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s, color 0.15s;
}
.og-mainnav__menu .menu-link:hover  { color: var(--og-text); border-bottom-color: var(--og-hairline-strong); }
.og-mainnav__menu .menu-link.active { border-bottom-color: var(--og-red); }

@media (max-width: 600px) {
    .og-mainnav__logo img { height: 36px; }
    .og-mainnav__menu { gap: 4px 14px; }
    .og-mainnav__menu .menu-link { font-size: 12px; letter-spacing: 1.5px; }
}

/* ============================================================
   ANA SAYFA YAPISI
   - ÜST: 55 / 45 iki kolon (Manşet → Dosya'ya kadar | SON HABERLER)
   - HAIRLINE GEÇİŞ
   - ALT: tam genişlik, ortalı, bir tık daha büyük (Bu Haftanın İncelemesi → Röportaj)
   ============================================================ */
.og-home {
    color: var(--og-text);
    padding-top: 12px;
}

/* ÜST BLOK — 55 / 45 grid */
.og-home__top {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);   /* ~55 / 45 */
    gap: 32px;
}
.og-home__top-left,
.og-home__top-right { min-width: 0; }
.og-home__top-left  { display: flex; flex-direction: column; gap: var(--og-section-gap); }

@media (max-width: 1024px) {
    .og-home__top { grid-template-columns: 1fr; gap: 24px; }
}

/* REKLAM ALANI — Üst-Alt blok ayrımındaki ortalı banner.
   Aktif reklam yoksa Advertisement VC boş döner → :has() ile gizlenir. */
.og-home__ad { display: none; }
.og-home__ad:has(> *) {
    display: block;
    max-width: clamp(640px, 78%, 920px);
    margin: 28px auto 0;
    padding: 8px 0 4px;
    text-align: center;
}
.og-home__ad:has(> *)::before {
    content: 'REKLAM';
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--og-text-dim);
    margin-bottom: 10px;
}

/* ALT BLOK — ORTALI, DAR, MİNİMAL
   Üst blokla aynı tipografiyi büyük ölçüde korur — sadece birkaç element +1/+2px.
   Sağ-sol açık alan bırakır (ilerde reklam slotları için). */
.og-home__bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 28px auto 0;
    padding-top: 24px;
    max-width: clamp(640px, 78%, 920px);
    border-top: 1px solid var(--og-hairline);
}

/* Alt blokta kartlar SADECE bir tık daha büyük */
.og-home__bottom .og-card__title               { font-size: 16px; }   /* +1 */
.og-home__bottom .og-card--lg .og-card__title  { font-size: 22px; }   /* +2 */
.og-home__bottom .og-feature--wide .og-card__title { font-size: 28px; } /* +2 */
.og-home__bottom .og-pullquote__quote          { font-size: 24px; }   /* +2 */

@media (max-width: 1024px) {
    .og-home__bottom { max-width: 100%; }
}
@media (max-width: 720px) {
    .og-home__bottom .og-feature--wide .og-card__title { font-size: 20px; }
    .og-home__bottom .og-pullquote__quote { font-size: 18px; }
}

/* ============================================================
   BÖLÜM PRIMITIVES — hairline + uppercase letter-spaced başlık
   ============================================================ */
.og-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.og-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--og-hairline);
}
.og-section-head__title {
    color: var(--og-text);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
a.og-section-head__title:hover { color: var(--og-red-bright); }

.og-section-head--green .og-section-head__title { color: var(--og-green); }
.og-section-head--green                          { border-bottom-color: rgba(74, 222, 128, 0.35); }
.og-section-head--red   .og-section-head__title { color: var(--og-red-bright); }
.og-section-head--red                            { border-bottom-color: rgba(196, 30, 58, 0.45); }

.og-section-head__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--og-red-bright);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: auto;
}
.og-section-head__live::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--og-red-bright);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.5);
    animation: og-pulse 1.6s infinite;
}
@keyframes og-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(255, 71, 87, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);   }
    100% { box-shadow: 0 0 0 0   rgba(255, 71, 87, 0);    }
}

/* ============================================================
   GRID VARYANTLARI
   ============================================================ */
.og-grid              { display: grid; gap: var(--og-grid-gap); }
.og-grid--2col        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.og-grid--3col        { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.og-grid--asym        { grid-template-columns: 1.6fr 1fr; gap: 22px; }
.og-grid--asym__stack { display: flex; flex-direction: column; gap: 14px; }
.og-grid--4strip      { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }

@media (max-width: 720px) {
    .og-grid--2col,
    .og-grid--3col,
    .og-grid--asym   { grid-template-columns: 1fr; }
    .og-grid--4strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CARD PRIMITIVES — kutusuz, görsel + tipografi
   ============================================================ */
.og-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none !important;
    color: var(--og-text);
}
.og-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
}
.og-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.og-card:hover .og-card__media img { transform: scale(1.03); }

.og-card__tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--og-text);
    opacity: 0.85;
}
.og-card__tag--red    { color: var(--og-red-bright); opacity: 1; }
.og-card__tag--green  { color: var(--og-green);      opacity: 1; }

.og-card__title {
    font-family: 'Outfit', 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--og-text);
    margin: 0;
}
.og-card--lg .og-card__title { font-size: 20px; line-height: 1.25; }
.og-card--sm .og-card__title { font-size: 13px; line-height: 1.35; }
.og-card:hover .og-card__title { color: #fff; }

/* Görsel köşesindeki yuvarlak puan rozeti */
.og-score {
    position: absolute;
    top: 8px; right: 8px;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1b2838;
    background: var(--og-text-muted);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.og-score--high { background: var(--og-green);  }
.og-score--mid  { background: var(--og-yellow); }

/* ============================================================
   BU HAFTANIN İNCELEMESİ — full-width feature
   ============================================================ */
.og-feature--wide .og-card__media { aspect-ratio: 21 / 9; }
.og-feature--wide .og-card__title { font-size: 26px; line-height: 1.2; }
@media (max-width: 720px) {
    .og-feature--wide .og-card__media { aspect-ratio: 16 / 9; }
    .og-feature--wide .og-card__title { font-size: 20px; }
}

/* ============================================================
   GALERİ — 4'lü 4:3 şerit
   ============================================================ */
.og-gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    display: block;
}
.og-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.og-gallery__item:hover img { transform: scale(1.05); }

/* ============================================================
   RÖPORTAJ — serif italic pull-quote bandı
   ============================================================ */
.og-pullquote {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--og-hairline);
    border-bottom: 1px solid var(--og-hairline);
}
.og-pullquote__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
}
.og-pullquote__media img { width: 100%; height: 100%; object-fit: cover; }
.og-pullquote__quote {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--og-text);
    margin: 0 0 12px;
}
.og-pullquote__attribution {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--og-text-muted);
}
@media (max-width: 720px) {
    .og-pullquote { grid-template-columns: 1fr; }
    .og-pullquote__quote { font-size: 18px; }
}

/* ============================================================
   SAĞ KOLON — SON HABERLER stream
   - Sol rail: dikey timeline çizgisi + node'lar (mevcut /canli sayfası gibi)
   - Day separator: gün dönümlerinde kalın yatay çizgi + etiket (BUGÜN/DÜN/tarih)
   - Featured item (1, 5, 9): üstte tam genişlik 16:9 görsel, altta meta+başlık+spot
   - Video/Galeri overlay: thumb üzerinde ▶ veya galeri ikonu
   ============================================================ */
.og-feed {
    display: flex;
    flex-direction: column;
}

/* Item — varsayılan: [rail | body | thumb-92] */
.og-feed__item {
    display: grid;
    grid-template-columns: 24px 1fr 92px;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--og-hairline);
    text-decoration: none !important;
    color: var(--og-text);
    transition: background 0.15s;
    position: relative;
}
.og-feed__item:hover      { background: rgba(255, 255, 255, 0.02); }
.og-feed__item:last-child { border-bottom: 0; }

/* Featured item — yan thumb yok, body içinde üstte büyük thumb */
.og-feed__item--featured {
    grid-template-columns: 24px 1fr;
    padding: 16px 0;
}

/* Sol rail — dikey çizgi + node */
.og-feed__rail {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.og-feed__rail::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: var(--og-hairline);
}
.og-feed__node {
    position: relative;
    z-index: 1;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--og-text-muted);
    box-shadow: 0 0 0 3px var(--og-bg);
    flex-shrink: 0;
}
/* Featured item (1, 5, 9. madde) — sadece BOYUT bumpu; rengi nötr kalır */
.og-feed__node--featured {
    width: 11px; height: 11px;
}
/* Son dakika — KIRMIZI + yumuşak pulse glow (boyuttan bağımsız uygulanır) */
.og-feed__node--breaking {
    background: var(--og-red-bright);
    box-shadow: 0 0 0 3px var(--og-bg), 0 0 8px rgba(255, 71, 87, 0.5);
    animation: og-feed-breaking-pulse 1.8s ease-in-out infinite;
}
@keyframes og-feed-breaking-pulse {
    0%, 100% { box-shadow: 0 0 0 3px var(--og-bg), 0 0 6px  rgba(255, 71, 87, 0.45); }
    50%      { box-shadow: 0 0 0 3px var(--og-bg), 0 0 14px rgba(255, 71, 87, 0.75); }
}

/* Body */
.og-feed__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }

.og-feed__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--og-text-dim);
}
.og-feed__time     { color: var(--og-text-dim); }
.og-feed__category { color: var(--og-text-muted); }

.og-feed__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
    color: var(--og-text);
    margin: 0;
}
.og-feed__item--featured .og-feed__title { font-size: 16px; font-weight: 800; }
.og-feed__item:hover     .og-feed__title { color: #fff; }

.og-feed__spot {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: var(--og-text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.og-feed__item--featured .og-feed__spot { -webkit-line-clamp: 3; }

/* Yan thumb (varsayılan item) — kompakt 92px */
.og-feed__thumb {
    aspect-ratio: 16 / 9;
    width: 92px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.og-feed__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Büyük thumb (featured item) — üstte tam genişlik 16:9 */
.og-feed__big-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    margin-bottom: 4px;
}
.og-feed__big-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.og-feed__item--featured:hover .og-feed__big-thumb img { transform: scale(1.03); }

/* Video / Galeri overlay (thumb merkezinde yuvarlak ikon) */
.og-feed__overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s;
    z-index: 2;
}
.og-feed__big-thumb .og-feed__overlay {
    width: 44px; height: 44px;
    font-size: 16px;
}
.og-feed__overlay .fa-play { padding-left: 2px; }

/* Video hover-play — mouse item üstündeyken video oynar, ayrılınca poster geri gelir.
   Lokal <video> ve YouTube/Vimeo <iframe> aynı sınıfı paylaşır. */
.og-feed__hover-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1;
    border: 0;
    background: transparent;
}
/* iframe için object-fit çalışmaz; scaling trick: 16:9'a zorla */
.og-feed__hover-iframe {
    object-fit: initial;
    /* iframe'i thumb'a sığdır, taşan kısım hidden yap */
}
.og-feed__item:hover .og-feed__hover-video { opacity: 1; }
.og-feed__item:hover .og-feed__overlay     { opacity: 0; }

/* Day separator — gün dönümünde kalın çizgi + etiket */
.og-feed__day {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: center;
    padding: 24px 0 8px;
    margin-top: 4px;
    border-top: 2px solid var(--og-hairline-strong);
    position: relative;
}
.og-feed__day:first-child {
    border-top: 0;
    padding-top: 4px;
    margin-top: 0;
}
.og-feed__day-rail {
    position: relative;
    height: 100%;
    min-height: 22px;
}
.og-feed__day-rail::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: var(--og-hairline);
}
.og-feed__day-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--og-text-muted);
    font-weight: 700;
}

/* Footer "Tümünü gör" */
.og-feed__footer {
    padding-top: 16px;
    text-align: center;
}
.og-feed__footer a {
    color: var(--og-text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--og-hairline-strong);
    border-radius: 2px;
    transition: all 0.15s;
}
.og-feed__footer a:hover { color: var(--og-text); border-color: var(--og-text-muted); }

/* Sağ kolon başlığı — mevcut bölüm başlığını kullanır ama sağda canlı nokta gösterilir */
.og-home__top-right .og-section-head { margin-bottom: 4px; }

@media (max-width: 1024px) {
    .og-feed__item { grid-template-columns: 20px 1fr 80px; gap: 12px; }
    .og-feed__item--featured { grid-template-columns: 20px 1fr; }
    .og-feed__thumb { width: 80px; }
    .og-feed__day   { grid-template-columns: 20px 1fr; gap: 12px; }
}

/* ============================================================
   HABER DETAYINDA CANLI YAYIN BANNER'I
   News.RelatedLiveEvent varsa ve Live/Pre fazındaysa, cover image'ın hemen üstünde gösterilir.
   ============================================================ */
.og-news-live-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    margin-bottom: 16px;
    border-radius: 4px;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.15s, box-shadow 0.15s;
    color: #fff;
}
.og-news-live-banner.is-live {
    background: linear-gradient(90deg, #c41e3a 0%, #d63d2a 100%);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.3);
}
.og-news-live-banner.is-pre {
    background: linear-gradient(90deg, #1e2b3d 0%, #2d3a52 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.og-news-live-banner:hover {
    transform: translateY(-1px);
    color: #fff;
}
.og-news-live-banner.is-live:hover { box-shadow: 0 6px 20px rgba(196, 30, 58, 0.45); }
.og-news-live-banner.is-pre:hover  { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3); }

.og-news-live-banner__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
    flex-shrink: 0;
}
.og-news-live-banner.is-pre .og-news-live-banner__pill {
    background: rgba(255, 255, 255, 0.10);
}
.og-news-live-banner__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: og-live-blink 1.4s ease-in-out infinite;
}

.og-news-live-banner__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.og-news-live-banner__text strong {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.og-news-live-banner__sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.og-news-live-banner__cta {
    flex-shrink: 0;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .og-news-live-banner { padding: 10px 12px; gap: 10px; }
    .og-news-live-banner__pill { font-size: 10px; padding: 4px 8px; letter-spacing: 1.5px; }
    .og-news-live-banner__text strong { font-size: 13.5px; }
    .og-news-live-banner__sub { font-size: 11px; }
    .og-news-live-banner__cta { font-size: 11.5px; }
}

/* ============================================================
   CANLI MANŞET MODU — etkinlik aktifken FeaturedHero/HomeBanner yerine.
   Kırmızı 2px çerçeve + üst başlık çubuğu + 16:9 görsel + büyük başlık + mini feed + yeşil CTA.
   ============================================================ */
.og-live-hero {
    display: block;
    text-decoration: none !important;
    color: var(--og-text);
    border: 2px solid var(--og-red-bright);
    border-radius: 4px;
    overflow: hidden;
    background: var(--og-bg);
    transition: box-shadow 0.2s;
    position: relative;
}
.og-live-hero:hover {
    box-shadow: 0 0 0 1px var(--og-red-bright), 0 10px 28px rgba(255, 71, 87, 0.18);
}

/* Üst kırmızı başlık çubuğu */
.og-live-hero__head {
    background: var(--og-red);
    color: #fff;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}
.og-live-hero__live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    flex-shrink: 0;
}
.og-live-hero__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: og-live-blink 1.4s ease-in-out infinite;
}
@keyframes og-live-blink {
    0%, 100% { opacity: 1; }
    55%      { opacity: 0.25; }
}
.og-live-hero__event-name {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Body */
.og-live-hero__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--og-bg);
}
.og-live-hero__cover {
    aspect-ratio: 16 / 9;
    background-color: var(--og-hairline);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2px;
}
.og-live-hero__title {
    font-family: 'Outfit', 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.25;
    color: var(--og-text);
    margin: 0;
}
.og-live-hero:hover .og-live-hero__title { color: var(--og-text); opacity: 0.9; }

/* Mini canlı feed (son 3 entry) */
.og-live-hero__feed {
    display: flex;
    flex-direction: column;
    margin-top: 2px;
}
.og-live-hero__feed-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 7px 0;
    border-top: 1px solid var(--og-hairline);
    font-family: 'Outfit', sans-serif;
}
.og-live-hero__feed-item:first-child { border-top: 0; padding-top: 2px; }
.og-live-hero__feed-time {
    flex-shrink: 0;
    color: var(--og-red-bright);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    min-width: 42px;
    line-height: 1.4;
}
.og-live-hero__feed-title {
    font-size: 13.5px;
    color: var(--og-text);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

/* Yeşil CTA — "Canlı sayfaya git →" */
.og-live-hero__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    color: var(--og-green);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
}
.og-live-hero:hover .og-live-hero__cta { color: #86efac; }

/* Mobile */
@media (max-width: 720px) {
    .og-live-hero__title { font-size: 18px; }
    .og-live-hero__feed-title { font-size: 12.5px; }
    .og-live-hero__event-name { font-size: 12px; }
}

/* ============================================================
   HERO BÖLÜMÜ — FeaturedHero + HomeBanner üst üste
   Mevcut .hh-* sınıflarının çerçeve+gölgesini new layout'ta nötrleştirir;
   minimal Verge stiline uyacak şekilde tema değişkenleriyle adapte eder.
   ============================================================ */
.og-hero-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Manşet görseli ve rehber banner — çerçevesiz, gölgesiz, ince border-radius */
.og-hero-stack .hh-hero-img,
.og-hero-stack .hh-banner {
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 2px !important;
    overflow: hidden !important;
}
/* Görsel hover'da hafif zoom (ana sayfa kartlarıyla aynı davranış) */
.og-hero-stack .hh-hero-img,
.og-hero-stack .hh-banner-img {
    transition: transform 0.4s ease !important;
}
.og-hero-stack .hh-hero:hover .hh-hero-img,
.og-hero-stack .hh-banner:hover .hh-banner-img {
    transform: scale(1.03) !important;
}

/* Manşet başlığı — tema-aware (gündüz koyu, gece açık) */
.og-hero-stack .hh-hero-title {
    color: var(--og-text);
    font-size: 20px;
    line-height: 1.25;
    margin-top: 12px;
    transition: color 0.15s ease;
}
.og-hero-stack .hh-hero:hover .hh-hero-title { color: var(--og-text); opacity: 0.85; }
.og-hero-stack .hh-hero-empty .hh-hero-title { color: var(--og-text-muted); }
.og-hero-stack .hh-hero-empty .hh-hero-img {
    background: var(--og-hairline);
}

/* hh-banner kicker/sub etiketleri — banner'ın üstüne overlay olarak konumlandığından scale ile birlikte hareket etmesin */
.og-hero-stack .hh-banner-kicker,
.og-hero-stack .hh-banner-sub { z-index: 1; }

/* ============================================================
   GALERİ MANŞET — canlı yok ama IsFeatured galeri varsa hero olarak çıkar.
   ============================================================ */
.og-gallery-hero {
    display: block;
    text-decoration: none !important;
    color: var(--og-text);
}
.og-gallery-hero__cover {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: var(--og-hairline);
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    overflow: hidden;
}
.og-gallery-hero__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    z-index: 0;
}
/* Hover zoom — diğer kartlarla aynı davranış (gerçek img olmadığı için ::after trick) */
.og-gallery-hero:hover .og-gallery-hero__cover { background-size: 103% auto; }

.og-gallery-hero__tag {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.og-gallery-hero__tag .fa-images { font-size: 11px; }

.og-gallery-hero__title {
    font-family: 'Outfit', 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.25;
    color: var(--og-text);
    margin: 12px 0 0;
    transition: color 0.15s, opacity 0.15s;
}
.og-gallery-hero:hover .og-gallery-hero__title { opacity: 0.88; }

.og-gallery-hero__spot {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--og-text-muted);
    margin: 6px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   GÜNDÜZ MODU — data-theme="light" override'ları
   Dark mode :root'taki varsayılan; light mode burada token swap eder.
   ============================================================ */
[data-theme="light"] {
    --og-bg: #ffffff;
    --og-bg-elevated: #f5f7fa;
    --og-text: #1a1f2e;
    --og-text-muted: #5c6878;
    --og-text-dim: #8a96a8;
    --og-hairline: rgba(0, 0, 0, 0.10);
    --og-hairline-strong: rgba(0, 0, 0, 0.20);
    /* Fonksiyonel renkler aynı — kırmızı/yeşil/sarı zaten açık zeminde de iyi kontrast veriyor */
}

/* Görsel placeholder'lar — koyu zeminde ince beyaz, açık zeminde ince siyah */
[data-theme="light"] .og-card__media,
[data-theme="light"] .og-feed__thumb,
[data-theme="light"] .og-feed__big-thumb,
[data-theme="light"] .og-gallery__item,
[data-theme="light"] .og-pullquote__media {
    background: rgba(0, 0, 0, 0.05);
}

/* Subtle hover background */
[data-theme="light"] .og-feed__item:hover { background: rgba(0, 0, 0, 0.03); }

/* Hover'da başlık daha koyu (dark modda #fff yapıyorduk, light modda saf siyah) */
[data-theme="light"] .og-card:hover .og-card__title,
[data-theme="light"] .og-feed__item:hover .og-feed__title { color: #000; }

/* Section başlığı hover'da kırmızı highlight — light modda biraz koyu kırmızı daha okunaklı */
[data-theme="light"] a.og-section-head__title:hover { color: var(--og-red); }

/* Logo kontrastı — beyaz zemin üzerinde PNG'nin görünürlüğü ve hover */
[data-theme="light"] .og-mainnav__logo:hover { opacity: 0.75; }

/* Menu link active border — light modda kırmızı yerine biraz koyulaşan tonu */
[data-theme="light"] .og-mainnav__menu .menu-link.active { border-bottom-color: var(--og-red); }

/* Sağ kolon SON HABERLER node ring — light modda var(--og-bg) zaten beyaz, otomatik adapte olur */

/* Score badge'ler — text zaten #1b2838, açık zeminde de okunur. Override gereksiz. */
