/* hsh-v2 öffentliches Frontend — exakt nach Handoff "Türkische News Blog Layout" (Retnews-Stil).
   Accent #00a3e4, dunkle Bänder #0c0f12, Barlow / Barlow Condensed, Cool-Gray-Palette. */

:root {
    --accent: #00a3e4;
    --accent-dark: #0086bd;
    --ink: #14181c;
    --ink-2: #1c2228;
    --muted: #7a838c;
    --muted-2: #9aa6b0;
    --muted-3: #6b747c;
    --line: #e4e8ec;
    --line-2: #e8ecf0;
    --line-3: #eef1f4;
    --bg: #eef1f4;
    --dark: #0c0f12;
    --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
    --font-head: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
    --hero-h: 440px;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* Page wrapper (1240 weiße Karte mit Schatten) */
.page { max-width: 1240px; margin: 0 auto; background: #fff; box-shadow: 0 0 40px rgba(0, 0, 0, .06); }
.inner { max-width: 1180px; margin: 0 auto; padding: 0 16px; }

/* Placeholder-Bild + echtes Bild */
.ph { position: relative; background: repeating-linear-gradient(135deg, #edf0f3 0 11px, #e5eaef 11px 22px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-label { font-family: monospace; font-size: 10px; color: #a7b1bb; letter-spacing: 1.5px; }
.cat-badge { position: absolute; top: 0; left: 0; z-index: 2; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; padding: 4px 9px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--dark); color: #aeb6bd; }
.topbar .inner { padding: 9px 16px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 8px; }
.topbar .tb-date { font-family: var(--font-head); letter-spacing: .4px; text-transform: capitalize; color: #cfd6dc; }
.topbar .tb-right { display: flex; align-items: center; gap: 18px; font-family: var(--font-head); letter-spacing: .4px; }
.topbar a { color: #aeb6bd; }
.topbar a:hover { color: #fff; }
.tb-social { display: flex; gap: 7px; }
.tb-social span { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: #1b2026; color: #cfd6dc; font-family: var(--font-body); font-weight: 700; font-size: 11px; border-radius: 3px; cursor: pointer; }
.tb-social span:hover { background: var(--accent); color: #fff; }

/* ---------- Header ---------- */
.masthead { background: #fff; }
.masthead .inner { padding: 18px 16px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand-logo { height: 50px; width: auto; }
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px, 6vw, 32px); letter-spacing: -.5px; color: var(--ink); text-transform: uppercase; }
.brand-text b { color: var(--accent); }
.mainnav-list { display: flex; align-items: center; gap: 16px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 14.5px; letter-spacing: .5px; color: #222a30; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.mainnav-list > li > a { display: block; padding: 4px 0; border-bottom: 2px solid transparent; }
.mainnav-list > li > a:hover, .mainnav-list > li > a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-search { display: flex; align-items: center; background: #f1f4f7; border: 1px solid var(--line); border-radius: 4px; padding: 5px 10px; gap: 8px; }
.nav-search input { border: none; background: transparent; outline: none; font-family: var(--font-body); font-size: 13px; width: 70px; color: #222; }
.nav-search button { border: none; background: transparent; font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 14px; cursor: pointer; }
.accent-bar { height: 3px; background: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; font-size: 27px; line-height: 1; color: var(--ink); cursor: pointer; padding: 6px 8px; }

/* ---------- Mobiles Offcanvas-Menü (Drawer) ---------- */
.mnav-backdrop { position: fixed; inset: 0; background: rgba(12, 15, 18, .55); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .22s; z-index: 1090; }
.mnav-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw); background: #fff; z-index: 1100; transform: translateX(103%); transition: transform .26s cubic-bezier(.2, .7, .3, 1); display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; }
html.mnav-open .mnav-backdrop { opacity: 1; visibility: visible; }
html.mnav-open .mnav-drawer { transform: none; box-shadow: -18px 0 48px rgba(0, 0, 0, .22); }
html.mnav-open, html.mnav-open body { overflow: hidden; }
.mnav-top { display: flex; align-items: center; justify-content: space-between; background: var(--dark); color: #fff; padding: 14px 16px; }
.mnav-brand { font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: .3px; text-transform: uppercase; }
.mnav-brand b { color: var(--accent); }
.mnav-close { background: none; border: 0; color: #cfd6dc; font-size: 20px; cursor: pointer; padding: 2px 4px; }
.mnav-close:hover { color: #fff; }
.mnav-search { display: flex; margin: 14px 16px 4px; border: 1px solid var(--line); background: #f1f4f7; border-radius: 4px; overflow: hidden; }
.mnav-search input { flex: 1; border: 0; background: transparent; outline: none; padding: 10px 12px; font-family: var(--font-body); font-size: 14px; color: #222; min-width: 0; }
.mnav-search button { border: 0; background: transparent; color: var(--accent); font-size: 16px; padding: 0 14px; cursor: pointer; }
.mnav-links { display: flex; flex-direction: column; padding: 10px 10px 0; }
.mnav-links a { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-head); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-2); padding: 12px 8px; border-bottom: 1px solid var(--line-3); }
.mnav-links a i { color: #c3ccd4; font-size: 13px; }
.mnav-links a.active { color: var(--accent); }
.mnav-links a.active i { color: var(--accent); }
.mnav-sub { display: flex; flex-wrap: wrap; gap: 7px; padding: 16px 16px 4px; }
.mnav-sub a { font-family: var(--font-head); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .4px; color: #41515c; border: 1px solid #e0e5ea; padding: 6px 12px; border-radius: 3px; }
.mnav-social { display: flex; gap: 8px; padding: 16px 16px 22px; margin-top: auto; }
.mnav-social span { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: #f1f4f7; border: 1px solid var(--line); color: var(--ink-2); font-weight: 700; font-size: 12px; border-radius: 4px; }

/* ---------- Section titles ---------- */
.sec { padding-top: 26px; }
/* Akzent-Unterstrich exakt in Textbreite, überlagert die durchgehende feine Linie */
.sec-head { display: flex; align-items: flex-end; gap: 12px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.sec-head h2 { font-family: var(--font-head); font-size: clamp(19px, 4.8vw, 23px); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; margin: 0 0 -1px; padding: 0 2px 9px 0; border-bottom: 3px solid var(--accent); color: var(--ink); }
.sec-head.lg h2 { font-size: clamp(20px, 5.2vw, 25px); }
.sec-head.sb h2 { font-size: clamp(18px, 4.6vw, 21px); }
.sec-head.dark h2 { border-bottom-color: #3a444c; }
.sec-head .more { margin-left: auto; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .5px; color: var(--accent); padding-bottom: 9px; text-transform: uppercase; white-space: nowrap; }

/* ---------- Grids ---------- */
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.g6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

/* ---------- News card ---------- */
.ncard .ph { height: 175px; }
.ncard h3 { font-family: var(--font-head); font-weight: 600; font-size: 18.5px; line-height: 1.18; margin: 10px 0 0; color: var(--ink); }
.ncard:hover h3 { color: var(--accent); }
.ncard .meta { margin-top: 7px; font-size: 12px; color: var(--muted); }
.ncard .meta .by { color: var(--accent); font-weight: 600; }
.ncard.sm .ph { height: 130px; }
.ncard.sm h3 { font-size: 16px; margin-top: 9px; }
.ncard.md .ph { height: 140px; }
.ncard.md h3 { font-size: 16.5px; }

/* ---------- Hero / slider ---------- */
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.hero { position: relative; height: var(--hero-h); overflow: hidden; display: block; background: repeating-linear-gradient(135deg, #e7ebf0 0 16px, #dfe4ea 16px 32px); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 45%, transparent 68%); }
.hero .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; color: #fff; z-index: 2; }
.hero .badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .8px; padding: 5px 11px; margin-bottom: 12px; }
.hero h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(21px, 5.4vw, 34px); line-height: 1.12; margin: 0; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.hero .meta { margin-top: 12px; font-size: 13px; color: #e6eaee; }
/* Hero-Carousel (Manşet, swipebar) */
.hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item, .hero-carousel .hero { height: var(--hero-h); }
.hero-carousel .hero { width: 100%; }
.hero-carousel .carousel-indicators { margin-bottom: 10px; z-index: 3; }
.hero-carousel .carousel-indicators [data-bs-target] { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.55); opacity: 1; }
.hero-carousel .carousel-indicators .active { background: var(--accent); }
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next { width: 8%; opacity: 0; transition: opacity .15s; z-index: 3; }
.hero-carousel:hover .carousel-control-prev, .hero-carousel:hover .carousel-control-next { opacity: .9; }
.hero-carousel .cap { z-index: 2; }
.hero-side { display: flex; flex-direction: column; gap: 14px; }
.hero-sm { position: relative; height: 213px; overflow: hidden; display: block; background: repeating-linear-gradient(135deg, #e7ebf0 0 14px, #dfe4ea 14px 28px); }
.hero-sm img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-sm .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 55%, transparent 75%); }
.hero-sm .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; color: #fff; z-index: 2; }
.hero-sm .badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; padding: 3px 9px; margin-bottom: 8px; }
.hero-sm h3 { font-family: var(--font-head); font-weight: 600; font-size: 19px; line-height: 1.15; margin: 0; }
.hero-sm .meta { margin-top: 6px; font-size: 11.5px; color: #dfe4e9; }

/* ---------- Son Dakika ---------- */
.breaking { background: #f4f6f8; border-top: 1px solid #e7ebef; border-bottom: 1px solid #e7ebef; margin-top: 16px; }
.breaking .inner { padding: 14px 16px; display: grid; grid-template-columns: auto repeat(3, 1fr); gap: 20px; align-items: center; }
.breaking .lbl { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; color: #fff; background: var(--accent); padding: 7px 13px; font-size: 14.5px; letter-spacing: .6px; white-space: nowrap; }
.breaking .it { display: flex; gap: 11px; align-items: center; }
.breaking .it .th { flex: none; width: 66px; height: 50px; background: repeating-linear-gradient(135deg, #e6eaef 0 8px, #dde3e9 8px 16px); position: relative; overflow: hidden; }
.breaking .it .th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.breaking .it .c { font-family: var(--font-head); font-weight: 700; font-size: 10.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--accent); }
.breaking .it .t { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; line-height: 1.2; color: var(--ink-2); margin-top: 2px; }
.breaking .it:hover .t { color: var(--accent); }

/* ---------- Köşe Yazarları ---------- */
.yazar-card { display: block; text-align: center; background: #fff; border: 1px solid var(--line-2); padding: 18px 12px 16px; }
.yazar-card .av { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto; background: var(--line-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 25px; color: var(--muted-2); overflow: hidden; }
.yazar-card .av img { width: 100%; height: 100%; object-fit: cover; }
.yazar-card .b { display: inline-block; margin-top: 12px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: .8px; padding: 2px 8px; }
.yazar-card .b.kendi { background: var(--accent); }
.yazar-card .b.alinti { background: #3a444c; }
.yazar-card .nm { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-top: 8px; color: var(--ink); }
.yazar-card .ti { font-size: 12.5px; color: var(--muted); line-height: 1.3; margin-top: 3px; }

/* ---------- Main grid ---------- */
.main-grid { display: grid; grid-template-columns: 1fr 350px; gap: 38px; align-items: start; padding-bottom: 44px; }
.list-sm { }
.list-sm a { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line-3); }
.list-sm .th { flex: none; width: 96px; height: 66px; background: repeating-linear-gradient(135deg, #e6eaef 0 9px, #dde3e9 9px 18px); position: relative; overflow: hidden; }
.list-sm .th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.list-sm .c { font-family: var(--font-head); font-weight: 700; font-size: 10.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--accent); }
.list-sm h4 { font-family: var(--font-head); font-weight: 600; font-size: 17px; line-height: 1.2; margin: 3px 0 0; color: var(--ink-2); }
.list-sm a:hover h4 { color: var(--accent); }

/* Elegante Kategorie-Blöcke (Featured + Liste) */
.cat-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; align-items: start; }
.cat-feature { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: repeating-linear-gradient(135deg, #e7ebf0 0 14px, #dfe4ea 14px 28px); }
.cat-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.cat-feature:hover img { transform: scale(1.04); }
.cat-feature .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, transparent 78%); }
.cat-feature .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; color: #fff; }
.cat-feature .badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .6px; padding: 4px 10px; margin-bottom: 10px; }
.cat-feature .t { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 4.8vw, 24px); line-height: 1.14; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.cat-side { display: flex; flex-direction: column; }
.cat-row { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--line-3); align-items: center; }
.cat-row:first-child { padding-top: 0; }
.cat-row .th { flex: none; width: 96px; height: 64px; background: repeating-linear-gradient(135deg, #e6eaef 0 8px, #dde3e9 8px 16px); position: relative; overflow: hidden; }
.cat-row .th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-row .c { display: block; font-family: var(--font-head); font-weight: 700; font-size: 10.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--accent); }
.cat-row .h { display: block; font-family: var(--font-head); font-weight: 600; font-size: 16px; line-height: 1.2; color: var(--ink-2); margin-top: 2px; }
.cat-row:hover .h { color: var(--accent); }
@media (max-width: 767.98px) { .cat-grid { grid-template-columns: 1fr; } }

/* Tech/wide list */
.list-wide a { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-3); align-items: flex-start; }
.list-wide .th { flex: none; width: 170px; height: 108px; }
.list-wide .badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 10.5px; text-transform: uppercase; letter-spacing: .6px; padding: 3px 8px; }
.list-wide h4 { font-family: var(--font-head); font-weight: 600; font-size: 19px; line-height: 1.18; margin: 8px 0 0; color: var(--ink); }
.list-wide a:hover h4 { color: var(--accent); }
.list-wide p { font-size: 13px; color: var(--muted-3); line-height: 1.5; margin: 7px 0 0; }

/* ---------- Sidebar widgets ---------- */
.sw { margin-bottom: 30px; }
.rank { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-3); align-items: flex-start; }
.rank .n { font-family: var(--font-head); font-weight: 700; font-size: 27px; line-height: 1; color: var(--accent); width: 28px; flex: none; }
.rank .c { font-family: var(--font-head); font-weight: 700; font-size: 10.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted-2); }
.rank h4 { font-family: var(--font-head); font-weight: 600; font-size: 16px; line-height: 1.2; margin: 2px 0 0; color: var(--ink-2); }
.rank:hover h4 { color: var(--accent); }
.author-row { display: flex; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line-3); }
.author-row .av { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--line-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--muted-2); overflow: hidden; }
.author-row .av img { width: 100%; height: 100%; object-fit: cover; }
.author-row .nm { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; color: var(--ink); }
.author-row:hover .nm { color: var(--accent); }
.author-row .nt { font-size: 12px; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags a { font-family: var(--font-head); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .4px; color: #41515c; border: 1px solid #e0e5ea; padding: 5px 11px; }
.tags a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.ad-box { background: var(--dark); height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); }
.ad-box .a1 { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 2px; color: #5a646c; text-transform: uppercase; }
.ad-box .a2 { font-family: monospace; font-size: 11px; color: #3f4951; margin-top: 6px; }
.ad-live { text-align: center; overflow: hidden; }
.ad-live img { max-width: 100%; height: auto; display: inline-block; }
.newsletter { background: #f4f6f8; border: 1px solid #e7ebef; padding: 22px 20px; }
.newsletter .t { font-family: var(--font-head); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: .4px; color: var(--ink); }
.newsletter p { font-size: 13px; color: var(--muted-3); line-height: 1.5; margin: 8px 0 14px; }
.newsletter .f { display: flex; border: 1px solid #d8dee3; background: #fff; }
.newsletter input { flex: 1; border: none; outline: none; padding: 11px 12px; font-family: var(--font-body); font-size: 13px; color: #222; background: transparent; }
.newsletter button { border: none; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .6px; padding: 0 16px; cursor: pointer; }
.newsletter button:hover { background: var(--accent-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #9aa3aa; }
.site-footer .cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 46px 16px 30px; max-width: 1180px; margin: 0 auto; }
.site-footer .ft { font-family: var(--font-head); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .8px; color: #fff; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 6px; margin-bottom: 14px; }
.site-footer .lnk { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.site-footer .about p { font-size: 13px; line-height: 1.7; color: #9aa3aa; margin: 0; }
.site-footer a:hover { color: #fff; }
.site-footer .mid { border-top: 1px solid #1d2329; }
.site-footer .mid .inner { padding: 22px 16px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-footer .foot-brand { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: #fff; text-transform: uppercase; }
.site-footer .foot-brand b { color: var(--accent); }
.site-footer .bottom { background: #08090b; }
.site-footer .bottom .inner { padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: #6c757d; }
.site-footer .bottom .blnk { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--font-head); letter-spacing: .3px; }

/* ---------- Mega menu (volle Breite) ---------- */
.masthead { position: relative; }
.mega-panel { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 3px solid var(--accent); box-shadow: 0 18px 44px rgba(0,0,0,.13); z-index: 1030; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .16s, transform .16s; }
.mega-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { max-width: 1180px; margin: 0 auto; padding: 22px 16px 26px; }
.mega-head { display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.mega-head h3 { margin: 0 0 -1px; font-family: var(--font-head); font-weight: 700; font-size: 21px; text-transform: uppercase; letter-spacing: .6px; color: var(--ink); border-bottom: 3px solid var(--accent); padding: 0 2px 10px 0; }
.mega-head .all { padding-bottom: 10px; }
.mega-head .all { font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mega-card { display: block; color: var(--ink); }
.mega-card .mt { position: relative; aspect-ratio: 16/9; background: repeating-linear-gradient(135deg, #edf0f3 0 11px, #e5eaef 11px 22px); overflow: hidden; }
.mega-card .mt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-card .mtt { font-family: var(--font-head); font-weight: 600; font-size: 16px; line-height: 1.2; margin-top: 9px; }
.mega-card:hover .mtt { color: var(--accent); }
.mega-empty { color: var(--muted); padding: 8px; }
@media (max-width: 991.98px) { .mega-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px) { .mega-panel { display: none !important; } }

/* ---------- Keyword / Etiket ---------- */
.kw-banner { display: flex; gap: 14px; align-items: center; background: #eaf7fd; border: 1px solid #bfe6f6; border-left: 4px solid var(--accent); padding: 14px 16px; margin-bottom: 22px; color: var(--ink); }
.kw-banner:hover { background: #ddf1fb; color: var(--ink); }
.kw-icon { color: var(--accent); font-size: 22px; }
.kw-go { display: block; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; font-size: 12.5px; color: var(--accent); margin-top: 2px; }
.kw-hero { display: flex; gap: 20px; align-items: flex-start; background: #f4f6f8; border: 1px solid var(--line); padding: 20px; }
.kw-hero .kw-img { width: 200px; height: 130px; object-fit: cover; flex: none; border-radius: 2px; }
@media (max-width: 575.98px) { .kw-hero { flex-direction: column; } .kw-hero .kw-img { width: 100%; height: 180px; } }

/* Etikett-Panel in der Suche: Info links, ähnliche Wörter rechts */
.kw-panel { display: grid; grid-template-columns: 1fr 280px; gap: 22px; background: #f4f6f8; border: 1px solid var(--line); padding: 20px; }
.kw-panel .kw-hero { background: none; border: 0; padding: 0; }
.kw-aside { border-left: 1px solid var(--line); padding-left: 20px; min-width: 0; }
.kw-aside-t { font-family: var(--font-head); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink); margin-bottom: 10px; }
.kw-aside .tags a { background: #fff; }
@media (max-width: 767.98px) {
    .kw-panel { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
    .kw-aside { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 14px; }
}

/* ---------- Breadcrumb ---------- */
.hsh-breadcrumb { font-family: var(--font-head); font-size: 13px; letter-spacing: .3px; color: var(--muted); padding: 0 0 16px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; text-transform: uppercase; }
.hsh-breadcrumb a { color: var(--muted); }
.hsh-breadcrumb a:hover { color: var(--accent); }
.hsh-breadcrumb .sep { color: #c9d2da; }
.hsh-breadcrumb .cur { color: var(--ink); font-weight: 600; }

/* ---------- Article layout (sticky sidebar) ---------- */
.article-wrap { display: grid; grid-template-columns: 1fr 330px; gap: 38px; align-items: start; }
.article-sidebar { position: sticky; top: 16px; }
@media (max-width: 991.98px) { .article-wrap { grid-template-columns: 1fr; } .article-sidebar { position: static; } }

/* ---------- Generic page (article/category/etc.) ---------- */
.section-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 5vw, 23px); text-transform: uppercase; letter-spacing: .6px; color: var(--ink); border-left: 4px solid var(--accent); border-bottom: 1px solid var(--line); padding: 2px 0 10px 12px; margin: 0 0 18px; }
.section-title .more { margin-left: auto; font-size: 13px; color: var(--accent); }
.article-body { font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.article-body img { height: auto; margin: 12px 0; }
.article-body p { margin: 0 0 1.1em; }
.hsh-card { background: #fff; border: 1px solid var(--line); overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.hsh-card .thumb { display: block; }
.hsh-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.hsh-card .body { padding: 12px 14px; }
.hsh-cat { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; font-size: 12px; color: var(--accent); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    :root { --hero-h: 360px; }
    .main-grid { grid-template-columns: 1fr; gap: 30px; }
    .g6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
    :root { --hero-h: min(74vw, 330px); }
    .nav-toggle { display: block; }
    .mainnav-wrap { display: none; }
    .masthead .inner { padding: 12px 16px; }
    .brand-logo { height: 40px; }
    .topbar .inner { padding: 8px 16px; }
    .hero-grid { grid-template-columns: 1fr; gap: 12px; }
    .hero .cap { padding: 16px 16px 22px; }
    .hero .badge { margin-bottom: 8px; }
    .hero-sm { height: 176px; }
    .breaking { margin-top: 12px; }
    .breaking .inner { grid-template-columns: 1fr; gap: 10px; }
    .g4 { grid-template-columns: 1fr 1fr; gap: 14px; }
    .g3 { grid-template-columns: 1fr 1fr; gap: 14px; }
    .g6 { grid-template-columns: 1fr 1fr; gap: 12px; }
    /* Karten fluid: Bildhöhe folgt der Spaltenbreite statt fixer Pixel */
    .ncard .ph { height: auto !important; aspect-ratio: 16 / 10; }
    .ncard h3 { font-size: 16px !important; margin-top: 8px; }
    .ncard .meta { margin-top: 5px; }
    .list-sm h4 { font-size: 15.5px; }
    .rank h4 { font-size: 15.5px; }
    .list-wide .th { width: 120px; height: 84px; }
    .article-body { font-size: 16.5px; line-height: 1.7; }
    .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 24px; padding: 38px 16px 24px; }
    .sec { padding-top: 22px; }
}
@media (max-width: 575.98px) {
    .topbar .tb-right > a { display: none; } /* Schnelllinks stecken im Drawer */
    /* Footer: kompaktes 2-Spalten-Grid, About über volle Breite, alles Weitere zentriert */
    .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 22px 18px; padding: 30px 16px 16px; }
    .site-footer .ft { font-size: 14px; padding-bottom: 5px; margin-bottom: 10px; }
    .site-footer .lnk { font-size: 13px; gap: 8px; }
    .site-footer .about { grid-column: 1 / -1; border-top: 1px solid #1d2329; padding-top: 18px; }
    .site-footer .mid .inner { flex-direction: column; justify-content: center; gap: 12px; padding: 18px 16px; }
    .site-footer .foot-brand { font-size: 22px; }
    .site-footer .bottom .inner { flex-direction: column; justify-content: center; gap: 10px; text-align: center; }
    .site-footer .blnk { justify-content: center; gap: 8px 14px; }
}
@media (max-width: 479.98px) {
    .g4, .g3, .g2 { grid-template-columns: 1fr; }
    .g6 { grid-template-columns: 1fr 1fr; }
}

/* Sürmanşet als kompakter Swipe-Slider auf Mobil (horizontaler Scroll mit Snap) */
@media (max-width: 767.98px) {
    .sur-slider {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 6px;
        scroll-padding-left: 0;
    }
    .sur-slider::-webkit-scrollbar { display: none; }
    .sur-slider > .ncard {
        flex: 0 0 63%;
        scroll-snap-align: start;
    }
    .sur-slider > .ncard .ph { height: auto !important; aspect-ratio: 16 / 10; }
    .sur-slider > .ncard h3 { font-size: 15px !important; }
}
