/* ═══════════════════════════════════════════════════════════
   DRASHTIKON NEWS — dn-redesign.css
   Design tokens, layout, components for the 2026 redesign.
   Loaded AFTER bootstrap.min.css and style.css.
═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --red:        #CF080D;
  --red-dark:   #a30009;
  --navy:       #1a2c45;
  --navy-mid:   #243d5c;
  --gold:       #B8860B;
  --bg:         #f4f1ec;
  --surface:    #ffffff;
  --surface-2:  #faf8f6;
  --text:       #1c1c1c;
  --text-2:     #374151;
  --text-muted: #6b7280;
  --text-faint: #9ca3af;
  --border:     #e8e4de;
  --border-lt:  #f0ece7;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,.11);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.15);
  --r-sm:  6px;
  --r:     10px;
  --r-lg:  16px;
  --ff-h:  'Playfair Display', Georgia, serif;
  --ff-b:  'Source Serif 4', Georgia, serif;
  --ff-ui: 'Barlow Condensed', system-ui, sans-serif;
  --ease:  0.24s ease;
}

/* ── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Shared container (replaces bootstrap's .container in new pages) */
.dn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  box-shadow: 0 2px 14px rgba(0,0,0,.09);
}

/* Top row: logo + date + social */
.hdr-top {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.hdr-top .dn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  height: auto;
  width: auto;
}
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(207,8,13,.35);
}
.logo-mark span {
  font-family: var(--ff-h);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.logo-text { line-height: 1.1; }
.logo-name {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.3px;
}
.logo-tag {
  font-family: var(--ff-ui);
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hdr-date {
  font-family: var(--ff-ui);
  font-size: 13px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.hdr-date i { color: var(--red); font-size: 12px; }
.hdr-social { display: flex; gap: 6px; }

/* Social icon buttons */
.sb {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--ease);
}
.sb:hover { transform: translateY(-2px); }
.sb.fb:hover { background:#1877f2; border-color:#1877f2; color:#fff; }
.sb.ig:hover { background:#e1306c; border-color:#e1306c; color:#fff; }
.sb.yt:hover { background:#ff0000; border-color:#ff0000; color:#fff; }
.sb.wa:hover { background:#25d366; border-color:#25d366; color:#fff; }
.sb.tw:hover { background:#1da1f2; border-color:#1da1f2; color:#fff; }

/* Nav bar */
.hdr-nav { background: var(--navy); }
.hdr-nav .dn-container {
  display: flex;
  align-items: stretch;
}

/* Nav list */
.hdr-nav .nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
}
.hdr-nav .nav-links > li {
  display: flex;
  align-items: stretch;
  position: relative;
}
.hdr-nav .nav-links > li > a {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 15px;
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  letter-spacing: .3px;
  white-space: nowrap;
  position: relative;
  transition: color var(--ease), background var(--ease);
}
.hdr-nav .nav-links > li > a:hover,
.hdr-nav .nav-links > li > a.active {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.hdr-nav .nav-links > li > a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: #feed00;
}
.hdr-nav .nav-links .fa-youtube { color: #ff5252; }
.hdr-nav .nav-links .fa-newspaper { color: #ffd54f; }

/* Dropdown */
.hdr-nav .has-dropdown,
.nav-drop-wrap { position: relative; }

.hdr-nav .nav-dropdown,
.nav-drop {
  position: absolute; top: 100%; left: 0;
  background: var(--surface);
  min-width: 166px;
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  display: none;
  z-index: 200;
  list-style: none;
  margin: 0;
}
.hdr-nav .has-dropdown:hover .nav-dropdown,
.nav-drop-wrap:hover .nav-drop { display: block; }

.hdr-nav .nav-dropdown li a,
.nav-drop li a,
.nav-drop a {
  display: block; padding: 9px 18px;
  font-family: var(--ff-ui); font-size: 14px; font-weight: 600;
  color: var(--text); transition: all var(--ease);
  background: none;
}
.hdr-nav .nav-dropdown li a:hover,
.nav-drop li a:hover,
.nav-drop a:hover { background: var(--red); color: #fff; }

/* Search slot */
.nav-search-slot {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.nsf {
  display: flex; align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px; overflow: hidden;
  transition: background var(--ease);
}
.nsf:focus-within { background: rgba(255,255,255,.2); }
.nsf input {
  background: none; border: none; outline: none;
  padding: 7px 14px; font-family: var(--ff-ui); font-size: 13px;
  color: #fff; width: 175px;
}
.nsf input::placeholder { color: rgba(255,255,255,.46); }
.nsf button {
  background: none; border: none; padding: 7px 13px;
  color: rgba(255,255,255,.65); cursor: pointer; font-size: 13px;
  transition: color var(--ease);
}
.nsf button:hover { color: #fff; }

/* Mobile toggle (hidden on desktop) */
.nav-toggler {
  display: none;
  background: none; border: none; padding: 10px 12px;
  cursor: pointer; flex-direction: column; gap: 5px;
  align-items: center; align-self: center;
}
.nav-toggler span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.82); border-radius: 2px;
  transition: all var(--ease);
}

/* ── Breaking Ticker ───────────────────────────────────── */
.breaking-bar {
  background: var(--red);
  padding: 7px 0;
  overflow: hidden;
}
.breaking-bar .dn-container {
  display: flex;
  align-items: center;
}
.br-label {
  display: flex; align-items: center; gap: 7px;
  background: var(--navy); color: #fff;
  font-family: var(--ff-ui); font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 20px 3px 14px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  white-space: nowrap; flex-shrink: 0;
}
.br-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: dn-blink 1.3s infinite;
}
@keyframes dn-blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.6); }
}
.ticker-wrap { flex: 1; overflow: hidden; padding: 0 14px; }
.ticker-track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  animation: dn-tick 120s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-track a,
.ticker-item {
  font-family: var(--ff-ui); font-size: 14px;
  color: #fff; font-weight: 500;
  flex-shrink: 0; white-space: nowrap;
  transition: opacity var(--ease);
}
.ticker-track a:hover { opacity: .85; }
.ticker-track a::before,
.ticker-item::before {
  content: '\25C6';
  font-size: 8px;
  opacity: .7;
  margin-right: 8px;
  vertical-align: middle;
}
.ticker-sep { display: none; }
@keyframes dn-tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADER PATTERN
══════════════════════════════════════════════════════════ */
.sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.sec-title {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--ff-h); font-size: 22px; font-weight: 700;
  color: var(--text);
}
.sec-title::before {
  content: '';
  display: block; width: 5px; height: 26px;
  background: var(--red); border-radius: 3px; flex-shrink: 0;
}
.sec-title .si { color: var(--red); font-size: 17px; }
.sec-more {
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: var(--red); display: flex; align-items: center; gap: 5px;
  transition: gap var(--ease);
}
.sec-more:hover { gap: 9px; }

/* ── Category Badge ────────────────────────────────────── */
.ctag {
  display: inline-block;
  padding: 3px 9px; border-radius: 4px;
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase;
}
.ctag.red    { background: var(--red);  color: #fff; }
.ctag.navy   { background: var(--navy); color: #fff; }
.ctag.blue   { background: #2563eb;    color: #fff; }
.ctag.green  { background: #059669;    color: #fff; }
.ctag.purple { background: #7c3aed;    color: #fff; }
.ctag.amber  { background: #d97706;    color: #fff; }
.ctag.cyan   { background: #0891b2;    color: #fff; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero-section { padding: 26px 0 22px; }
.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hsc {
  position: relative;
  aspect-ratio: 2 / 1;
  border-radius: var(--r-lg); overflow: hidden;
  background: #111;
  display: block;
}
.hsc img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.hsc:hover img { transform: scale(1.05); }
.hsc::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.30) 55%,
    transparent 100%);
}
.hsc-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px; z-index: 1;
}
.hsc-title {
  font-family: var(--ff-h); font-size: 18px; font-weight: 700;
  color: #fff; line-height: 1.35; margin: 8px 0 6px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  letter-spacing: 0;
}
/* First card (top-left) — slightly emphasized for the lead headline */
.hero-grid > .hsc:first-child .hsc-title { font-size: 20px; }
.hsc-date {
  font-family: var(--ff-ui); font-size: 12px;
  color: rgba(255,255,255,.7);
}

/* ══════════════════════════════════════════════════════════
   LATEST CAROUSEL STRIP
══════════════════════════════════════════════════════════ */
.latest-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.carousel-outer { position: relative; }
.carousel-vp { overflow: hidden; }
.carousel-track {
  display: flex; gap: 16px;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
}
.nc {
  width: 222px; flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.nc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.nc-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.nc-body { padding: 11px 13px 13px; }
.nc-title {
  font-family: var(--ff-h); font-size: 14px; font-weight: 600;
  color: var(--text); line-height: 1.42; margin: 7px 0 8px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--ease);
}
.nc:hover .nc-title { color: var(--red); }
.nc-date {
  font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint);
  display: flex; align-items: center; gap: 5px;
}
.nc-date i { font-size: 10px; }

.cr-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  box-shadow: var(--shadow); transition: all var(--ease); font-size: 14px;
}
.cr-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.cr-prev { left: -18px; }
.cr-next { right: -18px; }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE HERO ROW — hero grid + sidebar top ad side-by-side
   so the sidebar ad is visible above the fold on page load.
══════════════════════════════════════════════════════════ */
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px;
  align-items: start;
}
/* Align the sidebar ad with the top of the hero section */
.home-hero-aside {
  padding-top: 26px;   /* matches .hero-section padding-top */
}

@media (max-width: 1050px) {
  .home-hero-grid { grid-template-columns: 1fr 290px; }
}
@media (max-width: 900px) {
  /* Sidebar is hidden on mobile — hide the hero-aside too */
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-aside { display: none; }
}

/* ══════════════════════════════════════════════════════════
   MAIN LAYOUT GRID (inner pages + homepage below the carousel)
══════════════════════════════════════════════════════════ */
.main-area { padding: 30px 0 48px; }
.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px;
  align-items: start;
}
.main-col { display: flex; flex-direction: column; gap: 24px; }

/* ══════════════════════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════════════════════ */
.vids-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 22px 18px;
}
.vids-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; margin-bottom: 18px;
}
.vc {
  border-radius: var(--r-sm); overflow: hidden;
  background: #0e1a28;
  transition: transform var(--ease), box-shadow var(--ease);
}
.vc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vc-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.vc-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.vc:hover .vc-thumb img { transform: scale(1.07); }
.vc-dur {
  position: absolute; bottom: 6px; right: 6px;
  background: rgba(0,0,0,.82); color: #fff;
  font-family: var(--ff-ui); font-size: 11px; font-weight: 600;
  padding: 2px 6px; border-radius: 3px;
}
.vc-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent; transition: background var(--ease);
}
.vc:hover .vc-overlay { background: rgba(0,0,0,.38); }
.vc-play {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 15px;
  transform: scale(0);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.vc:hover .vc-play { transform: scale(1); }
.vc-body { padding: 9px 11px 11px; background: var(--surface); }
.vc-title {
  font-family: var(--ff-h); font-size: 13px; font-weight: 600;
  color: var(--text); line-height: 1.4; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--ease);
}
.vc:hover .vc-title { color: var(--red); }
.vc-meta {
  font-family: var(--ff-ui); font-size: 11px; color: var(--text-faint);
  display: flex; align-items: center; gap: 4px;
}
.vids-footer { display: flex; justify-content: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 28px; border: 2px solid var(--red); border-radius: 25px;
  font-family: var(--ff-ui); font-size: 14px; font-weight: 700;
  color: var(--red); letter-spacing: .3px; transition: all var(--ease);
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ══════════════════════════════════════════════════════════
   CATEGORY TABS SECTION
══════════════════════════════════════════════════════════ */
.cat-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 22px 18px;
}
.cat-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-bottom: 16px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.ct {
  padding: 6px 17px; border-radius: 20px;
  font-family: var(--ff-ui); font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  transition: all var(--ease);
}
.ct:hover { border-color: var(--red); color: var(--red); }
.ct.active { background: var(--red); border-color: var(--red); color: #fff; }

.cat-panel { display: none; }
.cat-panel.active {
  display: grid;
  grid-template-columns: repeat(3,1fr); gap: 16px;
}
.cnc {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all var(--ease);
}
.cnc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.cnc-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.cnc-body { padding: 13px; }
.cnc-title {
  font-family: var(--ff-h); font-size: 15px; font-weight: 600;
  line-height: 1.4; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  margin: 8px 0 10px; transition: color var(--ease);
}
.cnc:hover .cnc-title { color: var(--red); }
.cnc-excerpt {
  font-family: var(--ff-b); font-size: 13px;
  color: var(--text-muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 10px;
}
.cnc-meta {
  font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint);
  display: flex; align-items: center; gap: 6px;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sw {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.sw-head {
  padding: 13px 17px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 9px;
  font-family: var(--ff-h); font-size: 17px; font-weight: 700; color: var(--text);
}
.sw-head::before {
  content: ''; display: block; width: 4px; height: 20px;
  background: var(--red); border-radius: 2px; flex-shrink: 0;
}
.sw-body { padding: 14px 17px; }

/* Top 5 items */
.t5i {
  display: flex; gap: 11px; padding: 11px 0;
  border-bottom: 1px solid var(--border-lt);
  transition: all var(--ease);
}
.t5i:last-child { border-bottom: none; }
.t5i:hover .t5-title { color: var(--red); }
.t5-num {
  font-family: var(--ff-h); font-size: 24px; font-weight: 800;
  color: var(--red); opacity: .22; line-height: 1;
  flex-shrink: 0; width: 28px;
}
.t5-img { width: 70px; height: 52px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.t5-info { flex: 1; min-width: 0; }
.t5-title {
  font-family: var(--ff-h); font-size: 13.5px; font-weight: 600;
  line-height: 1.38; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 4px; transition: color var(--ease);
}
.t5-date { font-family: var(--ff-ui); font-size: 11px; color: var(--text-faint); }

/* E-Paper widget — all rules scoped under .ep-inner to beat any style.css .ep-* conflicts */
.ep-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 22px 18px; text-align: center;
  /* own border-radius so gradient corners are rounded even when parent has overflow:visible */
  border-radius: var(--r-lg);
}
.ep-inner .ep-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #fff;
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; padding: 3px 12px; border-radius: 20px;
  margin-bottom: 10px;
}
/* Beats bare .ep-title { font-family: Barlow Condensed } in style.css (viewer toolbar) */
.ep-inner .ep-title {
  font-family: var(--ff-h); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 3px;
}
.ep-inner .ep-date {
  font-family: var(--ff-ui); font-size: 13px;
  color: rgba(255,255,255,.55); margin-bottom: 14px;
}
.ep-inner .ep-thumb {
  width: 110px; height: 148px; object-fit: cover;
  border-radius: 8px; margin: 0 auto 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  border: 2.5px solid rgba(255,255,255,.16);
}
.ep-inner .ep-btns { display: flex; gap: 9px; justify-content: center; }
.ep-inner .btn-ep {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 17px; border-radius: 22px;
  font-family: var(--ff-ui); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all var(--ease); border: none;
  text-decoration: none;
}
.ep-inner .btn-ep-solid { background: var(--red); color: #fff; }
.ep-inner .btn-ep-solid:hover { background: var(--red-dark); transform: translateY(-2px); color: #fff; }
.ep-inner .btn-ep-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.22) !important;
}
.ep-inner .btn-ep-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Popular items */
.pop-item {
  display: flex; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--border-lt);
  transition: all var(--ease);
}
.pop-item:last-child { border-bottom: none; }
.pop-item:hover .pop-title { color: var(--red); }
.pop-img { width: 62px; height: 46px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.pop-info { flex: 1; min-width: 0; }
.pop-title {
  font-family: var(--ff-h); font-size: 13px; font-weight: 600;
  line-height: 1.38; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 4px; transition: color var(--ease);
}
.pop-views {
  font-family: var(--ff-ui); font-size: 11px; color: var(--text-faint);
  display: flex; align-items: center; gap: 4px;
}
.pop-views i { font-size: 10px; color: var(--red); opacity: .7; }

/* ══════════════════════════════════════════════════════════
   VIDEO MODAL
══════════════════════════════════════════════════════════ */
.v-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.9); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.v-modal.open { opacity: 1; pointer-events: all; }
.v-modal-box {
  background: var(--navy); border-radius: var(--r-lg);
  overflow: hidden; width: 100%; max-width: 840px;
  transform: scale(.88);
  transition: transform .32s cubic-bezier(.34,1.56,.64,1);
  box-shadow: var(--shadow-lg);
}
.v-modal.open .v-modal-box { transform: scale(1); }
.vm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.vm-title {
  font-family: var(--ff-h); font-size: 15px; font-weight: 600;
  color: #fff; flex: 1; margin-right: 14px;
  display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; overflow: hidden;
}
.vm-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  color: #fff; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--ease);
}
.vm-close:hover { background: rgba(255,255,255,.22); }
.vm-body { position: relative; aspect-ratio: 16/9; background: #000; }
.vm-body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════════════════════
   AD BLOCKS
══════════════════════════════════════════════════════════ */
.ad-block { width: 100%; text-align: center; }
.ad-block.leaderboard-slot {
  padding: 10px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ad-block.mid-slot { padding: 18px 0; }
.ad-label {
  font-family: var(--ff-ui);
  font-size: 10px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 6px;
}

/* ── Scroll Fade-In ────────────────────────────────────── */
.fi {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fi.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); padding: 48px 0 0; margin-top: 12px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.f-brand .f-logo-row {
  display: flex; align-items: center; gap: 9px; margin-bottom: 12px;
}
.f-lm {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.f-lm span { font-family: var(--ff-h); font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.f-name { font-family: var(--ff-h); font-size: 18px; font-weight: 700; color: #fff; }
.f-brand p {
  font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,.48); margin-bottom: 16px;
}
.f-socials { display: flex; gap: 8px; margin-bottom: 18px; }
.fsb {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 13px; transition: all var(--ease);
}
.fsb:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.f-col h5 {
  font-family: var(--ff-ui); font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  padding-bottom: 10px; margin-bottom: 14px;
  border-bottom: 2px solid var(--red); display: inline-block;
}
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a {
  font-size: 13px; color: rgba(255,255,255,.54);
  display: flex; align-items: center; gap: 7px; transition: color var(--ease);
}
.f-links a::before { content: '›'; color: var(--red); font-size: 15px; line-height: 1; }
.f-links a:hover { color: rgba(255,255,255,.9); }
.f-contact { display: flex; flex-direction: column; gap: 10px; }
.fci {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,.54);
}
.fci i { color: var(--red); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.fci a { color: rgba(255,255,255,.54); transition: color var(--ease); }
.fci a:hover { color: rgba(255,255,255,.9); }
.f-reg {
  margin-top: 14px; border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 12px;
}
.f-reg p { font-family: var(--ff-ui); font-size: 12px; color: rgba(255,255,255,.38); margin-bottom: 4px; }
.f-reg span { color: rgba(255,255,255,.6); }

.footer-bottom { padding: 15px 0; }
.footer-bottom .dn-container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.f-copy { font-family: var(--ff-ui); font-size: 13px; color: rgba(255,255,255,.38); }
.f-legal { display: flex; gap: 14px; }
.f-legal a {
  font-family: var(--ff-ui); font-size: 12px; color: rgba(255,255,255,.38);
  transition: color var(--ease);
}
.f-legal a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════
   NEWS DETAIL PAGE
══════════════════════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
  padding: 30px 0 48px;
}
.article-col { min-width: 0; }

.art-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint);
  margin-bottom: 14px; flex-wrap: wrap;
}
.art-breadcrumb a { color: var(--text-faint); transition: color var(--ease); }
.art-breadcrumb a:hover { color: var(--red); }
.art-breadcrumb .sep { opacity: .5; }

.art-title {
  font-family: var(--ff-h); font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; line-height: 1.35; color: var(--text);
  margin: 12px 0 16px;
}
.art-byline {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.art-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.art-avatar-init {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h); font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.art-author-name {
  font-family: var(--ff-ui); font-size: 14px; font-weight: 700;
  color: var(--text);
}
.art-author-name a { color: var(--text); }
.art-author-name a:hover { color: var(--red); }
.art-meta {
  font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 2px;
}
.art-meta i { font-size: 10px; }

.art-share {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 22px;
  font-family: var(--ff-ui); font-size: 13px; font-weight: 700;
  cursor: pointer; border: none; transition: all var(--ease);
  text-decoration: none;
}
.share-btn-wa  { background: #25d366; color: #fff; }
.share-btn-fb  { background: #1877f2; color: #fff; }
.share-btn-tw  { background: #1da1f2; color: #fff; }
.share-btn-cp  { background: var(--surface); color: var(--text); border: 1.5px solid var(--border); }
.share-btn:hover { opacity: .88; transform: translateY(-1px); }
.share-btn-cp.copied { background: #059669; color: #fff; border-color: #059669; }

.art-featured-img {
  width: 100%; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 24px;
}
.art-featured-img img { width: 100%; display: block; }
.art-featured-img figcaption {
  font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint);
  padding: 6px 0; font-style: italic;
}

.article-body {
  font-family: var(--ff-b); font-size: 17px; line-height: 1.78;
  color: var(--text-2);
}
.article-body p { margin-bottom: 1.2em; }
.article-body h2 { font-family: var(--ff-h); font-size: 22px; font-weight: 700; margin: 1.5em 0 .6em; }
.article-body h3 { font-family: var(--ff-h); font-size: 19px; font-weight: 700; margin: 1.3em 0 .5em; }
.article-body img { border-radius: var(--r); margin: 1em 0; max-width: 100%; }
.article-body ul, .article-body ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.article-body li { margin-bottom: .4em; }
.article-body blockquote {
  border-left: 4px solid var(--red); padding: 14px 20px;
  background: var(--surface-2); border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; margin: 1.4em 0;
}
.article-body a { color: var(--red); text-decoration: underline; }

.art-share-bottom {
  border-top: 1px solid var(--border); margin-top: 28px; padding-top: 18px;
}
.art-share-bottom p {
  font-family: var(--ff-ui); font-size: 12px; letter-spacing: .5px;
  color: var(--text-faint); margin-bottom: 10px; text-transform: uppercase;
}

/* Related news */
.related-section { margin-top: 32px; }
.related-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.rel-card {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  transition: all var(--ease);
}
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.rel-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.rel-body { padding: 12px; }
.rel-title {
  font-family: var(--ff-h); font-size: 14px; font-weight: 600;
  line-height: 1.4; color: var(--text); margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--ease);
}
.rel-card:hover .rel-title { color: var(--red); }
.rel-meta { font-family: var(--ff-ui); font-size: 11px; color: var(--text-faint); }

/* ══════════════════════════════════════════════════════════
   CATEGORY PAGE
══════════════════════════════════════════════════════════ */
.cat-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px; align-items: start;
  padding: 30px 0 48px;
}
.cat-page-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.cat-page-title {
  font-family: var(--ff-h); font-size: 26px; font-weight: 700;
  color: var(--text); display: flex; align-items: center; gap: 10px;
}
.cat-page-title::before {
  content: ''; display: block; width: 5px; height: 30px;
  background: var(--red); border-radius: 3px;
}
.cat-count {
  font-family: var(--ff-ui); font-size: 14px; color: var(--text-faint);
  margin-left: 4px;
}

.cat-news-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  margin-bottom: 28px;
}
.cng-card {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  transition: all var(--ease);
}
.cng-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.cng-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.cng-body { padding: 14px; }
.cng-cat {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase;
  background: var(--red); color: #fff; margin-bottom: 6px;
}
.cng-title {
  font-family: var(--ff-h); font-size: 16px; font-weight: 600;
  line-height: 1.4; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 8px; transition: color var(--ease);
}
.cng-card:hover .cng-title { color: var(--red); }
.cng-meta { font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint); }

/* ══════════════════════════════════════════════════════════
   PAGINATION (client-side dn_pager template)
   Flat structure: <nav class="dn-pagination">
     <a|span class="page-link [page-nav|active|is-disabled]">…</a>
     <span class="page-gap">…</span>
══════════════════════════════════════════════════════════ */
.dn-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.dn-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-muted);
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--ease);
}
.dn-pagination a.page-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--surface);
}
.dn-pagination .page-link.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  cursor: default;
}
.dn-pagination .page-link.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  background: var(--surface);
}
.dn-pagination .page-nav i { font-size: 12px; }
.dn-pagination .page-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 38px;
  color: var(--text-faint);
  font-family: var(--ff-ui);
  font-size: 14px;
  letter-spacing: 1px;
  user-select: none;
}
.dn-empty {
  text-align: center; padding: 48px 0;
  color: var(--text-faint);
  font-family: var(--ff-ui); font-size: 16px;
}
.dn-empty i { color: var(--border); margin-bottom: 12px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1050px) {
  .vids-grid { grid-template-columns: repeat(3,1fr); }
  .main-grid { grid-template-columns: 1fr 290px; }
  .article-layout { grid-template-columns: 1fr 290px; }
  .cat-page-layout { grid-template-columns: 1fr 290px; }
}
@media (max-width: 900px) {
  .hero-grid { gap: 14px; }
  .hsc { aspect-ratio: 16 / 9; }
  .hsc-title { font-size: 16px; }
  .hero-grid > .hsc:first-child .hsc-title { font-size: 17px; }
  .main-grid, .article-layout, .cat-page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  .hdr-nav .dn-container { flex-wrap: wrap; }
  .hdr-nav .nav-links { display: none; flex-direction: column; width: 100%; }
  .hdr-nav .nav-links.open { display: flex; }
  .nav-toggler { display: flex; }
  .hdr-nav .nav-links > li { width: 100%; }
  .hdr-nav .nav-links > li > a { border-bottom: 1px solid rgba(255,255,255,.08); }
  .hdr-nav .nav-dropdown { position: static; box-shadow: none; border-radius: 0; }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-search-slot { display: none; }
}
@media (max-width: 620px) {
  .hdr-date { display: none; }
  .vids-grid { grid-template-columns: repeat(2,1fr); }
  .cat-panel.active { grid-template-columns: repeat(2,1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-news-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .cat-panel.active { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   E-PAPER INDEX PAGE
══════════════════════════════════════════════════════════ */
.ep-hero {
  background: linear-gradient(130deg, var(--navy) 0%, #152338 55%, #0d1a2a 100%);
  padding: 36px 0 32px; position: relative; overflow: hidden;
}
.ep-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 100% at 110% 50%, rgba(184,134,11,.12) 0%, transparent 65%);
  pointer-events:none;
}
.ep-hero-inner {
  display: flex; align-items: center; gap: 22px; position: relative; flex-wrap: wrap;
}
.ep-hero-icon {
  width: 64px; height: 64px; border-radius: 14px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(184,134,11,.45);
}
.ep-hero-text { flex: 1; min-width: 200px; }
.ep-hero-label {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 5px;
}
.ep-hero-name {
  font-family: var(--ff-h); font-size: 34px; font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 8px;
}
.ep-hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ep-hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 4px 13px;
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.8);
}
.ep-hero-pill i { font-size: 11px; color: var(--gold); }
.ep-hero-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 24px;
  font-family: var(--ff-ui); font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; transition: all var(--ease); text-decoration: none;
}
.btn-hero-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 14px rgba(207,8,13,.4);
}
.btn-hero-primary:hover { background: #a30009; transform: translateY(-2px); }
.btn-hero-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* Two-column epaper index layout */
.epaper-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px; align-items: start;
  padding: 28px 0 56px;
}

/* In-viewer ad (below PDF canvas, 728×90 slot) */
.in-viewer-ad {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  text-align: center;
}

/* Epaper responsive */
@media (max-width: 1050px) {
  .epaper-page-layout { grid-template-columns: 1fr 290px; }
}
@media (max-width: 900px) {
  .epaper-page-layout { grid-template-columns: 1fr; }
  .ep-hero-actions { display: none; }
  .ep-hero-name { font-size: 26px; }
}

/* ══════════════════════════════════════════════════════════
   CITY PAGE
══════════════════════════════════════════════════════════ */

/* City switcher tab bar */
.city-switcher { background: var(--navy); border-bottom: 3px solid var(--red); }
.city-switcher .dn-container {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.city-switcher .dn-container::-webkit-scrollbar { display: none; }
.cst {
  display: flex; align-items: center; gap: 8px; padding: 11px 20px;
  font-family: var(--ff-ui); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.55); text-decoration: none;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  white-space: nowrap; transition: all var(--ease);
}
.cst:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.05); }
.cst.on  { color: #fff; border-bottom-color: var(--red); background: rgba(255,255,255,.06); }
.cst-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center;
  justify-content: center; font-size: 12px; flex-shrink: 0;
  transition: background var(--ease);
}
.cst.on .cst-icon { background: var(--red); }

/* City hero banner */
.city-hero { position: relative; overflow: hidden; height: 220px; }
.city-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, var(--navy) 0%, #152338 60%, #0d1a2a 100%);
  background-size: cover; background-position: center;
}
.city-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,44,69,.95) 0%, rgba(26,44,69,.7) 50%, rgba(26,44,69,.3) 100%);
}
.city-hero-content {
  position: relative; z-index: 1; height: 100%; display: flex; align-items: center;
}
.city-hero-inner { display: flex; align-items: center; gap: 20px; }
.city-icon-box {
  width: 60px; height: 60px; border-radius: 14px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(207,8,13,.4);
}
.city-label {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 4px;
}
.city-name {
  font-family: var(--ff-h); font-size: 38px; font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 10px;
}
.city-hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.city-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px; padding: 4px 13px;
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.85);
}
.city-pill i { font-size: 11px; color: var(--gold); }
.bcrumb-hero {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-ui); font-size: 13px; color: rgba(255,255,255,.45);
}
.bcrumb-hero a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.bcrumb-hero a:hover { color: #fff; }
.bcrumb-hero .sep { font-size: 9px; opacity: .6; }

/* City page two-column layout */
.city-page-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 28px; align-items: start; padding: 28px 0 56px;
}

/* Results bar */
.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.results-info { font-family: var(--ff-ui); font-size: 14px; color: var(--text-muted); }
.results-info strong { color: var(--text); }

/* Rich news card grid */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.news-card {
  background: var(--surface); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--ease); display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.nc-img-wrap { position: relative; overflow: hidden; }
.nc-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform 0.4s ease; display: block;
}
.news-card:hover .nc-img { transform: scale(1.04); }
.nc-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 100%);
  pointer-events: none;
}
.nc-cat { position: absolute; top: 10px; left: 10px; }
.nc-body {
  padding: 14px 16px 17px; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.nc-title {
  font-family: var(--ff-h); font-size: 15.5px; font-weight: 700;
  line-height: 1.42; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--ease);
}
.news-card:hover .nc-title { color: var(--red); }
.nc-excerpt {
  font-family: var(--ff-b); font-size: 13px; color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nc-meta {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border-lt); flex-wrap: wrap;
}
/* Specificity > .news-card img (in style.css) which forces 100% width on every
   img inside a .news-card. Scope the avatar so it stays a 22px round chip. */
.nc-meta .nc-avatar,
.news-card .nc-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   POLICY PAGES (Privacy · Terms · Cookies)
   Single-column reading layout matching the new design system.
══════════════════════════════════════════════════════════ */
.policy-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 40px 0 36px;
  overflow: hidden;
}
.policy-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(207,8,13,.22), transparent 60%);
  pointer-events: none;
}
.policy-hero .dn-container {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 18px;
}
.policy-hero-icon {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(207,8,13,.45);
}
.policy-hero-text { flex: 1; min-width: 0; }
.policy-hero-label {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 5px;
}
.policy-hero-title {
  font-family: var(--ff-h); font-size: 32px; font-weight: 700;
  color: #fff; line-height: 1.2; margin: 0 0 8px;
}
.policy-hero-meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  font-family: var(--ff-ui); font-size: 12.5px;
  color: rgba(255,255,255,.62);
}
.policy-hero-meta i { font-size: 11px; }
.policy-hero-meta .sep { opacity: .35; }
.policy-hero-meta a {
  color: rgba(255,255,255,.62);
  transition: color var(--ease);
}
.policy-hero-meta a:hover { color: #fff; }

.policy-area { padding: 32px 0 56px; }
.policy-card {
  max-width: 880px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 42px;
  box-shadow: var(--shadow-sm);
}

.policy-card .policy-intro {
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
}

.policy-card h2 {
  font-family: var(--ff-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 14px;
  padding: 0 0 10px 16px;
  border-bottom: 1px solid var(--border);
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
.policy-card h2::before {
  content: '';
  position: absolute; left: 0; top: 4px; bottom: 14px;
  width: 4px;
  background: var(--red);
  border-radius: 2px;
}

.policy-card h3 {
  font-family: var(--ff-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 10px;
}

.policy-card p {
  font-family: var(--ff-b);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
  margin: 0 0 14px;
}
.policy-card ul,
.policy-card ol {
  margin: 0 0 16px 22px;
  padding: 0;
}
.policy-card li {
  font-family: var(--ff-b);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 6px;
}
.policy-card li::marker { color: var(--red); }
.policy-card strong { color: var(--text); }
.policy-card a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--ease);
}
.policy-card a:hover { opacity: .8; }
.policy-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

@media (max-width: 720px) {
  .policy-hero { padding: 28px 0 26px; }
  .policy-hero .dn-container { gap: 14px; }
  .policy-hero-icon { width: 48px; height: 48px; font-size: 18px; border-radius: 10px; }
  .policy-hero-title { font-size: 24px; }
  .policy-card { padding: 24px 22px; }
  .policy-card h2 { font-size: 19px; }
}

/* ══════════════════════════════════════════════════════════
   OUR TEAM PAGE
══════════════════════════════════════════════════════════ */
.team-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 40px 0 36px;
  overflow: hidden;
}
.team-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(207,8,13,.22), transparent 60%);
  pointer-events: none;
}
.team-hero .dn-container {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 18px;
}
.team-hero-icon {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(207,8,13,.45);
}
.team-hero-text { flex: 1; min-width: 0; }
.team-hero-label {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 5px;
}
.team-hero-title {
  font-family: var(--ff-h); font-size: 32px; font-weight: 700;
  color: #fff; line-height: 1.2; margin: 0 0 8px;
}
.team-hero-sub {
  font-family: var(--ff-ui); font-size: 13px;
  color: rgba(255,255,255,.62);
  margin: 0;
}

/* Team grid */
.team-page { padding: 40px 0 60px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 32px 24px 28px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--red);
}
.team-card-photo-wrap {
  display: inline-block;
  margin-bottom: 18px;
}
.team-card-photo {
  width: 104px; height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  display: block;
  transition: border-color var(--ease);
}
.team-card:hover .team-card-photo {
  border-color: var(--red);
}
.team-card-name {
  margin: 0 0 4px;
  font-family: var(--ff-ui);
  font-size: 19px; font-weight: 700;
  letter-spacing: .3px;
}
.team-card-name a {
  color: var(--text);
  text-decoration: none;
}
.team-card-name a:hover { color: var(--red); }

.team-card-role {
  font-family: var(--ff-ui);
  font-size: 12px; font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.team-card-bio {
  font-family: var(--ff-b);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .team-hero { padding: 28px 0 26px; }
  .team-hero .dn-container { gap: 14px; }
  .team-hero-icon { width: 48px; height: 48px; font-size: 18px; border-radius: 10px; }
  .team-hero-title { font-size: 24px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   SEARCH PAGE
══════════════════════════════════════════════════════════ */

/* Hero */
.search-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 44px 0 40px;
  position: relative; overflow: hidden;
}
.search-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(207,8,13,.16), transparent 55%);
  pointer-events: none;
}
.search-hero-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto; text-align: center;
}
.search-hero-label {
  font-family: var(--ff-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.search-hero-label i { color: var(--red); font-size: 11px; }

.search-hero-input-wrap {
  display: flex; align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.32);
}
.sh-input-icon {
  color: var(--text-faint); font-size: 15px; flex-shrink: 0; margin-right: 10px;
}
.search-hero-input-wrap input {
  flex: 1; border: none; outline: none;
  font-family: var(--ff-b); font-size: 16px;
  color: var(--text); background: transparent;
  padding: 10px 0;
}
.search-hero-input-wrap input::placeholder { color: var(--text-faint); }
.search-hero-input-wrap button {
  background: var(--red); border: none; cursor: pointer;
  padding: 12px 26px; border-radius: 50px;
  color: #fff; font-family: var(--ff-ui); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--ease); white-space: nowrap; flex-shrink: 0;
}
.search-hero-input-wrap button:hover { background: var(--red-dark); }
.search-hero-result-label {
  margin-top: 16px;
  font-family: var(--ff-ui); font-size: 14px;
  color: rgba(255,255,255,.55);
}
.search-hero-result-label strong { color: #fff; }

/* Filter bar */
.search-filter-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.search-filter-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.sfr-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.sfr-pill {
  padding: 7px 14px; border-radius: 20px;
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-muted);
  cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--ease); line-height: 1;
}
.sfr-pill input[type="radio"] { display: none; }
.sfr-pill i { font-size: 11px; }
.sfr-pill:hover { border-color: var(--red); color: var(--red); }
.sfr-pill.active { background: var(--red); border-color: var(--red); color: #fff; }

.sfr-right {
  display: flex; align-items: center; gap: 8px; margin-left: auto; flex-wrap: wrap;
}
.sfr-select {
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: var(--text); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 7px 12px; background: var(--surface);
  cursor: pointer; outline: none; transition: border-color var(--ease); line-height: 1;
}
.sfr-select:focus { border-color: var(--red); }
.sfr-clear {
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: var(--text-muted); display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 12px; border-radius: 8px; border: 1.5px solid var(--border);
  transition: all var(--ease); white-space: nowrap; line-height: 1;
}
.sfr-clear:hover { border-color: var(--red); color: var(--red); }

/* Body + layout */
.search-body { padding: 28px 0 56px; }
.search-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 30px; align-items: start;
}
.search-results-col { min-width: 0; }

/* Result card */
.sr-card {
  display: flex; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-lt);
  text-decoration: none; color: inherit;
  transition: background var(--ease);
}
.sr-card:first-child { padding-top: 4px; }
.sr-card:last-child { border-bottom: none; }
.sr-card:hover .sr-title { color: var(--red); }
.sr-card:hover .sr-thumb img { transform: scale(1.05); }

.sr-thumb {
  flex-shrink: 0; width: 150px; height: 100px;
  border-radius: var(--r); overflow: hidden; background: var(--border);
}
.sr-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .42s ease;
}
.sr-cat { margin-bottom: 8px; }
.sr-body { flex: 1; min-width: 0; }
.sr-title {
  font-family: var(--ff-h); font-size: 17px; font-weight: 700;
  line-height: 1.4; color: var(--text); margin: 0 0 7px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--ease);
}
.sr-title mark, .sr-desc mark {
  background: #fff3cd; padding: 0 2px; border-radius: 2px; font-style: normal;
}
.sr-desc {
  font-family: var(--ff-b); font-size: 14px; color: var(--text-muted);
  line-height: 1.55; margin: 0 0 10px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sr-meta {
  font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint);
  display: flex; align-items: center; gap: 14px;
}
.sr-meta i { font-size: 10px; }

/* Empty state */
.search-empty-state {
  text-align: center; padding: 72px 24px;
}
.ses-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px; color: var(--text-faint);
}
.ses-title {
  font-family: var(--ff-h); font-size: 22px; font-weight: 700;
  color: var(--text); margin: 0 0 8px;
}
.ses-sub {
  font-family: var(--ff-b); font-size: 14px; color: var(--text-muted); margin: 0 0 18px;
}
.ses-reset-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 22px;
  background: var(--surface); border: 1.5px solid var(--border);
  font-family: var(--ff-ui); font-size: 13px; font-weight: 700;
  color: var(--text); transition: all var(--ease);
}
.ses-reset-btn:hover { border-color: var(--red); color: var(--red); }

/* Sidebar category links */
.search-sidebar { display: flex; flex-direction: column; gap: 20px; }
.search-sidebar-cat {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid var(--border-lt);
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: var(--text-muted); transition: all var(--ease);
}
.search-sidebar-cat:last-child { border-bottom: none; }
.search-sidebar-cat i { font-size: 9px; color: var(--red); opacity: .5; transition: opacity var(--ease); }
.search-sidebar-cat:hover { color: var(--red); }
.search-sidebar-cat:hover i { opacity: 1; }
.search-sidebar-cat.active { color: var(--red); font-weight: 700; }
.search-sidebar-cat.active i { opacity: 1; }

/* Responsive */
@media (max-width: 1050px) {
  .search-layout { grid-template-columns: 1fr 270px; }
}
@media (max-width: 900px) {
  .search-layout { grid-template-columns: 1fr; }
  .search-sidebar { display: none; }
  .sfr-right { margin-left: 0; }
}
@media (max-width: 620px) {
  .search-hero { padding: 30px 0 28px; }
  .search-hero-input-wrap { padding: 5px 5px 5px 16px; }
  .search-hero-input-wrap input { font-size: 15px; }
  .search-hero-input-wrap button span { display: none; }
  .search-hero-input-wrap button { padding: 12px 18px; }
  .sfr-pills { gap: 4px; }
  .sfr-pill { padding: 5px 10px; font-size: 12px; }
  .sr-thumb { width: 100px; height: 72px; }
  .sr-title { font-size: 15px; }
}

/* ══════════════════════════════════════════════════════════
   VIDEOS LISTING PAGE
══════════════════════════════════════════════════════════ */
.videos-page-grid {
  /* Slightly larger gap + bottom space than the homepage 4-col grid */
  gap: 18px;
  margin-bottom: 28px;
}
.videos-pager {
  display: flex;
  justify-content: center;
  margin: 8px 0 12px;
}
.videos-empty {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 56px 24px;
  text-align: center;
  color: var(--text-muted);
}
.videos-empty i {
  font-size: 44px;
  color: var(--text-faint);
  margin-bottom: 14px;
  display: inline-block;
}
.videos-empty p {
  font-family: var(--ff-b);
  font-size: 15px;
  margin: 0;
}

@media (max-width: 1050px) {
  .videos-page-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .videos-page-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 420px) {
  .videos-page-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   VIDEO DETAIL PAGE
══════════════════════════════════════════════════════════ */
.video-detail-area { padding: 26px 0 56px; }

.video-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-ui); font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.video-breadcrumb a {
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color var(--ease);
}
.video-breadcrumb a:hover { color: var(--red); }
.video-breadcrumb a i { font-size: 11px; }
.video-breadcrumb .sep { opacity: .5; }
.video-breadcrumb .current {
  color: var(--text);
  font-weight: 600;
  max-width: 50ch;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.video-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.video-detail-main { min-width: 0; }

.video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-player-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-title {
  font-family: var(--ff-h);
  font-size: 22px; font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin: 18px 0 10px;
}

.video-meta-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-family: var(--ff-ui);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.video-meta-row i { font-size: 11px; color: var(--red); opacity: .85; }

.video-share-label {
  font-family: var(--ff-ui);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* Sidebar */
.video-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 18px 14px;
}
.video-sidebar-title {
  font-family: var(--ff-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.video-related-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-related-item {
  display: flex;
  gap: 12px;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--ease);
  text-decoration: none;
  color: inherit;
}
.video-related-item:hover { background: var(--surface-2); }

.video-related-thumb {
  position: relative;
  flex: 0 0 150px;
  height: 85px;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
}
.video-related-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}
.video-related-thumb .vr-dur {
  position: absolute;
  bottom: 5px; right: 5px;
  background: rgba(0, 0, 0, .82);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 3px;
  line-height: 1.4;
}

.video-related-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  gap: 6px;
  padding-right: 4px;
}
.vr-title {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--ease);
}
.video-related-item:hover .vr-title { color: var(--red); }
.vr-date {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--text-faint);
}
.video-related-empty {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 16px 0;
  margin: 0;
}

@media (max-width: 991px) {
  .video-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .video-related-thumb { flex: 0 0 120px; height: 68px; }
  .vr-title { font-size: 13px; }
}
.nc-av-init {
  width: 22px; height: 22px; border-radius: 50%; background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui); font-size: 9px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.nc-author { font-family: var(--ff-ui); font-size: 12px; font-weight: 600; color: var(--text-muted); }
.nc-date   { font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint); display: flex; align-items: center; gap: 4px; }
.nc-date i { font-size: 10px; }
.nc-views  { font-family: var(--ff-ui); font-size: 12px; color: var(--text-faint); display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nc-views i { font-size: 10px; color: var(--red); opacity: .65; }

/* Featured first card — spans full row, horizontal layout */
.news-card.featured { grid-column: 1 / -1; flex-direction: row; }
.news-card.featured .nc-img-wrap { width: 52%; flex-shrink: 0; }
.news-card.featured .nc-img { aspect-ratio: unset; height: 100%; min-height: 230px; }
.news-card.featured .nc-body { padding: 22px; justify-content: center; }
.news-card.featured .nc-title { font-size: 20px; -webkit-line-clamp: 4; }

/* Load-more button */
.load-more-wrap { text-align: center; margin-top: 32px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px; border-radius: 24px;
  font-family: var(--ff-ui); font-size: 15px; font-weight: 700;
  background: var(--surface); color: var(--navy);
  border: 2px solid var(--border); cursor: pointer;
  transition: all var(--ease);
}
.btn-load-more:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-load-more:disabled { opacity: .6; cursor: not-allowed; }

/* City page responsive */
@media (max-width: 1050px) {
  .city-page-layout { grid-template-columns: 1fr 290px; }
}
@media (max-width: 900px) {
  .city-page-layout { grid-template-columns: 1fr; }
  .city-name { font-size: 28px; }
}
@media (max-width: 700px) {
  .news-card.featured { flex-direction: column; }
  .news-card.featured .nc-img-wrap { width: 100%; }
  .news-card.featured .nc-img { min-height: 0; height: auto; aspect-ratio: 16/10; }
  .city-hero { height: auto; padding: 28px 0; }
  .city-name { font-size: 24px; }
}
@media (max-width: 620px) {
  .news-grid { grid-template-columns: 1fr; }
}
