html:not(.is-ready) { overflow: hidden; }

#umc-boot {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  background: var(--cream, #f9f9f6);
  transition: opacity .35s var(--ease, ease), visibility .35s;
}
html.is-ready #umc-boot {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.umc-boot-mark {
  position: relative;
  width: 112px; height: 112px;
  display: grid; place-items: center;
}
.umc-boot-mark img {
  width: 64px; height: 64px; object-fit: contain;
  display: block;
}
.umc-boot-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(21, 21, 25, .12);
  border-top-color: #111114;
  animation: umc-spin .7s linear infinite;
}
@keyframes umc-spin { to { transform: rotate(360deg); } }

#site-header { min-height: 78px; }
#site-footer { min-height: 1px; }
@media (max-width: 860px) {
  #site-header { min-height: 62px; }
}

:root {
  --cream: #f9f9f6;
  --cream-2: #ffffff;
  --paper: #ffffff;
  --ink: #151519;
  --ink-2: #3a3a42;
  --muted: #6b6b75;
  --line: rgba(21, 21, 25, 0.1);
  --gold: #f5d000;
  --gold-deep: #e0bd00;
  --gold-ink: #111114;
  --red: #e11d2e;
  --flag-y: #fcdc04;
  --flag-r: #d90000;
  --olive: #1a1a1f;
  --footer: #0e0e12;
  --shadow: 0 18px 40px rgba(21, 21, 25, 0.08);
  --radius: 14px;
  --max: 1520px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, Cambria, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  animation: pageIn .55s var(--ease);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 500; }
p { margin: 0; }
.lede, blockquote { font-family: var(--serif); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip {
  position: absolute; left: -999px; top: 8px;
  background: var(--gold); color: var(--ink); padding: 8px 14px; z-index: 100;
}
.skip:focus { left: 8px; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.flag-stripe {
  height: 4px;
  background: linear-gradient(90deg, #000 0 33.3%, var(--flag-y) 33.3% 66.6%, var(--flag-r) 66.6%);
}

/* Utility bar */
.util {
  background: #111114;
  color: #f4f4f0;
  font-size: 12px;
  letter-spacing: .04em;
  overflow: hidden;
}
.util-inner {
  display: flex; align-items: center; gap: 18px;
  min-height: 36px; justify-content: space-between;
}
.util-left, .util-right { display: flex; align-items: center; gap: 14px; }
.util-left { flex: 1; min-width: 0; }
.util a:hover { color: var(--gold); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff3b3b; box-shadow: 0 0 0 0 rgba(255,59,59,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(255,59,59,0); }
}
.ticker { overflow: hidden; flex: 1; min-width: 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track {
  display: flex; gap: 36px; white-space: nowrap; width: max-content;
  animation: marquee 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker b { color: var(--gold); margin-right: 8px; }
.ticker-track a { color: inherit; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249, 249, 246, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: min-height .25s var(--ease), box-shadow .25s ease;
}
.header.compact { box-shadow: 0 8px 24px rgba(22,19,16,.08); }
.header.compact .header-inner { min-height: 64px; }
.header-inner { position: relative; }
.header-inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 78px;
}
.header-inner { min-width: 0; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 168px; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong {
  display: block; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1.15;
}
.brand small { display: block; color: var(--muted); font-size: 11px; }

.nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav a {
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  text-transform: none; color: var(--ink-2); padding: 8px 0;
  position: relative; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after,
.nav a:hover::after,
.nav .drop:hover > .drop-trigger::after,
.nav .drop.open > .drop-trigger::after,
.nav .drop:focus-within > .drop-trigger::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
}
.nav .drop, .lang-drop { position: relative; }
.drop-trigger {
  display: inline-flex; align-items: center; gap: 5px;
}
.drop-caret {
  flex: 0 0 auto; opacity: .5; transition: transform .15s ease, opacity .15s ease;
}
.drop:hover .drop-caret,
.drop:focus-within .drop-caret,
.drop.open .drop-caret { transform: rotate(180deg); opacity: 1; }
.drop-menu {
  display: none; position: absolute; top: calc(100% - 2px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  min-width: 220px; padding: 8px; box-shadow: var(--shadow); z-index: 30;
}
.lang-drop .drop-menu { right: 0; left: auto; min-width: 168px; }
.drop:hover .drop-menu,
.drop:focus-within .drop-menu,
.drop.open .drop-menu { display: block; }
.drop-menu a, .drop-menu button {
  display: block; width: 100%; text-align: left; border: 0; background: transparent;
  padding: 10px 12px; text-transform: none; font-weight: 600; font-size: 13px;
  color: var(--ink-2); border-radius: 8px; cursor: pointer;
}
.nav .drop-menu a::after { display: none; }
.drop-menu a:hover, .drop-menu button:hover,
.drop-menu a.active, .drop-menu button.active {
  background: #f3f3ef; color: var(--ink);
}
.lang-drop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); background: var(--paper);
  border-radius: 999px; padding: 7px 12px 7px 10px;
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
  color: var(--ink);
}
.lang-drop-btn:hover { background: #fff; border-color: var(--ink); }
.header-tools { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.header-tools .lang-drop { flex: 0 0 auto; }
.icon-btn {
  width: 40px; height: 40px; border: 0; border-radius: 999px;
  background: transparent; display: grid; place-items: center;
}
.icon-btn:hover { background: rgba(0,0,0,.06); }
.lang {
  border: 1px solid var(--line); background: var(--paper);
  border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 700;
}
.lang-switch { display: none; }
.text-link {
  background: none; border: 0; padding: 0; color: inherit; font: inherit;
  letter-spacing: inherit; cursor: pointer;
}
.text-link:hover { color: var(--gold); }
.cta-mini {
  background: #111114; color: #fff; border: 0;
  border-radius: 999px; padding: 10px 16px; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.cta-mini { transition: transform .2s var(--ease), filter .2s ease; }
.cta-mini:hover { filter: brightness(.95); transform: translateY(-1px); }
.burger { display: none; }
.burger .ico-close { display: none; }
body.nav-open .burger .ico-menu { display: none; }
body.nav-open .burger .ico-close { display: block; }
body.nav-open .burger { background: rgba(0,0,0,.08); }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; background: rgba(14,12,9,.55);
  display: none; z-index: 80; align-items: flex-start; justify-content: center;
  padding: 12vh 20px 20px;
}
.search-overlay.open { display: flex; }
.search-box {
  width: min(680px, 100%); background: var(--paper); border-radius: 18px;
  padding: 18px; box-shadow: var(--shadow);
}
.search-box input {
  width: 100%; border: 0; background: var(--cream); border-radius: 12px;
  padding: 16px 18px; font-size: 18px; outline: none;
}
.search-hits { margin-top: 12px; }
.search-hits a {
  display: block; padding: 10px 8px; border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.search-hits a span { display: block; color: var(--muted); font-size: 13px; font-weight: 500; }

/* Hero */
.hero { padding: 28px 0 10px; }
.hero-grid {
  display: grid; grid-template-columns: 1.55fr .95fr; gap: 18px;
}
.story-card {
  position: relative; overflow: hidden; border-radius: 16px;
  background: #111; min-height: 460px; color: #fff;
  display: block;
}
.story-card img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transform: scale(1.02); transition: transform .6s ease;
}
.story-card:hover img { transform: scale(1.07); }
.mosaic-card, .news-card, .min-card, .person, .side-story, .explore-card, .tool-chip, .video-card, .prog {
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .25s ease;
}
.mosaic-card:hover, .news-card:hover, .min-card:hover, .person:hover, .side-story:hover, .tool-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.mosaic-card img, .photo-story img, .side-story img, .person img, .gallery-grid img {
  transition: transform .8s var(--ease);
}
.mosaic-card:hover img, .photo-story:hover img, .side-story:hover img, .person:hover img, .gallery-grid a:hover img {
  transform: scale(1.06);
}
.story-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.78) 100%);
}
.story-card .meta {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 1;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--gold-ink);
  font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 9px; border-radius: 4px;
}
.story-card h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12; letter-spacing: -.02em; margin-top: 12px;
  max-width: 16ch;
}
.side-stories { display: grid; gap: 18px; }
.side-story {
  display: grid; grid-template-rows: 148px auto; background: var(--paper);
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
}
.side-story img { width: 100%; height: 148px; object-fit: cover; }
.side-story .txt { padding: 12px 14px 16px; }
.side-story .row { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.side-story h3 { font-size: 16px; line-height: 1.3; margin-top: 6px; }

/* Quick tools */
.tools { padding: 8px 0 12px; }
.tools-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.tool-chip {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 650; min-height: 78px;
}
.tool-chip i { color: var(--muted); font-style: normal; }
.tool-chip:hover { background: var(--gold); border-color: var(--gold); color: #111; }
.tool-chip:hover small, .tool-chip:hover i { color: #111; }
.tool-chip small { color: var(--muted); display: block; font-weight: 500; font-size: 12px; margin-top: 2px; }

/* Section heads */
.section { padding: 42px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 16px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: var(--display); font-size: clamp(28px, 3vw, 40px);
  font-weight: 500; letter-spacing: -.02em;
}
body[data-page="home"] .section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 44px);
  letter-spacing: -.03em;
}
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--gold-ink); border: 0; border-radius: 999px;
  padding: 12px 20px; font-size: 13px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
}
.btn-gold:hover { filter: brightness(.96); }

/* Ministries mosaic */
.mosaic {
  display: grid; grid-template-columns: .7fr 1.3fr .85fr; gap: 16px;
}
.mosaic-card, .list-card {
  background: var(--paper); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
}
.mosaic-card.feature { display: flex; flex-direction: column; }
.mosaic-card img { width: 100%; height: 168px; object-fit: cover; }
.mosaic-photo { position: relative; }
.mosaic-photo img { height: 280px; }
.mosaic-tags { position: absolute; left: 14px; bottom: 14px; }
.mosaic-card.feature img { height: 280px; }
.mosaic-card .txt, .list-card { padding: 16px 18px 20px; }
.tag {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 7px; border-radius: 4px; margin-right: 4px;
}
.tag.red { background: var(--red); color: #fff; }
.tag.gold { background: var(--gold); color: var(--gold-ink); }
.tag.ink { background: var(--ink); color: #fff; }
.mosaic-card h3, .list-card h3 { font-size: 20px; line-height: 1.28; margin: 10px 0 8px; letter-spacing: -.02em; }
.mosaic-card.feature h3 { font-size: 26px; }
.muted { color: var(--muted); font-size: 13px; }
.list-card + .list-card { border-top: 0; border-radius: 0; }
.list-stack { display: flex; flex-direction: column; height: 100%; }
.list-stack .list-card { flex: 1; }
.list-stack .list-card:first-child { border-radius: 14px 14px 0 0; }
.list-stack .list-card:last-child { border-radius: 0 0 14px 14px; }
.list-card { display: grid; grid-template-columns: 92px 1fr; gap: 12px; align-items: start; }
.list-card img { width: 92px; height: 72px; object-fit: cover; border-radius: 8px; }

/* Explore */
.explore {
  margin: 20px 0 10px; position: relative; min-height: 420px;
  color: #fff; overflow: hidden;
}
.explore img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) brightness(.45);
}
.explore .inner { position: relative; z-index: 1; padding: 54px 0 40px; }
.explore h2 {
  font-family: var(--display); font-size: clamp(36px, 5vw, 56px);
  font-weight: 600; margin-bottom: 28px; letter-spacing: -.03em; text-align: center;
}
.explore-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.explore-card {
  background: rgba(10, 9, 6, .72); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 20px 18px 18px; min-height: 188px;
  display: flex; flex-direction: column; backdrop-filter: blur(10px);
}
.explore-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 650; }
.explore-card p { color: rgba(255,255,255,.78); font-size: 13px; flex: 1; line-height: 1.45; }
.explore-card span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-top: 12px; }
.explore-card { transition: transform .2s ease, border-color .2s ease; }
.explore-card:hover { border-color: var(--gold); transform: translateY(-2px); }

/* Filters + news grid */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter {
  border: 1px solid var(--line); background: var(--paper); border-radius: 999px;
  padding: 8px 14px; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
}
a.filter { color: inherit; text-decoration: none; }
.filter.active, .filter:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter.active:nth-child(1) { background: #0A0A0B; }
.filter:nth-child(3).active { background: var(--flag-y); color: #111; border-color: var(--flag-y); }
.filter:nth-child(4).active { background: var(--red); border-color: var(--red); }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.news-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 20px 18px; min-height: 248px; display: flex; flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow); }
.news-card h3 { font-size: 22px; line-height: 1.25; margin: 12px 0 10px; letter-spacing: -.02em; }
.news-card p { color: var(--ink-2); font-size: 14px; flex: 1; }
.news-card .foot { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-top: 14px; }

/* Newsroom */
.newsroom-grid {
  display: grid; grid-template-columns: 1.15fr 1.15fr .9fr; gap: 18px; align-items: start;
}
.photo-story { display: block; }
.photo-story img { width: 100%; height: 260px; object-fit: cover; border-radius: 16px; }
.photo-story .tag { margin-top: 14px; }
.photo-story h3 { font-size: 24px; margin-top: 10px; line-height: 1.25; letter-spacing: -.02em; }
.newsroom-side {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.newsroom-side a {
  display: grid; grid-template-columns: 84px 1fr; gap: 12px; padding: 14px;
  border-bottom: 1px solid var(--line); align-items: start;
}
.newsroom-side a:last-child { border-bottom: 0; }
.newsroom-side img { width: 84px; height: 64px; object-fit: cover; border-radius: 8px; }
.newsroom-side h3 { font-size: 16px; line-height: 1.3; letter-spacing: -.02em; }
.newsroom-side small { display: block; color: var(--muted); margin-top: 6px; font-size: 12px; }
.channels { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.channels a {
  background: var(--gold); color: var(--gold-ink); border-radius: 999px;
  padding: 8px 14px; font-size: 13px; font-weight: 800;
}
.channels a:hover { filter: brightness(.96); }

/* Videos */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.video-card {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 320px; color: #fff; display: block;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.video-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.7));
}
.play {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; color: var(--ink);
}
.play::before {
  content: ""; width: 0; height: 0;
  border-left: 16px solid var(--ink);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.live-badge {
  position: absolute; top: 16px; left: 16px; background: var(--red); color: #fff;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: .1em; padding: 5px 8px; border-radius: 4px;
}
.video-card h3 {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1;
  font-size: 24px; font-family: var(--display); font-weight: 500;
}

/* Programmes */
.progs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.prog {
  background: #0A0A0B;
  color: #f4ead0; border-radius: 16px; min-height: 168px; padding: 18px 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-top: 5px solid var(--flag-y);
}
.prog:nth-child(3n+2) { border-top-color: var(--flag-r); }
.prog:nth-child(3n) { border-top-color: #f4ead0; }
.prog small { font-family: var(--mono); letter-spacing: .14em; text-transform: uppercase; font-size: 11px; color: var(--gold); font-weight: 500; }
.prog h3 { font-size: 18px; letter-spacing: -.02em; }
.prog span { color: rgba(244,234,208,.55); font-size: 12px; }

/* Page hero */
.page-hero { padding: 46px 0 20px; position: relative; }
.page-hero.has-photo { color: #fff; min-height: 280px; display: flex; align-items: flex-end; padding: 72px 0 36px; }
.page-hero.has-photo .kicker-off, .page-hero.has-photo .lede { color: rgba(255,255,255,.86); }
.page-hero-photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #111; }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.25) 0%, rgba(10,10,11,.72) 100%);
}
.page-hero.has-photo .wrap { position: relative; z-index: 1; }
.crumb { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.crumb a:hover { color: var(--ink); }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(36px, 5vw, 58px);
  font-weight: 500; letter-spacing: -.03em; line-height: 1.05; max-width: 16ch;
}
.lede { font-size: 18px; color: var(--ink-2); max-width: 62ch; margin-top: 12px; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px;
}
.stat {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
}
.stat b { display: block; font-family: var(--display); font-size: 32px; font-weight: 500; }
.stat span { color: var(--muted); font-size: 13px; }

.split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start;
}
.prose { font-size: 16.5px; color: var(--ink-2); font-family: var(--serif); }
.prose p + p { margin-top: 14px; }
.prose h2 { font-family: var(--display); color: var(--ink); font-size: 30px; margin: 28px 0 10px; }
.prose ul { padding-left: 18px; list-style: disc; }
.prose li { margin: 6px 0; }

.panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 22px;
}
.panel h3 { font-size: 18px; margin-bottom: 10px; }

/* Team */
.ed {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
.ed img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.ed .txt { padding: 28px 28px 28px 8px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.person {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.person img { width: 100%; height: 190px; object-fit: cover; object-position: top; }
.person .txt { padding: 12px 14px 16px; }
.person h3 { font-size: 15px; }
.person p { color: var(--muted); font-size: 12px; }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-grid a {
  position: relative; overflow: hidden; border-radius: 14px; min-height: 220px; display: block;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-grid.wide a:nth-child(1) { grid-column: span 2; min-height: 320px; }
.gal-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gal-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gal-card a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: #111;
}
.gal-card img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  animation: galIn .45s var(--ease) forwards;
}
@keyframes galIn { to { opacity: 1; } }
.gal-play {
  position: absolute; inset: auto 12px 12px auto;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: #111;
  font-size: 14px;
}
.gal-card figcaption {
  padding: 12px 14px 14px;
  display: grid; gap: 4px;
}
.gal-card figcaption strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}
.gal-card figcaption span { color: var(--muted); font-size: 13px; line-height: 1.4; }
.modal iframe, .modal video { width: min(960px, 92vw); max-height: 80vh; border: 0; border-radius: 12px; background: #000; }
@media (max-width: 1024px) {
  .gal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .gal-grid { grid-template-columns: 1fr; }
}

/* Forms */
form { display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); background: #fff; border-radius: 10px;
  padding: 12px 12px;
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.notice {
  background: #fff6d6; border: 1px solid #e7d27a; border-radius: 12px; padding: 14px;
  font-size: 14px;
}
.steps { display: grid; gap: 12px; }
.step {
  display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start;
}
.num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; font-weight: 800;
}

/* Ministries directory */
.min-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.min-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 16px;
  min-height: 150px;
}
.min-card:hover { border-color: var(--flag-y); }
.min-card small { color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-size: 11px; font-weight: 800; }
.min-card h3 { font-size: 17px; margin: 8px 0 6px; }

/* Article */
.article { display: grid; grid-template-columns: minmax(0, 740px) 280px; gap: 40px; }
.article-hero {
  overflow: hidden; border-radius: 16px; background: #111;
  aspect-ratio: 16 / 9; max-height: 420px;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.byline { color: var(--muted); font-size: 13px; margin: 14px 0 22px; }
.share { display: flex; gap: 8px; margin: 22px 0; }
.share a {
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 700;
}

/* Footer — Figma UMC proto */
.footer {
  position: relative; overflow: hidden;
  background: #0b0b0d; color: rgba(255,255,255,.86);
  margin-top: 0; padding: 56px 0 0;
}
.foot-watermark {
  position: absolute; right: -4%; bottom: -18%;
  width: min(620px, 52vw); opacity: .07; pointer-events: none;
  mix-blend-mode: luminosity;
}
.footer a { color: inherit; }
.footer a:hover { color: var(--gold); }
.foot-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.35fr .85fr .95fr 1.15fr;
  gap: 40px 32px; padding-bottom: 48px;
}
.foot-brand { display: flex; gap: 14px; align-items: flex-start; }
.foot-brand img { width: 56px; height: 56px; object-fit: contain; }
.foot-brand strong {
  display: block; font-family: var(--sans); font-size: 22px; font-weight: 700;
  letter-spacing: -.02em; color: #fff; text-transform: none; line-height: 1.15;
}
.foot-brand small {
  display: block; color: rgba(255,255,255,.55); font-size: 13px; font-weight: 400;
  letter-spacing: 0; text-transform: none; line-height: 1.35;
}
.foot-voice {
  margin: 16px 0 0; max-width: 36ch; font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,.62);
}
.social { display: flex; gap: 18px; margin-top: 22px; align-items: center; }
.social a {
  width: auto; height: auto; border: 0; border-radius: 0; background: none;
  color: #fff; display: grid; place-items: center; padding: 2px;
}
.social svg { display: block; }
.social a:hover { color: var(--gold); }
.footer h4 {
  color: var(--gold); letter-spacing: .14em; text-transform: uppercase;
  font-size: 12px; font-weight: 700; margin-bottom: 18px; font-family: var(--sans);
}
.footer li { margin: 0 0 10px; font-size: 15px; color: rgba(255,255,255,.82); }
.footer li a { color: rgba(255,255,255,.82); }
.foot-help li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  margin-bottom: 12px;
}
.foot-help span { color: rgba(255,255,255,.7); }
.foot-help b, .foot-help b a {
  color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .01em; white-space: nowrap;
}
.foot-legal { position: relative; z-index: 1; }
.legal {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 0; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: rgba(255,255,255,.5); font-size: 12px;
}
.legal-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.legal-pipe {
  display: block; width: 1px; height: 12px; background: rgba(255,255,255,.22);
}

/* Lightbox / video modal */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.82); display: none;
  z-index: 90; align-items: center; justify-content: center; padding: 72px 24px 24px;
}
.modal.open { display: flex; }
#modalBody { max-width: 92vw; max-height: 82vh; }
.modal img, .modal video {
  max-width: 92vw; max-height: 82vh; width: auto; height: auto;
  object-fit: contain; border-radius: 12px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; background: #fff; border: 0;
  width: 40px; height: 40px; border-radius: 50%; font-size: 20px;
}

.toast {
  position: fixed; bottom: 20px; right: 20px; background: var(--ink); color: #fff;
  padding: 12px 16px; border-radius: 10px; display: none; z-index: 100;
}
.toast.show { display: block; animation: toastIn .35s var(--ease); }
body[data-page="radio"] .toast { bottom: 96px; left: 16px; right: 16px; }
body[data-page="radio"] .page-hero h1 { max-width: 14ch; }
@keyframes toastIn { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Hero slideshow */
.hero-copy {
  position: absolute; left: max(28px, calc((100% - var(--max)) / 2));
  right: 20px; top: 44%; transform: translateY(-50%);
  z-index: 2; max-width: 900px; color: #fff; pointer-events: none;
}
.hero-slide .slide .hero-copy { position: absolute; z-index: 2; }
.hero-copy .hero-actions { pointer-events: auto; }
.hero-copy .eyebrow {
  font-family: var(--mono);
  letter-spacing: .18em; text-transform: uppercase; font-size: 12px;
  font-weight: 500; opacity: .9; margin-bottom: 18px;
}
.hero-copy h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(44px, 7vw, 92px); line-height: .92;
  letter-spacing: -.045em; max-width: 13ch;
}
.hero-copy .sub {
  margin-top: 18px; letter-spacing: .14em; text-transform: uppercase;
  font-size: 12px; font-weight: 500; opacity: .88;
  font-family: var(--mono);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.55); color: #fff; background: transparent;
  border-radius: 999px; padding: 12px 20px; font-size: 13px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.svc-row {
  position: absolute; left: max(28px, calc((100% - var(--max)) / 2));
  right: max(160px, calc((100% - var(--max)) / 2 + 80px));
  bottom: 28px; z-index: 3; display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-row a {
  background: rgba(10,10,11,.45); color: #fff; border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; padding: 10px 16px; font-size: 13px; backdrop-filter: blur(10px);
}
.svc-row a:hover { background: var(--flag-y); color: #111; border-color: var(--flag-y); }

.hero-slide {
  position: relative; height: min(88vh, 820px); min-height: 560px;
  overflow: hidden; background: #0a0a0b; color: #fff;
  margin: 0; user-select: none;
}
.slide-flagrail {
  position: absolute; left: 0; top: 0; bottom: 0; width: 8px; z-index: 4;
  display: flex; flex-direction: column;
}
.slide-flagrail span { flex: 1; }
.slide-flagrail span:nth-child(1) { background: #0A0A0B; }
.slide-flagrail span:nth-child(2) { background: var(--flag-y); }
.slide-flagrail span:nth-child(3) { background: var(--flag-r); }
.hero-slide .slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transform: scale(1.06);
  transition: opacity .9s var(--ease), transform 1.2s var(--ease);
}
.hero-slide .slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; transform: scale(1); }
.hero-slide .slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transform: scale(1.12);
}
.hero-slide .slide.is-active img { animation: ken 8s var(--ease) forwards; }
@keyframes ken { from { transform: scale(1.16) translateY(12px); } to { transform: scale(1) translateY(0); } }
.hero-slide .shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.72) 0%, rgba(10,10,11,.42) 42%, rgba(10,10,11,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.55) 100%);
}
.hero-slide .meta {
  position: absolute; left: max(28px, calc((100% - var(--max)) / 2));
  right: 20px; bottom: 88px; z-index: 2; max-width: 760px;
}
.hero-slide h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(36px, 5.8vw, 72px); line-height: .98;
  letter-spacing: -.04em; margin-top: 14px; max-width: 16ch;
  text-shadow: 0 16px 48px rgba(0,0,0,.55);
}
.hero-slide a.slide:nth-of-type(1) .kicker { background: var(--flag-y); color: #111; }
.hero-slide a.slide:nth-of-type(2) .kicker { background: var(--red); color: #fff; }
.hero-slide a.slide:nth-of-type(3) .kicker { background: #0A0A0B; color: var(--flag-y); }
.hero-slide a.slide:nth-of-type(4) .kicker { background: var(--flag-y); color: #111; }
.hero-slide a.slide:nth-of-type(5) .kicker { background: var(--red); color: #fff; }
.slide-live {
  position: absolute; top: 22px; right: 22px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,11,.72); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px; backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
}
.slide-live i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(217,0,0,.7); animation: pulse 1.6s infinite;
}
.slide-go {
  display: inline-flex; margin-top: 18px;
  font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--flag-y);
}
.slide-btn {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: var(--flag-y); color: #111;
  display: grid; place-items: center; font-size: 24px; line-height: 1;
  transition: transform .2s var(--ease), background .2s ease, color .2s;
}
.slide-btn:hover { transform: translateY(-50%) scale(1.08); background: var(--red); color: #fff; }
.slide-prev { left: 22px; }
.slide-next { right: 22px; }
.slide-index {
  position: absolute; left: max(28px, calc((100% - var(--max)) / 2));
  top: 22px; bottom: auto; z-index: 4;
  font-family: var(--display); font-size: 15px; letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}
.slide-index b { color: var(--flag-y); font-size: 22px; font-weight: 600; }
.hero-slide .slide-btn, .hero-slide .slide-index, .hero-slide .slide-live { display: none; }
.slide-dots {
  position: absolute; left: auto; right: max(28px, calc((100% - var(--max)) / 2));
  bottom: 28px; transform: none;
  z-index: 3; display: flex; gap: 8px;
}
.slide-dots button {
  width: 9px; height: 9px; border-radius: 99px; border: 0;
  background: rgba(255,255,255,.4); padding: 0; transition: width .25s var(--ease), background .2s;
}
.slide-dots button.active { width: 32px; background: var(--flag-y); }
.slide-dots button:nth-child(3n).active { background: var(--red); }
.slide-bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 5px; z-index: 3;
  background: #0A0A0B;
}
.slide-bar i {
  display: block; height: 100%; width: 0; background: var(--flag-y);
  transform-origin: left;
}
@keyframes slideProg { from { width: 0; } to { width: 100%; } }

.film {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  width: min(var(--max), calc(100% - 40px)); margin: 20px auto 8px; position: relative; z-index: 4;
}
.film a {
  position: relative;
  background: var(--paper); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr;
  min-height: 92px; box-shadow: var(--shadow);
}
.film a::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
}
.film a:nth-child(1)::after { background: #0A0A0B; }
.film a:nth-child(2)::after { background: var(--flag-y); }
.film a:nth-child(3)::after { background: var(--flag-r); }
.film img { width: 110px; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.film a:hover img { transform: scale(1.08); }
.film .txt { padding: 12px 14px; }
.film small { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.film h3 { font-size: 15px; line-height: 1.25; margin-top: 4px; }

.rail { position: relative; }
.rail-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: none;
}
.rail-track::-webkit-scrollbar { display: none; }
.rail-track > * { flex: 0 0 min(78%, 360px); scroll-snap-align: start; }
.rail-nav { display: flex; gap: 8px; }
.rail-nav button {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); font-size: 18px;
}
.rail-nav button:hover { background: var(--ink); color: #fff; }

.lang-hero {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px;
}
.lang-pick {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 18px; text-align: left; cursor: pointer; width: 100%;
  transition: transform .3s var(--ease), border-color .2s, box-shadow .3s;
}
.lang-pick:hover, .lang-pick.active {
  border-color: var(--gold-deep); transform: translateY(-3px); box-shadow: var(--shadow);
}
.lang-pick b { display: block; font-size: 22px; font-family: var(--display); }
.lang-pick span { color: var(--muted); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.pop { animation: pop .35s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.search-overlay { backdrop-filter: blur(8px); animation: none; }
.search-overlay.open { animation: fadeDim .25s ease; }
@keyframes fadeDim { from { opacity: 0; } to { opacity: 1; } }
.search-box { animation: pop .35s var(--ease); }

@media (max-width: 1024px) {
  .lang-hero { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .slide-prev, .slide-next { display: none; }
  .slide-index { display: none; }
  .slide-live { display: none; }
  .slide-dots { left: auto; right: 16px; bottom: 16px; transform: none; }
  .hero-slide .meta { bottom: 56px; left: 16px; right: 16px; }
  .film { margin-top: 16px; grid-template-columns: 1fr; }
}

/* Official inner-page system (not homepage) */
body:not([data-page="home"]) .page-hero h1,
body:not([data-page="home"]) .off-h1,
body:not([data-page="home"]) .article h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 86px);
  letter-spacing: -.045em;
  line-height: .95;
  max-width: 18ch;
}
body:not([data-page="home"]) .page-hero { padding: 56px 0 28px; }
body:not([data-page="home"]) .section-head h2,
body:not([data-page="home"]) .off-h2,
body:not([data-page="home"]) .prose h2,
body:not([data-page="home"]) .ed h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.03em;
}
body:not([data-page="home"]) .lede { font-size: 18px; color: #4a4a52; }
.kicker-off {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 14px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 999px; padding: 12px 18px; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff;
  border-radius: 999px; padding: 12px 18px; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.hero-split {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start;
}
.hero-frame {
  min-height: 280px; border: 1px dashed var(--line); border-radius: 8px;
  background: #f3f3ef; overflow: hidden;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.flag-rule {
  height: 3px;
  background: linear-gradient(90deg, #000 0 33.3%, var(--flag-y) 33.3% 66.6%, var(--flag-r) 66.6%);
}
.stat-board {
  display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: #fff;
}
.stat-board .stat {
  border: 0; border-radius: 0; border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-board .stat:nth-child(2n) { border-right: 0; }
.stat-board .stat b { font-family: var(--display); font-weight: 400; font-size: 42px; }
.stat-board .stat span { letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.mission-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 24px;
}
.mission-card h3 { font-size: 18px; margin-bottom: 8px; }
.dark-hero {
  background: #0a0a0c; color: #fff; padding: 56px 0 40px; position: relative; overflow: hidden;
}
.dark-hero h1 { color: #fff; font-family: var(--display); font-weight: 400;
  font-size: clamp(44px, 7vw, 80px); letter-spacing: -.04em; line-height: .95; max-width: 16ch; }
.dark-hero .lede { color: rgba(255,255,255,.78); }
.dark-hero .kicker-off { color: rgba(255,255,255,.55); }
.player-card {
  margin-top: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 22px; display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: center;
}
.player-art {
  height: 120px; border-radius: 12px; background: #111; display: grid; place-items: center; color: #888; font-size: 36px;
}
.play-gold {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold); border: 0;
  display: grid; place-items: center; font-size: 20px; color: #111;
}
.stream-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.stream-pills button, .stream-pills span {
  border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: transparent; color: #fff;
  padding: 8px 14px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.stream-pills .on { background: var(--gold); color: #111; border-color: var(--gold); }
.elig-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: #fff; }
.elig-grid div { padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: center; }
.elig-grid div:nth-child(2n) { border-right: 0; }
.icon-bubble { width: 36px; height: 36px; border-radius: 10px; background: #f3f3ef; display: grid; place-items: center; font-size: 14px; }
.min-hero { position: relative; }
.min-hero .arms {
  position: absolute; right: 0; top: -20px; width: 420px; opacity: .08; pointer-events: none;
}
body[data-page="ministries"] .wrap,
body[data-page="ministry"] .wrap { width: min(1520px, calc(100% - 48px)); }
.min-bar {
  background: var(--cream);
  padding: 20px 0 8px;
}
.min-dir { padding-top: 8px; }
.min-tools {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px;
  margin: 0;
}
.min-search {
  position: relative; flex: 0 1 28rem; width: 100%; max-width: 28rem; display: block;
}
.min-search-ico {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); display: grid; place-items: center; pointer-events: none;
}
.min-tools input {
  width: 100%; height: 42px; border: 1px solid #e0e0e0; background: #fff;
  border-radius: 12px; padding: 10px 16px 10px 40px; font-size: 14px;
}
.min-tools input:focus {
  outline: none; border-color: rgba(21,21,25,.35);
  box-shadow: 0 0 0 3px rgba(21,21,25,.12);
}
.min-tools .filters {
  margin: 0; flex: 1 1 auto; justify-content: flex-end;
  gap: 6px; flex-wrap: wrap;
}
@media (min-width: 1280px) {
  .min-tools { flex-wrap: nowrap; }
  .min-tools .filters { flex-wrap: nowrap; flex: 0 1 auto; }
}
body[data-page="ministries"] .filter {
  text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 12px;
  padding: 6px 12px; line-height: 1.2; background: transparent;
  color: rgba(21,21,25,.7); border: 1px solid #e0e0e0;
}
body[data-page="ministries"] .filter:hover {
  background: transparent; color: var(--ink); border-color: rgba(21,21,25,.4);
}
body[data-page="ministries"] .filter.active,
body[data-page="ministries"] .filter.active:hover {
  background: #151519; color: #f9f9f6; border-color: #151519;
}
.min-showing {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin: 18px 0 16px;
}
.chat-shell {
  background: #111114; color: #fff; border-radius: 16px; overflow: hidden;
}
.chat-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.chat-bubble { background: #fff; color: var(--ink); border-radius: 14px; padding: 14px 16px; margin: 16px; max-width: 52ch; }
.yellow-stat { color: var(--gold); font-family: var(--display); font-size: 36px; font-weight: 400; }
@media (max-width: 1100px) {
  .today-grid { grid-template-columns: 1fr; }
  .today-lead { min-height: 420px; }
  .up-next { border-left: 0; border-top: 1px solid var(--line); }
  .latest-grid { grid-template-columns: 1fr 1fr; }
  .voice-item { grid-template-columns: 56px 1fr 200px; }
}
@media (max-width: 1024px) {
  .hero-split, .mission-grid, .elig-grid, .player-card { grid-template-columns: 1fr; }
  .min-hero .arms { display: none; }
  .min-tools { flex-direction: column; align-items: stretch; }
  .min-search { max-width: none; flex: none; }
  .min-tools .filters { justify-content: flex-start; }
}

@media (max-width: 1024px) {
  .hero-grid, .mosaic, .newsroom-grid, .explore-grid, .article, .ed, .split { grid-template-columns: 1fr; }
  .newsroom-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid, .min-grid, .team-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .progs { grid-template-columns: 1fr 1fr; }
  .tools-row { grid-template-columns: 1fr 1fr; }
  .stats, .foot-grid { grid-template-columns: 1fr 1fr; }
  .list-card { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-tools .cta-mini, .util-right, .header-tools .lang-drop { display: none; }
  .burger { display: grid; }
  .brand { min-width: 0; gap: 8px; flex: 1; }
  .brand img { width: 38px; height: 38px; }
  .brand strong { font-size: 12px; white-space: nowrap; max-width: 46vw; overflow: hidden; text-overflow: ellipsis; }
  .brand small { display: none; }
  .header-inner { gap: 8px; min-height: 62px; overflow: visible; }
  .header { z-index: 80; backdrop-filter: none; background: #f9f9f6; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; left: 0; right: 0; bottom: 0; width: auto; margin: 0;
    top: var(--nav-top, 102px);
    height: calc(100dvh - var(--nav-top, 102px));
    background: #fff; z-index: 70;
    padding: 6px 0 calc(20px + env(safe-area-inset-bottom));
    overflow: auto; -webkit-overflow-scrolling: touch;
    box-shadow: 0 24px 60px rgba(15,15,18,.18);
    border-top: 1px solid var(--line);
  }
  .nav.open > a,
  .nav.open .drop-trigger {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; min-height: 52px; padding: 14px 20px;
    font-size: 17px; font-weight: 650; color: var(--ink);
    border-bottom: 1px solid var(--line); white-space: nowrap;
  }
  .nav.open a::after,
  .nav.open .drop-trigger::after,
  .nav.open .drop:hover > .drop-trigger::after,
  .nav.open .drop.open > .drop-trigger::after,
  .nav.open .drop:focus-within > .drop-trigger::after { display: none !important; }
  .nav.open > a.active,
  .nav.open .drop-trigger.active { box-shadow: inset 3px 0 0 var(--gold); background: #fafaf7; }
  .nav.open .drop { width: 100%; }
  .nav.open .drop-caret { opacity: .7; }
  .nav.open .drop-menu {
    display: none; position: static; box-shadow: none; border: 0;
    padding: 0 8px 10px 20px; background: #fafaf7; border-radius: 0; min-width: 0;
  }
  .nav.open .drop.open .drop-menu,
  .nav.open .drop:focus-within .drop-menu { display: block; }
  .nav.open .drop-menu a,
  .nav.open .drop-menu button {
    padding: 12px 12px; font-size: 15px; min-height: 44px; border-radius: 10px; width: 100%;
  }
  .nav.open .lang-drop { width: 100%; }
  .nav.open .lang-drop-btn { width: 100%; justify-content: flex-start; }
  .nav-extra {
    display: none; width: 100%; padding: 16px 20px 8px; gap: 12px;
    flex-wrap: wrap; align-items: stretch; flex-direction: column;
  }
  .nav.open .nav-extra { display: flex; }
  .nav.open .cta-mini {
    display: inline-flex; color: #fff; width: 100%; justify-content: center;
    padding: 14px 16px; font-size: 13px;
  }
  .nav.open .cta-mini::after { display: none !important; }
  .header { position: sticky; }
  input, select, textarea { font-size: 16px; }
  .story-card { min-height: 360px; }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-slide h2 { font-size: clamp(26px, 8vw, 36px); max-width: 18ch; }
  .film { grid-template-columns: 1fr; margin: 12px auto 8px; width: min(var(--max), calc(100% - 24px)); }
  body:not([data-page="home"]) .page-hero { padding: 28px 0 18px; }
  body:not([data-page="home"]) .page-hero h1,
  body:not([data-page="home"]) .off-h1 { font-size: clamp(32px, 11vw, 48px); max-width: none; }
  .filters { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
  .filter { flex: 0 0 auto; }
  .eng-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .eng-tabs button { flex: 0 0 auto; }
  .chat-top, .chat-input { flex-direction: column; align-items: stretch; }
  .min-bar { padding: 14px 0 8px; }
  .min-tools { flex-direction: column; align-items: stretch; flex-wrap: wrap; }
  .min-search { max-width: none; flex: none; }
  .min-tools input { width: 100%; }
  .min-tools .filters { margin-left: 0; justify-content: flex-start; flex-wrap: wrap; }
  .hist-hero { padding: 40px 0 28px; }
  .hist-hero .sun { width: 120px; height: 120px; right: 8%; top: 18%; }
  .radio-hero { padding: 36px 0 28px; }
  .elig-grid div { flex-wrap: wrap; }
  .hero-slide {
    height: auto; min-height: 100svh; max-height: none;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .hero-copy,
  .hero-slide .slide .hero-copy {
    position: absolute; top: auto; bottom: 76px; left: 16px; right: 16px;
    transform: none; max-width: none;
    padding: 0; margin: 0; z-index: 2;
  }
  .hero-copy h1 { font-size: clamp(34px, 10vw, 52px); max-width: 12ch; }
  .hero-copy .eyebrow { margin-bottom: 12px; }
  .hero-copy .sub { margin-top: 12px; }
  .hero-actions { margin-top: 18px; }
  .svc-row {
    position: absolute; left: 16px; right: 16px; bottom: 18px;
    z-index: 3; padding: 0;
    flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .svc-row::-webkit-scrollbar { display: none; }
  .svc-row a { flex: 0 0 auto; }
  .svc-row a:nth-child(n + 3) { display: none; }
  .slide-dots { bottom: 18px; right: 16px; left: auto; transform: none; }
  .slide-flagrail { width: 6px; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .news-grid, .min-grid, .team-grid, .gallery-grid, .explore-grid, .stats, .foot-grid, .progs, .newsroom-grid {
    grid-template-columns: 1fr;
  }
  .tools-row { grid-template-columns: 1fr 1fr; }
  .util-left span.hide-sm { display: none; }
  .legal { flex-direction: column; text-align: center; }
  .legal-left { justify-content: center; }
  .legal-pipe { display: none; }
  .foot-grid { gap: 32px 24px; }
  .foot-help li { gap: 10px; }
  .ed img { min-height: 240px; }
  .ed-photo, .ed-photo img { min-height: 280px; }
  .article-hero { max-height: 220px; }
  .article-hero img { height: 100%; }
  .pay-grid { grid-template-columns: 1fr; }
  .hero-actions { gap: 8px; }
  .btn-gold, .btn-outline, .cta-mini, .btn-ghost { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn-gold, .hero-actions .btn-outline, .hero-actions .cta-mini, .hero-actions .btn-ghost {
    width: auto; flex: 1 1 calc(50% - 8px); min-width: 140px; justify-content: center;
  }
  .search-overlay { padding: 8vh 12px 12px; }
  .gallery-grid.wide a:nth-child(1) { grid-column: auto; min-height: 200px; }
}

/* —— Official inner-page layouts (not used on the Figma homepage) —— */
.kicker-off::before { content: "§  "; letter-spacing: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 18px;
}
.back-link:hover { color: var(--ink); }
.min-hero { overflow: hidden; }
.min-hero .wrap { position: relative; z-index: 1; }
.min-count {
  position: absolute; right: 0; bottom: 8px; text-align: right;
}
.min-count b {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 8vw, 88px); line-height: .9; letter-spacing: -.05em;
}
.min-count span {
  letter-spacing: .16em; text-transform: uppercase; font-size: 11px; color: var(--muted);
}
.min-card { position: relative; padding-top: 20px; min-height: 210px; }
.min-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
}
.min-card[data-cat="communications"]::before { background: #0A0A0B; }
.min-card[data-cat="regional"]::before { background: var(--flag-y); }
.min-card[data-cat="economic"]::before { background: var(--flag-y); }
.min-card[data-cat="security"]::before { background: var(--flag-r); }
.min-card[data-cat="social"]::before { background: var(--flag-r); }
.min-card[data-cat="governance"]::before { background: #0A0A0B; }
.min-card[data-cat="infrastructure"]::before { background: var(--flag-y); }
.min-card .arms-sm { width: 48px; height: 48px; object-fit: contain; margin-bottom: 12px; }
.min-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -.02em; margin: 4px 0 6px; line-height: 1.2; }
.min-card .badge {
  position: absolute; top: 16px; right: 14px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px; padding: 4px 8px; font-weight: 700;
}
.min-card[data-cat="communications"] .badge { background: #0A0A0B; color: #fff; }
.min-card[data-cat="regional"] .badge { background: var(--flag-y); color: #111; }
.min-card[data-cat="economic"] .badge { background: var(--flag-y); color: #111; }
.min-card[data-cat="security"] .badge { background: var(--flag-r); color: #fff; }
.min-card[data-cat="social"] .badge { background: var(--flag-r); color: #fff; }
.min-card[data-cat="governance"] .badge { background: #0A0A0B; color: #fff; }
.min-card[data-cat="infrastructure"] .badge { background: var(--flag-y); color: #111; }
.min-card p.mandate { color: var(--ink-2); font-size: 13px; margin-top: 8px; line-height: 1.45; }
.min-contact { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.min-contact a {
  font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 10px; line-height: 1.2;
}
.min-contact a.web { background: #111; color: #fff; }
.min-contact a.mail { background: var(--gold); color: #111; }
.min-contact a.tel { background: var(--red); color: #fff; }
.min-card { min-height: 260px; display: flex; flex-direction: column; cursor: pointer; color: inherit; text-decoration: none; }
.min-card .min-contact { margin-top: auto; padding-top: 12px; }
.min-card .min-view {
  display: inline-flex; margin-top: 10px; font-size: 12px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.min-card:hover .min-view { color: var(--flag-r); }
.min-n {
  display: inline-block; margin: 0 0 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); font-weight: 500;
}
.min-desk-hero .min-desk-top { display: flex; gap: 22px; align-items: start; }
.min-desk-hero .min-desk-top img { width: 88px; height: 88px; object-fit: contain; }
.min-desk-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 160px)); gap: 18px; margin-top: 32px;
}
.min-desk-stats b {
  display: block; font-family: var(--display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; letter-spacing: -.03em;
}
.min-desk-stats span { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.min-desk-grid { display: grid; grid-template-columns: 1.4fr .7fr; gap: 40px; align-items: start; }
.min-facts { display: grid; gap: 14px; margin-top: 28px; }
.min-facts div { border-top: 1px solid var(--line); padding-top: 12px; }
.min-facts dt { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.min-facts dd { margin: 4px 0 0; font-weight: 600; }
.min-side {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
}
.min-side ul { display: grid; gap: 8px; margin: 12px 0; }
.min-side a { word-break: break-word; }
.min-feed { display: grid; gap: 16px; }
.min-release {
  display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; padding: 0 16px 16px 0;
}
.min-release img { width: 160px; height: 140px; object-fit: cover; }
.min-release h3 { font-family: var(--display); font-size: 20px; margin: 8px 0; letter-spacing: -.02em; }
.min-release p { color: var(--ink-2); font-size: 14px; }
.min-empty {
  border: 1px dashed var(--line); border-radius: 14px; padding: 28px; text-align: center;
}
.min-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.min-related a {
  display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 16px;
}
.min-related a:hover { border-color: var(--flag-y); }
.min-fb { display: grid; gap: 12px; }
.min-fb label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.min-fb input, .min-fb select, .min-fb textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: #fff;
}
@media (max-width: 860px) {
  .min-desk-grid, .min-release, .min-related, .min-desk-top { grid-template-columns: 1fr; }
  .min-release img { width: 100%; height: 180px; }
  .min-desk-stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* Ministry desk */
.desk-hero {
  position: relative; background: #0e0e12; color: #f9f9f6;
  padding: 32px 0 40px; overflow: hidden;
}
.desk-hero::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
}
.desk-hero[data-cat="communications"]::before { background: #0A0A0B; }
.desk-hero[data-cat="regional"]::before { background: var(--flag-y); }
.desk-hero[data-cat="economic"]::before { background: var(--flag-y); }
.desk-hero[data-cat="security"]::before { background: var(--flag-r); }
.desk-hero[data-cat="social"]::before { background: var(--flag-r); }
.desk-hero[data-cat="governance"]::before { background: #0A0A0B; }
.desk-hero[data-cat="infrastructure"]::before { background: var(--flag-y); }
.desk-hero-arms {
  position: absolute; right: 0; top: 50%; transform: translateY(-48%);
  width: min(560px, 52vw); opacity: .18; pointer-events: none;
}
.desk-hero .wrap { position: relative; z-index: 1; }
.desk-back {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(249,249,246,.62); margin-bottom: 22px;
}
.desk-back:hover { color: #fff; }
.desk-hero-row {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.desk-hero-copy { display: flex; gap: 18px; align-items: flex-start; min-width: 0; }
.desk-coat { width: 92px; height: 92px; object-fit: contain; flex: 0 0 auto; }
.desk-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 999px; padding: 4px 9px;
  background: #0A0A0B; color: #fff; margin-bottom: 10px;
}
.desk-hero[data-cat="regional"] .desk-badge { background: var(--flag-y); color: #111; }
.desk-hero[data-cat="economic"] .desk-badge { background: var(--flag-y); color: #111; }
.desk-hero[data-cat="security"] .desk-badge { background: var(--flag-r); color: #fff; }
.desk-hero[data-cat="social"] .desk-badge { background: var(--flag-r); color: #fff; }
.desk-hero[data-cat="governance"] .desk-badge { background: #0A0A0B; color: #fff; }
.desk-hero[data-cat="infrastructure"] .desk-badge { background: var(--flag-y); color: #111; }
.desk-hero h1 {
  font-family: var(--display); font-weight: 400; color: #fff;
  font-size: clamp(36px, 5.4vw, 72px); letter-spacing: -.045em; line-height: .95;
  max-width: 14ch; margin: 0;
}
.desk-led { margin-top: 14px; font-size: 18px; color: rgba(249,249,246,.78); }
.desk-led b { color: var(--flag-y); font-weight: 600; }
.desk-stats {
  display: grid; grid-template-columns: repeat(3, minmax(88px, 1fr));
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; min-width: 320px;
  background: rgba(14,14,18,.35); backdrop-filter: blur(8px);
}
.desk-stats div {
  padding: 16px 18px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.desk-stats div:last-child { border-right: 0; }
.desk-stats b {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: 28px; letter-spacing: -.03em; line-height: 1;
}
.desk-stats div:not(:first-child) b { color: var(--flag-y); }
.desk-stats span {
  display: block; margin-top: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(249,249,246,.55);
}
.desk-body { padding: 48px 0 72px; }
.mdesk {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px;
  grid-template-areas: "about side" "rest side";
  gap: 28px 40px; align-items: start; width: 100%;
}
.desk-about { grid-area: about; min-width: 0; }
.desk-side { grid-area: side; position: sticky; top: 96px; display: grid; gap: 14px; }
.desk-rest { grid-area: rest; display: grid; gap: 48px; min-width: 0; }
.desk-about h2, .desk-rest h2, .desk-fb h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.03em; margin: 0 0 12px;
}
.desk-about > p { font-size: 18px; color: #4a4a52; max-width: 62ch; line-height: 1.55; }
.desk-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
}
.desk-facts dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.desk-facts dd { margin: 0; font-weight: 600; }
.desk-k {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.mdesk-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
}
.desk-contact { display: grid; gap: 14px; }
.desk-contact li { display: flex; gap: 12px; align-items: flex-start; }
.desk-contact li > span {
  width: 28px; height: 28px; border-radius: 8px; background: #f3f3ef;
  display: grid; place-items: center; color: var(--ink-2); flex: 0 0 auto;
}
.desk-contact small {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.desk-contact a { font-weight: 600; }
.desk-contact a:hover { color: var(--flag-r); }
.desk-hours { font-weight: 600; }
.desk-brief {
  background: #fff8d4; border: 1px solid #ead98a; border-radius: 16px; padding: 18px 20px;
}
.desk-brief .desk-k { color: #6b5a12; }
.desk-brief p { font-size: 14px; color: #3a3a42; margin-bottom: 12px; }
.desk-brief a {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; color: #111;
}
.desk-brief a:hover { color: var(--flag-r); }
.desk-live-h { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.desk-live-h .muted { margin: -6px 0 16px; }
.desk-live-pill {
  display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.desk-live-pill i {
  width: 7px; height: 7px; border-radius: 50%; background: #e11d2e;
  box-shadow: 0 0 0 0 rgba(225,29,46,.6); animation: pulse 1.6s infinite;
}
.desk-feed { display: grid; gap: 12px; }
.desk-story {
  display: grid; grid-template-columns: 168px 1fr; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.desk-story:hover { border-color: var(--flag-y); }
.desk-story img { width: 100%; height: 148px; object-fit: cover; }
.desk-story > div { padding: 14px 16px 16px 0; }
.desk-story h3 {
  font-family: var(--display); font-size: 20px; font-weight: 500;
  letter-spacing: -.02em; margin: 8px 0 8px; line-height: 1.2;
}
.desk-story p { color: var(--ink-2); font-size: 14px; }
.desk-empty {
  border: 1px dashed var(--line); border-radius: 16px; padding: 48px 24px;
  text-align: center; color: var(--ink);
}
.desk-empty.slim { padding: 28px; }
.desk-empty-ico {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; margin: 0 auto 12px; color: var(--muted);
}
.desk-press { display: grid; }
.desk-press-row {
  display: grid; gap: 4px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.desk-press-row span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.desk-press-row strong { font-size: 17px; font-weight: 600; }
.desk-press-row:hover strong { color: #8a0a12; }
.desk-events { display: grid; gap: 12px; }
.desk-events article {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
}
.desk-events time {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red);
}
.desk-events h3 { font-size: 18px; margin: 6px 0 4px; }
.desk-events p { color: var(--muted); font-size: 14px; }
.desk-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.desk-related a {
  display: flex; flex-direction: column; gap: 8px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 16px;
}
.desk-related a:hover { border-color: var(--flag-y); }
.desk-badge.sm { align-self: flex-start; margin-bottom: 0; }
.desk-related a[data-cat="communications"] .desk-badge { background: #0A0A0B; color: #fff; }
.desk-related a[data-cat="regional"] .desk-badge { background: var(--flag-y); color: #111; }
.desk-related a[data-cat="economic"] .desk-badge { background: var(--flag-y); color: #111; }
.desk-related a[data-cat="security"] .desk-badge { background: var(--flag-r); color: #fff; }
.desk-related a[data-cat="social"] .desk-badge { background: var(--flag-r); color: #fff; }
.desk-related a[data-cat="governance"] .desk-badge { background: #0A0A0B; color: #fff; }
.desk-related a[data-cat="infrastructure"] .desk-badge { background: var(--flag-y); color: #111; }
.desk-related strong { font-size: 15px; line-height: 1.25; }
.desk-related small { color: var(--muted); }
.desk-fb { display: grid; gap: 14px; }
.desk-fb-top { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.desk-fb-meta { display: flex; gap: 28px; }
.desk-fb-meta dt {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.desk-fb-meta dd { margin: 4px 0 0; font-weight: 600; }
.desk-fb label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.desk-fb input, .desk-fb select, .desk-fb textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; background: #fff; font-weight: 400;
}
.desk-count { justify-self: end; font-size: 12px; color: var(--muted); font-weight: 400; }
.desk-ident {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 6px;
}
.desk-ident p { font-weight: 600; font-size: 14px; }
.desk-fb label.desk-anon {
  display: flex; flex-direction: row; align-items: center; gap: 8px;
  font-weight: 400; white-space: nowrap;
}
.desk-ident-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.desk-submit {
  justify-self: start; background: #151519; color: #fff; border: 0;
  border-radius: 999px; padding: 12px 22px; font-weight: 600;
}
.desk-submit:hover { background: #000; }
.desk-pager {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 8px; border-top: 1px solid var(--line);
}
.desk-pager a { display: grid; gap: 4px; max-width: 46%; }
.desk-pager a.next { text-align: right; margin-left: auto; }
.desk-pager span {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.desk-pager b { font-weight: 600; }
.desk-pager a:hover b { color: var(--flag-r); }
@media (max-width: 1024px) {
  .desk-hero-row { flex-direction: column; align-items: stretch; }
  .desk-stats { min-width: 0; }
  .mdesk { grid-template-columns: 1fr; grid-template-areas: "about" "side" "rest"; }
  .desk-side { position: static; }
  .desk-facts, .desk-related, .desk-ident-row { grid-template-columns: 1fr; }
  .desk-fb-top { flex-direction: column; }
}
@media (max-width: 860px) {
  .desk-hero { padding: 24px 0 28px; }
  .desk-hero-arms { display: none; }
  .desk-hero-copy { flex-direction: column; }
  .desk-stats { grid-template-columns: 1fr; }
  .desk-stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .desk-stats div:last-child { border-bottom: 0; }
  .desk-story { grid-template-columns: 1fr; }
  .desk-story img { height: 180px; }
  .desk-story > div { padding: 14px 16px 16px; }
}

.ed { grid-template-columns: 1.05fr 1fr; border-radius: 22px; }
.ed-photo { position: relative; min-height: 420px; }
.ed-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; min-height: 420px; }
.ed-photo::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 10px; z-index: 1;
  background: linear-gradient(180deg, #000 0 33.3%, var(--flag-y) 33.3% 66.6%, var(--flag-r) 66.6%);
}
.ed .role {
  color: var(--red); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
}
.ed .role::before { content: "§  "; }
.ed .sub { letter-spacing: .12em; text-transform: uppercase; font-size: 11px; color: var(--muted); margin: 6px 0 16px; }
.avatar {
  width: 100%; height: 190px; display: grid; place-items: center;
  background: #ecece6; color: var(--ink); font-family: var(--display);
  font-size: 36px; font-weight: 400; letter-spacing: -.03em;
}

.mode-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mode-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  min-height: 170px; display: flex; flex-direction: column;
}
.mode-card b { font-family: var(--display); font-size: 28px; font-weight: 400; }
.mode-card span.enter { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-top: auto; }
.mode-card:hover { border-color: var(--ink); }

.release-list { display: grid; gap: 0; border: 1px solid var(--line); background: #fff; border-radius: 12px; overflow: hidden; }
.release-row {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 16px; align-items: center;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.release-row:last-child { border-bottom: 0; }
.release-row:hover { background: #fafaf6; }
.release-row small { color: var(--muted); font-size: 12px; }
.release-row h3 { font-size: 16px; line-height: 1.3; text-transform: uppercase; letter-spacing: -.01em; }

.do-list { margin: 8px 0 0; }
.do-list li { padding: 10px 0; border-bottom: 0; font-size: 16px; color: var(--ink-2); list-style: disc; margin-left: 18px; }

.hist-hero {
  position: relative; background: #0A0A0B; color: #fafaf7;
  overflow: hidden; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hist-hero-art { position: absolute; inset: 0; opacity: .62; }
.hist-hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hist-hero-fallback {
  background:
    radial-gradient(circle at 72% 38%, #fcdc04 0%, rgba(252, 220, 4, .15) 28%, transparent 52%),
    linear-gradient(180deg, #2a2308 0%, #0a0a0b 70%);
  opacity: .85;
}
.hist-hero-art svg { width: 100%; height: 100%; display: block; }
.hist-frame figcaption span + span { text-transform: none; letter-spacing: 0; float: right; }
.hist-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.22) 42%, rgba(10,10,11,.92) 100%);
}
.hist-hero .wrap { position: relative; z-index: 3; }
.hist-hero-grid {
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 32px; align-items: end;
  padding: 88px 0 48px;
}
.hist-hero h1 {
  color: #fff; font-family: var(--display); font-weight: 600;
  font-size: clamp(48px, 8vw, 108px); letter-spacing: -.05em; line-height: .92; max-width: 11ch;
}
.hist-hero .lede { color: rgba(250,250,247,.85); max-width: 36ch; font-size: 20px; margin-top: 22px; }
.hist-hero .kicker-off { color: #fcdc04; }
.hist-aside { align-self: end; padding-bottom: 8px; }
.hist-aside .flag-rule { width: 100%; margin: 0 0 18px; height: 3px; }
.hist-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hist-meta b { display: block; font-family: var(--display); font-size: 30px; font-weight: 400; color: #fff; white-space: nowrap; }
.hist-meta span { letter-spacing: .18em; text-transform: uppercase; font-size: 10px; color: rgba(250,250,247,.65); }
.timeline { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.t-nav button {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  padding: 10px 0 10px 14px; border-left: 2px solid var(--line); color: var(--muted); font-size: 14px;
}
.t-nav button.active { border-left-color: var(--red); color: var(--ink); font-weight: 700; }
.t-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; min-height: 240px; }
.t-card .num { width: auto; height: auto; background: none; font-family: var(--display); font-size: 72px; font-weight: 400; justify-content: start; color: var(--ink); }
.t-card h3 { font-family: var(--display); font-size: 32px; font-weight: 400; margin: 8px 0; }

.lang-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.lang-pills button {
  border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: transparent; color: #fff;
  padding: 8px 14px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.lang-pills button small { display: block; font-weight: 600; letter-spacing: .08em; opacity: .7; font-size: 9px; }
.lang-pills .on { background: var(--gold); color: #111; border-color: var(--gold); }
.proverb {
  background: linear-gradient(90deg, #111 40%, #2a2308); color: #fff;
  border-radius: 16px; padding: 28px 28px 24px; margin: 22px 0;
}
.proverb .kicker-off { color: var(--gold); }
.proverb q { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); letter-spacing: -.03em; display: block; margin: 8px 0; }
.glossary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.glossary button {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; text-align: left;
}
.glossary b { display: block; }
.glossary span { color: var(--muted); font-size: 12px; }

.eng-hero { background: #000; color: #fff; padding: 56px 0 0; }
.eng-hero h1 { color: #fff; font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 72px); letter-spacing: -.04em; line-height: .95; max-width: 16ch; }
.eng-hero .lede { color: rgba(255,255,255,.78); }
.eng-hero .kicker-off { color: rgba(255,255,255,.55); }
.eng-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.14); margin-top: 28px;
}
.eng-stats .stat { background: transparent; border: 0; border-radius: 0; border-right: 1px solid rgba(255,255,255,.14); }
.eng-stats .stat:last-child { border-right: 0; }
.eng-stats b { color: var(--gold); font-family: var(--display); font-weight: 400; font-size: 32px; }
.eng-stats span { color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.eng-tabs {
  display: flex; gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.eng-tabs button {
  background: none; border: 0; padding: 8px 0; font-size: 14px; font-weight: 700; color: var(--muted);
  border-bottom: 2px solid transparent;
}
.eng-tabs button.on { color: var(--ink); border-bottom-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.on { display: block; }
.chat-shell { border-radius: 18px; }
.chat-top { gap: 12px; }
.chat-brand { display: flex; align-items: center; gap: 10px; }
.chat-ico {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gold); color: #111;
  display: grid; place-items: center; font-weight: 800;
}
.chat-top small { display: block; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.chat-langs { display: flex; gap: 6px; }
.chat-langs button {
  border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: transparent; color: #fff;
  padding: 6px 10px; font-size: 10px; font-weight: 800; letter-spacing: .08em;
}
.chat-langs .on { background: var(--gold); color: #111; border-color: var(--gold); }
.chat-input {
  display: flex; gap: 8px; padding: 12px 16px 16px; border-top: 1px solid rgba(255,255,255,.08);
}
.chat-input input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #fff; }
.help-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.help-card h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.help-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.help-row:last-child { border-bottom: 0; }
.help-row small { display: block; color: var(--red); letter-spacing: .1em; text-transform: uppercase; font-size: 10px; }

.radio-hero { background: #0a0a0c; color: #fff; padding: 64px 0 48px; position: relative; overflow: hidden; }
.radio-hero .arms {
  position: absolute; inset: 0; width: 100%; height: 140%; object-fit: cover; opacity: .16; pointer-events: none;
  mix-blend-mode: luminosity;
}
.radio-hero .wrap { position: relative; z-index: 1; }
.player-card { grid-template-columns: 140px 1fr auto; }
.player-art { position: relative; background: #000; }
.onair {
  position: absolute; top: 10px; left: 10px; background: #1a1a1a; color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; padding: 4px 8px; border-radius: 999px;
}
.onair i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #ff3b3b; margin-right: 6px; }
.vol { width: 120px; accent-color: var(--gold); }
.show-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; min-height: 180px;
}
.show-card small { color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }
.show-card h3 { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 8px 0; }
.with { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; }
.with img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-grid div { background: #f7f7f2; border-radius: 10px; padding: 12px; }
.pay-grid small { display: block; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-size: 10px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.gal-hero { padding-bottom: 8px; }

@media (max-width: 1024px) {
  .mode-grid, .eng-stats, .glossary, .timeline, .player-card, .contact-grid { grid-template-columns: 1fr 1fr; }
  .release-row { grid-template-columns: 1fr; }
  .min-count { position: static; text-align: left; margin-top: 18px; }
}
@media (max-width: 640px) {
  .mode-grid, .glossary, .timeline, .player-card, .contact-grid, .stat-board { grid-template-columns: 1fr; }
  .eng-stats { grid-template-columns: 1fr 1fr; }
  .hist-meta { flex-direction: column; gap: 12px; }
  .ed { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .mosaic-card:hover, .news-card:hover, .min-card:hover, .person:hover, .tool-chip:hover {
    transform: none; box-shadow: none;
  }
}

/* —— Radio / podcasts (flag palette: black, red, yellow, white) —— */
.nav-extra { display: none; }
.radio-hero-light { padding-bottom: 8px; }
.live-strip {
  background: #111114; color: #fff; font-size: 13px; font-weight: 600;
}
.live-strip .wrap {
  display: flex; align-items: center; gap: 14px; min-height: 42px; flex-wrap: wrap;
}
.live-flag-inline, .live-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; border-radius: 999px;
  padding: 6px 12px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.live-flag-inline i, .live-flag i {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.6s infinite;
}
.brief-card {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow);
}
.brief-art { position: relative; min-height: 360px; background: #111; }
.brief-art img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.brief-art .live-flag { position: absolute; top: 16px; left: 16px; z-index: 2; }
.play-xl {
  width: 92px; height: 92px; border-radius: 50%; border: 0;
  background: var(--gold); color: #111; font-size: 32px; line-height: 1;
  display: grid; place-items: center;
  box-shadow: 0 0 0 5px #fff, 0 16px 40px rgba(0,0,0,.4);
  transition: transform .2s var(--ease);
}
.play-xl:hover { transform: scale(1.06); }
.brief-art .play-xl {
  position: absolute; left: 50%; top: 62%; transform: translate(-50%, -50%); z-index: 2;
}
.brief-art .play-xl:hover { transform: translate(-50%, -50%) scale(1.06); }
.play-sm { width: 56px; height: 56px; font-size: 20px; }
.brief-copy { padding: 28px 28px 26px; }
.brief-copy h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: -.03em; margin: 8px 0 10px;
}
.eq { display: flex; align-items: flex-end; gap: 4px; height: 36px; margin: 16px 0; }
.eq i { width: 5px; border-radius: 99px; background: var(--gold); height: 22%; }
.brief-card.is-live .eq i { animation: eqBar .9s ease-in-out infinite; background: var(--gold); }
.brief-card.is-live .eq i:nth-child(odd) { background: var(--red); }
.brief-card.is-live .eq i:nth-child(2) { animation-delay: .1s; }
.brief-card.is-live .eq i:nth-child(3) { animation-delay: .2s; }
.brief-card.is-live .eq i:nth-child(4) { animation-delay: .05s; }
.brief-card.is-live .eq i:nth-child(5) { animation-delay: .25s; }
.brief-card.is-live .eq i:nth-child(6) { animation-delay: .15s; }
.brief-card.is-live .eq i:nth-child(7) { animation-delay: .3s; }
.brief-card.is-live .eq i:nth-child(8) { animation-delay: .08s; }
@keyframes eqBar { 0%,100% { height: 18%; } 50% { height: 100%; } }
.live-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }
.live-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; color: var(--muted); font-size: 13px; }
.pill-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; border-radius: 999px;
  padding: 6px 12px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.pill-off {
  display: inline-flex; align-items: center; gap: 8px;
  background: #111; color: #fff; border-radius: 999px;
  padding: 6px 12px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.show-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.show-pills button {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 10px 16px; font-size: 13px; font-weight: 700;
}
.show-pills button.on { background: #111; color: #fff; border-color: #111; }
.show-pills button:nth-child(3n).on { background: var(--red); border-color: var(--red); }
.show-pills button:nth-child(4n).on { background: var(--gold); color: #111; border-color: var(--gold); }
.ep-slider { align-items: stretch; padding-bottom: 12px; }
.rail-track.ep-slider > * { flex: 0 0 min(82%, 260px); }
.ep-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  text-align: left; color: inherit; padding: 0; display: block; width: 100%;
}
.ep-card .ep-cover { position: relative; height: 180px; background: #111; }
.ep-card img { width: 100%; height: 180px; object-fit: cover; }
.ep-card .play-xl {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; font-size: 20px; opacity: .95;
}
.ep-card:hover .play-xl { transform: translate(-50%,-50%) scale(1.08); }
.ep-card.is-playing { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.ep-card .txt { padding: 14px 14px 16px; }
.ep-card small { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ep-card h3 { font-size: 16px; line-height: 1.3; margin: 6px 0 6px; }
.ep-card p { color: var(--muted); font-size: 13px; }
.pod-dock {
  position: sticky; bottom: 0; z-index: 60;
  background: #111114; color: #fff; padding: 10px 0;
  display: none; border-top: 3px solid var(--gold);
}
.pod-dock.on { display: block; }
body[data-page="podcasts"].pod-playing {
  padding-bottom: 96px;
}
body[data-page="podcasts"] .pod-dock.on {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: block;
  z-index: 80;
  box-shadow: 0 -12px 32px rgba(0,0,0,.28);
}
body[data-page="podcasts"] .pod-dock[hidden] {
  display: none !important;
}
.pod-dock .inner {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 12px; align-items: center;
}
.pod-dock-close {
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer;
}
.pod-dock-close:hover { background: var(--red); }
.pod-dock img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.pod-dock strong { display: block; color: #fff; font-size: 14px; }
.pod-dock small { color: rgba(255,255,255,.55); }
.seek { width: 100%; accent-color: var(--gold); }
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.studio-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.ep-admin {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.ep-admin img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.danger { background: var(--red); color: #fff; border: 0; border-radius: 999px; padding: 10px 16px; font-weight: 800; }

.live-strip .wrap { justify-content: flex-start; }
.strip-notify {
  margin-left: auto; border: 1px solid rgba(255,255,255,.25); background: transparent;
  color: #fff; border-radius: 999px; padding: 6px 12px; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.strip-notify:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.live-flag.is-latest, .live-flag-inline.is-latest { background: #111; }
.yt-card {
  display: grid; grid-template-columns: 1.25fr .85fr; background: #fff;
  border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.yt-frame { position: relative; background: #111; min-height: 360px; }
.yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-frame .live-flag { position: absolute; top: 14px; left: 14px; z-index: 2; }
.yt-copy { padding: 26px 26px 24px; }
.yt-copy h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -.03em; margin: 8px 0 10px;
}
.social-watch { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.soc {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px; padding: 8px 14px; font-size: 12px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.soc.yt { background: var(--red); color: #fff; }
.soc.fb { background: #111; color: #fff; }
.soc.x { background: #111; color: var(--gold); }
.soc.ig { background: var(--gold); color: #111; }
.release-slider { align-items: stretch; padding-bottom: 12px; }
.rail-track.release-slider > * { flex: 0 0 min(82%, 280px); }
.rel-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: block;
}
.rel-cover { position: relative; height: 168px; background: #111; }
.rel-cover img { width: 100%; height: 168px; object-fit: cover; }
.rel-cover .tag { position: absolute; left: 10px; top: 10px; }
.rel-card .txt { padding: 14px 14px 16px; }
.rel-card small { color: var(--muted); font-size: 12px; }
.rel-card h3 { font-size: 16px; line-height: 1.3; margin-top: 6px; }
.rel-card:hover { border-color: var(--gold); }

.press-index-lede { margin: -8px 0 18px; max-width: 52ch; }
.press-index-bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.press-index-n { font-size: 14px; color: var(--ink-2); }
.press-index-n b { font-family: var(--display); font-size: 22px; font-weight: 500; margin-right: 4px; }
.press-sort {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.press-sort select {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 12px; text-transform: none; letter-spacing: 0; color: var(--ink);
}
.press-index { display: grid; gap: 12px; }
.press-row {
  display: grid; grid-template-columns: 220px minmax(0, 1fr); background: #fff;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  min-height: 168px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  align-items: stretch;
}
.press-row:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.press-row.no-img { grid-template-columns: 1fr; }
.press-row.no-img .txt { grid-column: 1; }
.press-row-cover {
  grid-column: 1; position: relative; z-index: 0;
  width: 220px; max-width: 220px; min-height: 168px;
  background: #111; overflow: hidden;
}
.press-row-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.press-row .txt {
  grid-column: 2; position: relative; z-index: 1;
  padding: 16px 18px 18px; display: flex; flex-direction: column; min-width: 0;
  background: #fff;
}
.press-row-meta {
  display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center;
  font-size: 12px; color: var(--muted);
}
.press-row-meta time { font-family: var(--mono); letter-spacing: .02em; }
.press-cat {
  text-transform: lowercase; letter-spacing: .04em; color: var(--ink-2);
  background: var(--cream); border-radius: 999px; padding: 2px 8px;
}
.press-min { color: var(--muted); }
.press-row h3 {
  font-family: var(--display); font-weight: 500; font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -.02em; line-height: 1.25; margin: 8px 0 8px; text-transform: none;
}
.press-row p {
  color: var(--ink-2); font-size: 14px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.press-read {
  margin-top: 12px; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
}
.press-row:hover .press-read { color: var(--red); }
@media (max-width: 760px) {
  .press-row { grid-template-columns: 1fr; }
  .press-row-cover { grid-column: 1; width: 100%; max-width: none; height: 180px; min-height: 180px; }
  .press-row .txt { grid-column: 1; }
}

.rel-page { padding: 28px 0 64px; }
.rel-page > .wrap {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
.rel-page .article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(24px, 3.5vw, 48px);
  width: 100%;
}
.rel-page .rel-prose {
  max-width: none;
}
@media (min-width: 1280px) {
  .rel-page > .wrap {
    width: min(1280px, calc(100% - 96px));
  }
  .rel-page .article-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 520px;
  }
  .rel-page .article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}
@media (min-width: 1680px) {
  .rel-page > .wrap {
    width: min(1400px, calc(100% - 120px));
  }
}
.rel-missing { padding: 48px 0 80px; max-width: 42ch; }
.rel-tools { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; align-items: center; }
.rel-tools .btn-outline, .rel-tools button { width: auto; flex: 0 0 auto; }
.rel-mast {
  display: flex; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; margin-bottom: 28px;
}
.rel-mast img { width: 52px; height: 52px; }
.rel-mast strong { display: block; font-family: var(--display); font-weight: 500; font-size: 16px; }
.rel-mast small { display: block; margin-top: 4px; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.rel-page .article aside { position: sticky; top: 88px; align-self: start; }
body:not([data-page="home"]) .rel-page .article h1,
.rel-page .article h1 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.18;
  max-width: none;
  letter-spacing: -.025em;
  margin: 10px 0 8px;
}
.rel-kicker {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.rel-prose { margin-top: 22px; max-width: none; }
body:not([data-page="home"]) .rel-prose h2,
.rel-prose h2 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  margin: 22px 0 8px;
}
.rel-signoff {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: .02em;
  margin-top: 28px;
}
.rel-sig { font-style: italic; }
.rel-side + .rel-side { margin-top: 14px; }
.rel-file {
  display: flex; align-items: center; gap: 14px;
  margin: 18px 0 6px;
  padding: 14px 16px;
  background: #111114;
  color: #f4f4f0;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.rel-file-ext {
  flex: 0 0 auto;
  min-width: 52px;
  text-align: center;
  background: var(--gold);
  color: #111114;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 10px 12px;
  border-radius: 10px;
}
.rel-file-copy { flex: 1; min-width: 0; }
.rel-file-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}
.rel-file-copy small {
  display: block;
  margin-top: 3px;
  color: rgba(244,244,240,.72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rel-file-go { display: none; }
.rel-file:hover { filter: brightness(1.05); color: #f4f4f0; }
.rel-file-after { margin-top: 28px; }
.rel-file-side {
  margin: 0;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--gold);
  box-shadow: none;
}
.rel-file-side .rel-file-copy strong { color: var(--ink); }
.rel-file-side .rel-file-copy small { color: var(--muted); }
.rel-side-file { padding: 10px; }
.press-file {
  display: inline-flex; align-items: center;
  background: var(--gold); color: #111;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 999px;
}
@media (max-width: 760px) {
  .rel-file-sticky {
    position: sticky; bottom: 12px; z-index: 8;
  }
  .rel-file-after { display: none; }
  .rel-file-copy strong { font-size: 15px; }
  .rel-file { gap: 10px; padding: 12px 14px; }
  .rel-file-go { display: none; }
}
.rel-refcode { font-family: var(--mono); font-size: 12px; overflow-wrap: anywhere; }
.rel-cite { font-size: 13px; color: var(--ink-2); line-height: 1.45; margin-bottom: 12px; }
.umc-pager {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center; justify-content: center;
  margin: 28px 0 4px; padding: 20px 0 4px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.umc-pager-btn {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 13px; font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}
a.umc-pager-btn:hover {
  border-color: var(--gold);
  background: #fff;
  color: var(--ink);
}
.umc-pager-btn.is-current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.umc-pager-btn.is-disabled,
.umc-pager-btn.is-gap {
  opacity: .45;
  pointer-events: none;
  background: transparent;
}
.desk-press + .umc-pager { margin-top: 16px; }

.rel-pager {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 40px 0 12px;
}
.rel-page-link {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; min-height: 92px;
}
.rel-page-link.next { text-align: right; }
.rel-page-link small {
  display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.rel-page-link span { font-family: var(--display); font-size: 16px; line-height: 1.3; }
.rel-page-link:hover { border-color: var(--gold); }
.rel-related { margin-top: 36px; }
.rel-related h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 8px 0 18px; }
.rel-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rel-more-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; min-height: 100%;
}
.rel-more-card:hover { border-color: var(--gold); }
.rel-more-cover { height: 140px; background: #111; overflow: hidden; }
.rel-more-cover img { width: 100%; height: 140px; object-fit: cover; display: block; }
.rel-more-card > div { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.rel-more-card small { color: var(--muted); font-size: 12px; }
.rel-more-card h3 { font-size: 16px; line-height: 1.3; }
.rel-more-card span { color: var(--muted); font-size: 12px; margin-top: auto; }
@media (max-width: 1024px) {
  .rel-more { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .rel-page > .wrap { width: min(800px, calc(100% - 40px)); }
  .rel-page .article { grid-template-columns: 1fr; }
  .rel-page .article aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  .rel-page .rel-side + .rel-side { margin-top: 0; }
}
@media (max-width: 760px) {
  .rel-page > .wrap { width: min(100% - 24px, 100%); }
  .rel-more, .rel-pager { grid-template-columns: 1fr; }
  .rel-page-link.next { text-align: left; }
  .rel-mast { align-items: flex-start; }
  .rel-page .article aside { grid-template-columns: 1fr; }
  .rel-side-file { display: none; }
  .rel-tools {
    position: sticky; top: 62px; z-index: 6;
    background: rgba(249, 249, 246, .94);
    backdrop-filter: blur(8px);
    padding: 8px 0;
    margin: 0 0 12px;
  }
  .rel-tools .btn-outline,
  .rel-tools button.btn-outline {
    width: auto !important;
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    justify-content: center;
  }
  .rel-page .article-hero img {
    height: auto;
    max-height: 280px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .rel-page .hero-actions .btn-gold {
    width: 100%;
  }
}
@media print {
  .skip, .util, .header, .footer, .rel-tools, .rel-pager, .rel-related, .search-overlay, .toast, .modal, .rel-file-go { display: none !important; }
  .rel-page { padding: 0; }
  .article { display: block; }
  .article aside { display: none; }
  .rel-mast { border: 0; padding: 0 0 16px; }
  .article-hero img { height: auto; max-height: 280px; }
  .rel-file, .rel-file-side {
    background: #fff; color: #000; box-shadow: none; border: 1px solid #000; position: static;
  }
  .rel-file-copy strong { color: #000; }
  body { background: #fff; }
}

.eng-board {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #111114; color: #fff; border-radius: 18px; overflow: hidden;
}
.eng-board div { padding: 22px 20px; border-right: 1px solid rgba(255,255,255,.1); }
.eng-board div:last-child { border-right: 0; }
.eng-board b { display: block; font-family: var(--display); font-weight: 400; font-size: 32px; color: var(--gold); }
.eng-board span { color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.eng-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: start; }
.ugov-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.ugov-top {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center;
  background: #111114; color: #fff; padding: 14px 16px;
}
.ugov-thread {
  min-height: 280px; max-height: 380px; overflow: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px; background: var(--cream);
}
.ugov-msg {
  max-width: 85%; border-radius: 16px; padding: 12px 14px; font-size: 15px; line-height: 1.45;
}
.ugov-msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; }
.ugov-msg.me { background: var(--gold); color: #111; align-self: flex-end; font-weight: 600; }
.ask-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 10px; }
.ask-chips button {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 12px; font-size: 12px; font-weight: 700; text-align: left;
}
.ask-chips button:hover { border-color: var(--red); color: var(--red); }
.ugov-input {
  display: flex; gap: 8px; padding: 12px 16px 16px; border-top: 1px solid var(--line);
}
.ugov-input input { flex: 1; }
.poll-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.poll-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px;
}
.poll-card h3 { font-size: 18px; margin: 6px 0 14px; line-height: 1.3; }
.poll-opt {
  position: relative; display: flex; justify-content: space-between; width: 100%;
  border: 1px solid var(--line); background: #fff; border-radius: 12px;
  padding: 10px 12px; margin-bottom: 8px; overflow: hidden; text-align: left;
}
.poll-opt i {
  position: absolute; left: 0; top: 0; bottom: 0; background: var(--gold); opacity: .35; z-index: 0;
}
.poll-opt span, .poll-opt b { position: relative; z-index: 1; }
.poll-opt.on { border-color: var(--red); }
.eng-tabs button.on { color: var(--ink); border-bottom-color: var(--gold); }

@media (max-width: 1024px) {
  .eng-grid, .poll-grid, .eng-board { grid-template-columns: 1fr 1fr; }
  .eng-layout { grid-template-columns: 1fr; }
  .eng-rail { position: static; }
}
@media (max-width: 640px) {
  .eng-grid, .poll-grid, .eng-board, .eng-layout { grid-template-columns: 1fr; }
  .ugov-top { flex-direction: column; align-items: flex-start; }
  .eng-board div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .eng-rail { position: static; }
}

.eng-page { position: relative; overflow: hidden; }
.eng-watermark {
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translateX(-50%);
  width: min(640px, 72vw);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.eng-page > .page-hero,
.eng-page > .section { position: relative; z-index: 1; }
.eng-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: start;
}
.eng-rail { position: sticky; top: 88px; display: grid; gap: 14px; }
.eng-about + .eng-about { margin-top: 14px; }
.eng-about p { margin-top: 10px; color: var(--ink-2); }
.eng-privacy { list-style: disc; padding-left: 18px; margin-top: 10px; color: var(--ink-2); }
.eng-privacy li { margin: 8px 0; }
.eng-form h3 { margin-bottom: 6px; }
.eng-form .muted { margin-bottom: 14px; }
.eng-captcha { margin: 8px 0 4px; min-height: 78px; }
.chat-use {
  display: inline-block;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0;
}
.ugov-msg.bot .chat-use { display: block; }

#ugov-widget {
  position: fixed;
  right: 16px;
  top: var(--chat-top, 96px);
  bottom: 16px;
  z-index: 25;
  font-family: var(--sans);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; gap: 8px;
  width: min(340px, calc(100vw - 24px));
  pointer-events: none;
}
#ugov-widget > * { pointer-events: auto; }
#ugov-widget.is-nav-open { visibility: hidden; pointer-events: none; }
body[data-page="home"] #ugov-widget { bottom: 72px; }
.ugov-fab {
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
  background: var(--gold); color: #111; border: 0; border-radius: 999px;
  padding: 10px 14px; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(21,21,25,.18);
}
.ugov-fab:hover { background: var(--gold-deep); }
.ugov-dock {
  position: relative; right: auto; bottom: auto;
  width: 100%;
  max-height: calc(100% - 48px);
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column; min-height: 0;
}
body[data-page="home"] .ugov-dock { max-height: calc(100% - 48px); }
.ugov-dock[hidden] { display: none !important; }
.ugov-dock .ugov-top {
  padding: 10px 36px 10px 12px; flex-wrap: nowrap; position: relative; align-items: center;
  flex: 0 0 auto;
}
.ugov-dock .chat-brand { min-width: 0; flex: 1; }
.ugov-dock .chat-brand strong { font-size: 14px; }
.ugov-dock .chat-brand small { font-size: 10px; }
.ugov-dock-x {
  position: absolute; top: 8px; right: 8px;
  background: none; border: 0; color: #fff; font-size: 20px; line-height: 1; padding: 0 6px;
}
.ugov-dock .ugov-thread {
  flex: 1 1 auto; min-height: 0; max-height: none;
  overflow: auto; padding: 10px 12px;
}
.ugov-dock .ask-chips {
  flex: 0 0 auto; flex-wrap: nowrap; overflow-x: auto; gap: 6px;
  padding: 0 10px 8px; scrollbar-width: none;
}
.ugov-dock .ask-chips button {
  flex: 0 0 auto; white-space: nowrap; font-size: 11px; padding: 6px 10px;
}
.ugov-dock .ugov-input {
  flex: 0 0 auto; padding: 8px 10px 10px;
  display: flex; flex-wrap: nowrap; align-items: center; gap: 8px;
}
.ugov-dock .ugov-input input {
  width: auto; flex: 1 1 auto; min-width: 0;
}
.ugov-dock .ugov-input .btn-gold {
  flex: 0 0 auto; width: auto; padding: 10px 14px;
}
.ugov-dock .ugov-msg { font-size: 13px; padding: 8px 10px; max-width: 92%; }
.ugov-msg a.chat-wa { margin-top: 10px; }
body[data-page="engagement"] #ugov-widget { display: none; }
@media (max-width: 720px) {
  #ugov-widget, body[data-page="home"] #ugov-widget {
    left: 8px; right: 8px; bottom: 8px; width: auto;
  }
  body[data-page="home"] #ugov-widget { bottom: 56px; }
  .ugov-dock, body[data-page="home"] .ugov-dock {
    width: 100%;
    max-height: calc(100% - 48px);
    border-radius: 14px;
  }
  .ugov-fab { align-self: flex-end; }
  body.ugov-open { overflow: hidden; }
}

@media (max-width: 860px) {
  .yt-card { grid-template-columns: 1fr; }
  .yt-frame { min-height: 220px; aspect-ratio: 16/9; }
  .strip-notify { margin-left: 0; }
}

/* —— Languages Desk —— */
.lang-strip { background: #111114; color: #fff; font-size: 13px; font-weight: 600; }
.lang-strip .wrap { display: flex; align-items: center; gap: 14px; min-height: 42px; flex-wrap: wrap; }
.lang-strip-count { color: var(--gold); letter-spacing: .04em; }
.lang-strip-count b { font-family: var(--display); font-size: 22px; font-weight: 400; margin-right: 6px; }
.xlate-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow);
}
.xlate-top {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center;
  background: #111114; color: #fff; padding: 14px 18px;
}
.xlate-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; padding: 18px; align-items: start;
}
.xlate-bar select { border-radius: 999px; font-weight: 700; }
.xlate-grid textarea, .xlate-out {
  min-height: 180px; width: 100%; margin-top: 10px; border: 1px solid var(--line);
  border-radius: 16px; padding: 14px; background: var(--cream); font-size: 16px;
}
.xlate-out { white-space: pre-wrap; color: var(--ink); }
.xlate-swap {
  width: 48px; height: 48px; border-radius: 50%; border: 0; margin-top: 42px;
  background: var(--gold); color: #111; font-size: 20px; font-weight: 800;
}
.xlate-actions {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 0 18px 18px;
}
.lang-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.lang-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 14px 16px; text-align: left;
}
.lang-tile small {
  display: block; color: var(--red); font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.lang-tile strong { display: block; margin: 6px 0 2px; font-size: 16px; }
.lang-tile span { color: var(--muted); font-size: 13px; }
.lang-tile:hover, .lang-tile.on { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.proverb-card {
  background: #111114; color: #fff; border-radius: 22px; padding: 28px;
  border-top: 4px solid var(--gold);
}
.proverb-card .kicker-off { color: var(--red); }
.proverb-card q {
  font-family: var(--display); font-size: clamp(22px, 3.4vw, 36px);
  letter-spacing: -.03em; display: block; margin: 10px 0 12px;
}
.proverb-card p { color: rgba(255,255,255,.7); }

@media (max-width: 1024px) {
  .lang-mosaic { grid-template-columns: 1fr 1fr; }
  .xlate-grid { grid-template-columns: 1fr; }
  .xlate-swap { margin: 0 auto; transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .lang-mosaic { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .brief-card { grid-template-columns: 1fr; }
  .brief-art, .brief-art img { min-height: 240px; }
  .studio-grid { grid-template-columns: 1fr; }
  .pod-dock .inner { grid-template-columns: auto 1fr auto auto; }
  .play-xl { width: 72px; height: 72px; font-size: 26px; }
}
@media (max-width: 640px) {
  .pod-dock .inner { grid-template-columns: 1fr auto auto; }
  .pod-dock img { display: none; }
  .brief-copy { padding: 20px 18px 22px; }
  .ep-admin { grid-template-columns: 1fr; }
}

/* —— About / History / Team —— */
.about-hero {
  position: relative; min-height: min(78vh, 720px); color: #fff;
  display: grid; align-items: end; overflow: hidden;
}
.about-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 18%;
}
.about-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.15) 0%, rgba(10,10,12,.55) 45%, rgba(10,10,12,.88) 100%);
}
.about-hero-copy { position: relative; z-index: 1; padding: 72px 0 56px; }
.about-hero h1 {
  color: #fff; font-family: var(--display); font-weight: 400;
  font-size: clamp(44px, 8vw, 88px); letter-spacing: -.045em; line-height: .92; max-width: 12ch;
}
.about-hero .lede {
  color: #fff; max-width: 46ch; font-size: 19px; font-weight: 500;
  text-shadow: 0 1px 2px #000, 0 6px 24px #000;
}
.about-hero .kicker-off { color: var(--gold); }
.quote-band {
  background: #111114; color: #fff; padding: 56px 0;
  border-top: 4px solid var(--gold);
  text-align: center;
}
.quote-band .wrap {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: min(1100px, 92vw);
  margin-inline: auto;
}
.quote-band .kicker-off { color: var(--gold); margin: 0; }
.quote-band blockquote {
  font-family: var(--display); font-size: clamp(22px, 3.8vw, 40px);
  letter-spacing: -.03em; line-height: 1.2;
  max-width: none; width: 100%;
  margin: 14px 0 18px;
  text-align: center;
}
.quote-band p { color: rgba(255,255,255,.6); margin: 0; }
.year-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.year-rail article {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 18px 22px;
  border-top: 5px solid #111;
}
.year-rail article:nth-child(2) { border-top-color: var(--gold); }
.year-rail article:nth-child(3) { border-top-color: var(--red); }
.year-rail b { font-family: var(--display); font-size: 28px; font-weight: 400; }
.year-rail h3 { margin: 8px 0 6px; font-size: 18px; }
.year-rail p { color: var(--ink-2); font-size: 14px; }
.day-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.day-grid article {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
.day-grid img { width: 100%; height: 200px; object-fit: cover; }
.day-grid .txt { padding: 14px 16px 16px; }
.day-grid small { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.day-grid h3 { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 4px 0 6px; }
.day-grid p { color: var(--muted); font-size: 13px; }
.charge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.charge-grid article {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 18px;
  min-height: 180px;
}
.charge-grid b { font-family: var(--display); font-size: 32px; font-weight: 400; color: var(--red); }
.charge-grid h3 { margin: 8px 0 8px; font-size: 18px; }
.charge-grid p { color: var(--ink-2); font-size: 14px; }

.pearl-hero {
  position: relative; min-height: 520px; color: #fff; display: grid; align-items: end;
  overflow: hidden;
}
.pearl-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pearl-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.72) 100%);
}
.pearl-cap { position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 48px 0; }
.pearl-cap h2 {
  font-family: var(--display); font-weight: 400; font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -.04em; line-height: .95; margin: 6px 0 12px;
}
.pearl-cap .kicker-off { color: var(--gold); }
.pearl-cap p { max-width: 54ch; color: rgba(255,255,255,.88); }
.pearl-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 10px;
}
.pearl-grid figure {
  margin: 0; position: relative; overflow: hidden; border-radius: 16px; background: #111;
}
.pearl-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pearl-grid .tall { grid-row: span 2; }
.pearl-grid .wide { grid-column: span 2; }
.pearl-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  color: #fff; font-size: 13px;
}
.pearl-grid figcaption b { display: block; font-size: 15px; margin-bottom: 2px; }
.symbols { background: #111114; color: #fff; padding: 36px 0; }
.sym-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sym-grid b { display: block; color: var(--gold); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.sym-grid p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.45; }
.mission-gold { background: var(--gold); border-color: var(--gold); }
.mission-gold .kicker-off { color: #111; }
.mission-dark { background: #111114; color: #fff; border-color: #111; }
.mission-dark .kicker-off { color: var(--gold); }
.mission-dark p { color: rgba(255,255,255,.78); }
.do-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.do-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 16px 20px;
  min-height: 180px; display: flex; flex-direction: column;
}
.do-card b { font-family: var(--display); font-size: 28px; font-weight: 400; color: var(--red); }
.do-card h3 { font-size: 16px; margin: 8px 0 6px; }
.do-card p { color: var(--ink-2); font-size: 13px; line-height: 1.45; }
.do-card:hover { border-color: var(--ink); }
.desk-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.desk-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px;
  min-height: 150px; display: flex; flex-direction: column;
}
.desk-card small {
  color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.desk-card h3 { font-family: var(--display); font-weight: 400; font-size: 20px; margin: 8px 0 6px; letter-spacing: -.02em; }
.desk-card p { color: var(--muted); font-size: 13px; }
.desk-card:hover { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.where-card {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
}
.where-card > div { padding: 28px; }
.where-card aside { background: #111114; color: #fff; padding: 28px; }
.where-card aside .kicker-off { color: var(--gold); }
.where-card aside p { color: rgba(255,255,255,.75); }
.where-list { margin: 16px 0 0; }
.where-list li { padding: 6px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.where-list a { font-weight: 600; }

.impress-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.impress {
  margin: 0; background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
}
.impress img { width: 100%; height: 220px; object-fit: cover; }
.impress.wide { grid-column: span 2; }
.impress.wide img { height: 280px; }
.impress figcaption { padding: 12px 14px 14px; font-size: 13px; color: var(--ink-2); }
.impress figcaption b { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }

.hist-book { background: var(--cream); }
.hist-book-grid {
  display: grid; grid-template-columns: 220px 1fr; gap: 0 32px; align-items: start;
}
.hist-book .t-nav { position: sticky; top: 88px; padding: 72px 0; }
.hist-book .t-nav .kicker-off { margin-bottom: 10px; }
.hist-book .t-nav button {
  display: grid; grid-template-columns: 78px 1fr; gap: 10px; align-items: baseline;
  width: 100%; text-align: left; background: none; border: 0;
  border-left: 2px solid var(--line); padding: 10px 0 10px 14px;
  color: var(--muted); font-family: var(--display); font-size: 15px; font-weight: 500;
}
.hist-book .t-nav .yr {
  font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.hist-book .t-nav button.active { border-left-color: var(--red); color: var(--ink); }
.hist-book .t-nav button.active .yr { color: var(--ink); }
.era {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start;
  padding: 80px 40px; scroll-margin-top: 72px; position: relative;
}
.era.dark { background: #0A0A0B; color: #fafaf7; }
.era-bar { position: absolute; left: 0; right: 0; top: 0; height: 3px; }
.era-copy { position: sticky; top: 96px; }
.era .num {
  width: auto; height: auto; border-radius: 0; background: none;
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(72px, 12vw, 160px); line-height: .82; letter-spacing: -.06em;
  margin: 12px 0 0; color: #16161a;
}
.era.dark .num { color: #fcdc04; }
.era.dark .kicker-off { color: #fcdc04; }
.era h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -.03em; line-height: .95;
  margin: 18px 0 14px;
}
.era-copy p { color: var(--ink-2); font-size: 18px; line-height: 1.55; max-width: 36ch; }
.era.dark .era-copy p { color: rgba(250,250,247,.8); }
.flag-rule.mini { width: 96px; height: 2px; margin: 20px 0 0; }
.hist-frame {
  position: relative; margin: 0 0 36px; aspect-ratio: 4 / 5;
  background: #fff; overflow: visible;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.era.dark .hist-frame { box-shadow: 0 0 0 1px rgba(255,255,255,.12); background: #111; }
.hist-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hist-frame:not(.photo) img { object-fit: fill; }
.hist-frame .c {
  position: absolute; width: 18px; height: 18px; z-index: 2;
  border-color: #16161a; border-style: solid;
}
.era.dark .hist-frame .c { border-color: #fcdc04; }
.hist-frame .c.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.hist-frame .c.tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.hist-frame .c.bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.hist-frame .c.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
.hist-frame figcaption {
  position: absolute; left: 0; right: 0; top: calc(100% + 12px);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.era.dark .hist-frame figcaption { color: rgba(250,250,247,.5); }
.era { padding-bottom: 108px; }
.end-record {
  background: #111114; color: #fff; padding: 56px 0 64px;
  border-top: 4px solid var(--gold);
}
.end-record .kicker-off { color: var(--gold); }
.end-record h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 5vw, 56px); letter-spacing: -.03em; margin-top: 8px;
}
.fact-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 8px; }
.fact-row span {
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: #111; color: #fff; border-radius: 999px; padding: 6px 10px;
}
.fact-row span:nth-child(2n) { background: var(--gold); color: #111; }
.fact-row span:nth-child(3n) { background: var(--red); color: #fff; }
.plate-fig { margin: 18px 0 0; }
.plate-fig img { width: 100%; max-height: 380px; object-fit: cover; border-radius: 12px; }
.plate-fig figcaption { font-size: 12px; color: var(--muted); margin-top: 8px; }
.hist-quote {
  font-family: var(--display); font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: -.02em; color: var(--ink); margin: 18px 0 8px;
  border-left: 4px solid var(--gold); padding-left: 14px;
}

.team-tools { margin: 8px 0 18px; }
body[data-page="team"] .team-tools {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin: 8px 0 22px;
}
body[data-page="team"] [data-team-search] {
  flex: 1 1 220px; max-width: 320px;
  border-radius: 999px;
}
body[data-page="team"] .avatar-plate {
  position: absolute; inset: 0;
}
.person { display: flex; flex-direction: column; }
.person[hidden] { display: none !important; }

/* Team page — official mediacentre.go.ug/about/team layout */
body[data-page="team"] {
  --editorial: var(--serif);
}
body[data-page="team"] .section.reveal,
body[data-page="team"] .page-hero.reveal,
body[data-page="team"] .person.reveal {
  opacity: 1;
  transform: none;
}
body[data-page="press"] .section.reveal,
body[data-page="press"] .page-hero.reveal,
body[data-page="press"] .press-row.reveal {
  opacity: 1;
  transform: none;
}
body[data-page="engagement"] .section.reveal,
body[data-page="engagement"] .page-hero.reveal {
  opacity: 1;
  transform: none;
}
body[data-page="team"] .page-hero { padding: 56px 0 32px; }
body[data-page="team"] .page-hero h1 {
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -.03em;
  line-height: 1.05;
  max-width: none;
}
body[data-page="team"] .lede {
  font-family: var(--editorial);
  font-size: 18px;
  line-height: 1.7;
  max-width: 36em;
  color: #6b6b75;
  margin-top: 20px;
}
body[data-page="team"] .team-ed-sec { padding-top: 0; padding-bottom: 56px; }
body[data-page="team"] #roster { padding-top: 8px; padding-bottom: 96px; }
body[data-page="team"] .section-head { align-items: flex-end; margin-bottom: 12px; }
body[data-page="team"] .section-head h2 {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -.03em;
  margin-top: 8px;
}
body[data-page="team"] .team-count-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

body[data-page="team"] .ed {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fafaf7;
  box-shadow: 0 20px 50px rgba(10, 10, 11, .08);
}
body[data-page="team"] .ed-flag {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
body[data-page="team"] .ed-flag span { flex: 1; }
body[data-page="team"] .ed-flag span:nth-child(1) { background: #0A0A0B; }
body[data-page="team"] .ed-flag span:nth-child(2) { background: #FCDC04; }
body[data-page="team"] .ed-flag span:nth-child(3) { background: #D90000; }
body[data-page="team"] .ed-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding-left: 6px;
}
body[data-page="team"] .ed-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  background: #ecece8;
}
body[data-page="team"] .ed-photo::before { display: none; }
body[data-page="team"] .ed-photo img,
body[data-page="team"] .ed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  min-height: 0;
}
body[data-page="team"] .ed .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 32px;
  text-align: center;
}
body[data-page="team"] .ed .role {
  color: #D90000;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
body[data-page="team"] .ed .role::before { content: none; }
body[data-page="team"] .ed h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 48px);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-top: 12px;
  color: #0A0A0B;
}
body[data-page="team"] .ed .sub {
  font-family: var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(10, 10, 11, .6);
  margin: 8px 0 0;
}
body[data-page="team"] .ed .prose {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.7;
  max-width: 36em;
  margin: 24px auto 0;
  color: rgba(10, 10, 11, .85);
}

body[data-page="team"] .team-grid,
body[data-page="team"] .team-grid-bios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
body[data-page="team"] .person {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(10, 10, 11, .04);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
body[data-page="team"] .person:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 10, 11, .1), 0 0 0 1px rgba(252, 220, 4, .5);
}
body[data-page="team"] .person:hover img { transform: none; }
body[data-page="team"] .person-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ecece8;
}
body[data-page="team"] .person-photo img,
body[data-page="team"] .person img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
body[data-page="team"] .avatar-plate {
  display: grid;
  place-items: center;
  background: #fafaf7;
}
body[data-page="team"] .avatar-plate > span {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: rgba(10, 10, 11, .8);
}
body[data-page="team"] .avatar-flag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  display: flex;
}
body[data-page="team"] .avatar-flag span { flex: 1; }
body[data-page="team"] .avatar-flag span:nth-child(1) { background: #0A0A0B; }
body[data-page="team"] .avatar-flag span:nth-child(2) { background: #FCDC04; }
body[data-page="team"] .avatar-flag span:nth-child(3) { background: #D90000; }
body[data-page="team"] .person .txt {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  flex: 1;
}
body[data-page="team"] .person h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--ink);
}
body[data-page="team"] .person .job,
body[data-page="team"] .person .desk {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}
body[data-page="team"] .person .job { margin-top: 4px; }
body[data-page="team"] .person .desk { color: rgba(107, 107, 117, .72); }
body[data-page="team"] .person .bio {
  font-family: var(--editorial);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(21, 21, 25, .8);
  margin-top: 12px;
}
body[data-page="team"] .person .badge { display: none; }

@media (min-width: 640px) {
  body[data-page="team"] .team-grid,
  body[data-page="team"] .team-grid-bios {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  body[data-page="team"] .ed-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  body[data-page="team"] .ed-photo {
    aspect-ratio: auto;
    min-height: 520px;
    height: 100%;
  }
  body[data-page="team"] .ed .txt {
    padding: 48px;
    text-align: left;
  }
  body[data-page="team"] .ed .prose { margin-left: 0; margin-right: 0; }
}
@media (min-width: 1024px) {
  body[data-page="team"] .team-grid,
  body[data-page="team"] .team-grid-bios {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  body[data-page="team"] .team-count-label { display: none; }
  body[data-page="team"] .page-hero { padding: 36px 0 24px; }
}

/* Accreditation */
body[data-page="accreditation"] .acc-hero { padding-bottom: 48px; }
body[data-page="accreditation"] .page-hero h1 { max-width: 12ch; }
.acc-elig {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start;
}
.acc-elig-grid {
  display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: #fff;
}
.acc-elig-grid article {
  display: flex; gap: 12px; align-items: center;
  padding: 20px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.acc-elig-grid article:nth-child(2n) { border-right: 0; }
.acc-elig-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.acc-elig-grid b { font-weight: 600; font-size: 15px; }
.acc-ico {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: #f3f3ee url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23151519' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h10M4 9h10M4 13h6'/%3E%3C/svg%3E") center no-repeat;
}
.acc-ico-user { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23151519' stroke-width='1.6' stroke-linecap='round'%3E%3Ccircle cx='9' cy='6' r='3'/%3E%3Cpath d='M3 15c1.4-3 10.6-3 12 0'/%3E%3C/svg%3E"); }
.acc-ico-cam { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23151519' stroke-width='1.6' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='14' height='9' rx='2'/%3E%3Cpath d='M6 6 7.5 3h3L12 6'/%3E%3Ccircle cx='9' cy='10.5' r='2.2'/%3E%3C/svg%3E"); }
.acc-ico-globe { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23151519' stroke-width='1.6'%3E%3Ccircle cx='9' cy='9' r='6.5'/%3E%3Cpath d='M2.5 9h13M9 2.5c2 2.4 2 10.6 0 13M9 2.5c-2 2.4-2 10.6 0 13'/%3E%3C/svg%3E"); }
.acc-ico-play { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23151519' stroke-width='1.6' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='9' r='6.5'/%3E%3Cpath d='m7.5 6 5 3-5 3z' fill='%23151519' stroke='none'/%3E%3C/svg%3E"); }
.acc-ico-pen { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23151519' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M12 3.5 14.5 6 7 13.5H4.5V11z'/%3E%3Cpath d='M10.5 5 13 7.5'/%3E%3C/svg%3E"); }

.acc-req-sec { background: #fff; border-block: 1px solid var(--line); }
.acc-req-head {
  display: flex; justify-content: space-between; gap: 24px; align-items: end; flex-wrap: wrap;
  margin-bottom: 28px;
}
.acc-req-head .off-h2 { font-size: clamp(32px, 4.5vw, 48px); }
.acc-tabs {
  display: flex; background: #f3f3ee; border-radius: 999px; padding: 4px;
}
.acc-tabs button {
  border: 0; background: transparent; border-radius: 999px;
  padding: 10px 16px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.acc-tabs button[aria-selected="true"] { background: #111; color: #fff; }
.acc-path[hidden] { display: none !important; }
.acc-path-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; align-items: start; }
.acc-check-card, .acc-fee-card {
  border-radius: 16px; padding: 22px 24px;
}
.acc-check-card { background: var(--cream); border: 1px solid var(--line); }
.acc-check-card ul { list-style: none; padding: 0; margin-top: 12px; }
.acc-check-card li {
  position: relative; padding: 8px 0 8px 28px; color: var(--ink-2); font-size: 15px; line-height: 1.45;
  border-bottom: 1px solid var(--line);
}
.acc-check-card li:last-child { border-bottom: 0; }
.acc-check-card li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--gold); background: radial-gradient(circle at 50% 50%, var(--gold) 0 4px, transparent 5px);
}
.acc-mini {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--muted);
}
.acc-mini-gold { color: var(--gold); }
.acc-fee-card { background: #111114; color: #fff; }
.acc-fee-card p { color: rgba(255,255,255,.82); line-height: 1.55; margin-top: 10px; }
.acc-fee-card a { color: var(--gold); text-decoration: underline; }
.acc-source { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4) !important; margin-top: 18px !important; }
.acc-fees { list-style: none; padding: 0; margin-top: 12px; }
.acc-fees li {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.8); font-size: 14px;
}
.acc-fees b { color: var(--gold); font-family: var(--display); font-size: 22px; font-weight: 500; }
.acc-extra { margin-top: 22px; }
.acc-extra-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 12px; }
.acc-extra-grid article {
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
}
.acc-extra-grid h3 { font-family: var(--display); font-weight: 500; font-size: 18px; margin-bottom: 8px; }
.acc-extra-grid p { color: var(--ink-2); font-size: 14px; }

.acc-proc { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; }
.acc-proc .off-h2 { font-size: clamp(32px, 4.5vw, 52px); max-width: 12ch; }
.acc-turnaround {
  margin-top: 18px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--muted);
}
.acc-steps { list-style: none; padding: 0; }
.acc-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 22px; position: relative; }
.acc-steps li:not(:last-child)::before {
  content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--line);
}
.acc-steps span {
  width: 48px; height: 48px; border-radius: 50%; background: #111; color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-size: 14px; font-weight: 600;
}
.acc-steps li:nth-child(5) span { background: var(--gold); color: #111; }
.acc-steps h3 { font-family: var(--display); font-weight: 500; font-size: 22px; margin-bottom: 4px; }
.acc-steps p { color: var(--ink-2); }
.acc-steps a { text-decoration: underline; }

.acc-apply-sec { background: #fff; border-block: 1px solid var(--line); }
.acc-apply { display: grid; grid-template-columns: .75fr 1.25fr; gap: 36px; align-items: start; }
.acc-apply .off-h2 { font-size: clamp(32px, 4.5vw, 48px); max-width: 10ch; }
.acc-wiz {
  background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 22px;
}
.acc-form-section { padding: 18px 0; border-bottom: 1px solid var(--line); }
.acc-form-section:first-child { padding-top: 0; }
.acc-form-section h3 { font-family: var(--display); font-size: 20px; font-weight: 500; margin: 0 0 6px; }
.acc-upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.acc-file {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}
.acc-file:hover { border-color: var(--gold); }
.acc-file:has(input:focus) { border-color: #111; box-shadow: 0 0 0 1px #111; }
.acc-file.has-file { border-color: #111; }
.acc-file input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%; padding: 0; border: 0; margin: 0;
}
.acc-file-copy { flex: 1; display: grid; gap: 4px; min-width: 0; }
.acc-file-copy b { font-family: var(--display); font-weight: 500; font-size: 16px; line-height: 1.2; }
.acc-file.is-required b::after { content: " *"; color: var(--red); font-family: var(--sans); }
.acc-file-copy small { color: var(--muted); font-size: 12px; font-weight: 400; }
.acc-file-name {
  font-size: 12px; color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.acc-file.has-file .acc-file-name { color: var(--ink); font-weight: 600; }
.acc-file-btn {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--cream); color: var(--ink);
  pointer-events: none;
}
.acc-file:hover .acc-file-btn { background: var(--gold); border-color: var(--gold); color: #111; }
.acc-form.foreign .local-only { display: none; }
.acc-form:not(.foreign) .foreign-only { display: none; }
.acc-errors {
  background: #fff0f0; border: 1px solid #f0b5b5; color: #8a1b1b;
  padding: 14px 16px; border-radius: 10px; margin-bottom: 8px;
}
.acc-errors ul { margin: 8px 0 0; padding-left: 18px; }
.acc-consent {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px;
  font-weight: 400;
}
.acc-consent input { width: auto; margin-top: 3px; }
.acc-statusbox {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px;
}
.acc-statusbox h3 { font-family: var(--display); margin: 6px 0 10px; }
.acc-success-card h3 { font-family: var(--display); font-size: 28px; font-weight: 500; margin: 8px 0; }
.acc-wiz-rail {
  display: flex; gap: 0; margin-bottom: 20px; list-style: none; padding: 0;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--muted);
}
.acc-wiz-rail li {
  flex: 1; display: flex; align-items: center; gap: 8px; position: relative;
}
.acc-wiz-rail li:not(:last-child)::after {
  content: ""; flex: 1; height: 1px; background: var(--line); margin: 0 8px;
}
.acc-wiz-rail i {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; font-style: normal; letter-spacing: 0;
}
.acc-wiz-rail .on { color: var(--ink); }
.acc-wiz-rail .on i { background: #111; color: #fff; border-color: #111; }
.acc-wiz-pane[hidden] { display: none !important; }
.acc-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.acc-choice-card {
  position: relative; display: grid; gap: 6px;
  padding: 18px 48px 18px 18px;
  border-radius: 14px; border: 1px solid var(--line); background: #fff;
  cursor: pointer; user-select: none;
}
.acc-choice-card:hover { border-color: var(--gold); }
.acc-choice .acc-choice-card:has(input:checked),
.acc-choice .acc-choice-card.is-selected,
.acc-choice .acc-choice-card.is-selected:hover,
.acc-choice .acc-choice-card:has(input:checked):hover {
  border: 5px solid var(--gold) !important;
  background: #fffdf2;
  box-shadow: none;
}
.acc-choice-card input[type="radio"] {
  position: absolute; inset: 0;
  opacity: 0; width: 100%; height: 100%;
  margin: 0; padding: 0; border: 0;
  cursor: pointer; z-index: 2;
}
.acc-choice-mark {
  position: absolute; top: 16px; right: 16px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff;
  z-index: 1; pointer-events: none;
}
.acc-choice-mark::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 6px; height: 11px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .12s var(--ease);
}
.acc-choice-card:has(input:checked) .acc-choice-mark,
.acc-choice-card.is-selected .acc-choice-mark {
  border-color: var(--gold);
  background: var(--gold);
}
.acc-choice-card:has(input:checked) .acc-choice-mark::after,
.acc-choice-card.is-selected .acc-choice-mark::after {
  transform: rotate(45deg) scale(1);
}
.acc-choice-card b { font-family: var(--display); font-weight: 500; font-size: 20px; line-height: 1.2; }
.acc-choice-card p { color: var(--ink-2); font-size: 14px; font-weight: 400; }
.acc-wiz .form-row p { margin: 0; display: grid; gap: 6px; }
.acc-wiz textarea { min-height: 90px; }
.acc-docs { display: grid; gap: 8px; margin: 12px 0 16px; }
.acc-docs[hidden] { display: none !important; }
.acc-docs label {
  display: flex; gap: 10px; align-items: center; font-weight: 500;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px;
}
.acc-docs input { width: auto; }
.acc-review { display: grid; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-bottom: 14px; }
.acc-review div { display: grid; grid-template-columns: 140px 1fr; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.acc-review div:last-child { border-bottom: 0; }
.acc-review small { color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-size: 10px; font-weight: 700; padding-top: 4px; }
.acc-wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.acc-wiz-nav [hidden],
.acc-success[hidden],
.acc-path[hidden],
.acc-docs[hidden] { display: none !important; }
.acc-success { padding: 8px 4px 4px; }
.acc-success h3 { font-family: var(--display); font-size: 28px; font-weight: 500; margin: 8px 0; }
.acc-success[hidden] { display: none !important; }

.acc-track { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.acc-track .off-h2 { font-size: clamp(32px, 4.5vw, 48px); max-width: 10ch; }
.acc-track-form { display: grid; gap: 12px; }
.acc-track-form p { margin: 0; display: grid; gap: 6px; }

.acc-dark { background: #0a0a0c; color: #fff; padding: 64px 0; }
.acc-dark .kicker-off { color: rgba(255,255,255,.5); }
.acc-dark h2 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.acc-dark > .wrap > p, .acc-dark-grid > div > p { color: rgba(255,255,255,.72); max-width: 48ch; }
.acc-dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.acc-bank { margin-top: 22px; }
.acc-bank div {
  display: grid; grid-template-columns: 140px 1fr; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.acc-bank dt { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.acc-bank dd { color: var(--gold); font-family: var(--display); font-size: 18px; font-weight: 500; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.acc-copy {
  border: 1px solid rgba(252, 220, 4, .35); background: transparent; color: var(--gold);
  border-radius: 999px; padding: 4px 10px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.acc-copy:hover { background: var(--gold); color: #111; }
.acc-people { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.acc-people article {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 16px;
}
.acc-people .acc-mini { color: rgba(255,255,255,.45); }
.acc-people h3 { font-family: var(--display); font-weight: 500; font-size: 18px; margin: 6px 0 8px; }
.acc-people p, .acc-people a { color: rgba(255,255,255,.75); font-size: 14px; }

.acc-notice {
  position: relative; background: #fff6d6; border-radius: 16px; padding: 22px 24px 22px 28px;
  overflow: hidden;
}
.acc-notice::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, #000 0 33.3%, var(--flag-y) 33.3% 66.6%, var(--flag-r) 66.6%);
}
.acc-notice h3 { font-family: var(--display); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.acc-notice p { color: var(--ink-2); }

@media (max-width: 1024px) {
  .acc-elig, .acc-path-grid, .acc-proc, .acc-apply, .acc-track, .acc-dark-grid { grid-template-columns: 1fr; }
  .acc-extra-grid, .acc-people { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .acc-elig-grid, .acc-choice, .acc-extra-grid, .acc-people, .acc-upload-grid { grid-template-columns: 1fr; }
  .acc-file { flex-wrap: wrap; }
  .acc-elig-grid article { border-right: 0; }
  .acc-elig-grid article:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .acc-elig-grid article:last-child { border-bottom: 0; }
  .acc-wiz-rail { flex-wrap: wrap; gap: 8px; }
  .acc-wiz-rail li:not(:last-child)::after { display: none; }
  .acc-review div, .acc-bank div { grid-template-columns: 1fr; gap: 4px; }
  .acc-wiz-nav .btn-gold, .acc-wiz-nav .btn-outline { width: auto; }
  body[data-page="accreditation"] .hero-actions a { width: 100%; }
}

@media (max-width: 1024px) {
  .about-split, .where-card, .do-grid, .desk-grid, .year-rail, .day-grid, .charge-grid, .sym-grid { grid-template-columns: 1fr 1fr; }
  .impress-grid, .team-grid-bios { grid-template-columns: 1fr 1fr; }
  .impress.wide { grid-column: span 2; }
  .hist-hero-grid { grid-template-columns: 1fr; padding: 64px 0 36px; }
  .hist-meta { justify-content: flex-start; }
  .hist-book-grid { grid-template-columns: 180px 1fr; }
  .era { grid-template-columns: 1fr; padding: 56px 24px 80px; }
  .era-copy { position: static; }
  .pearl-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
}
@media (max-width: 860px) {
  .about-split, .where-card { grid-template-columns: 1fr; }
  .about-photo, .about-photo img { min-height: 280px; }
  .do-grid, .desk-grid { grid-template-columns: 1fr 1fr; }
  .hist-book-grid { grid-template-columns: 1fr; }
  .hist-book .t-nav {
    position: sticky; top: 56px; z-index: 5; display: flex; gap: 0;
    overflow-x: auto; padding: 10px 0; background: var(--cream);
  }
  .hist-book .t-nav button {
    display: flex; flex: 0 0 auto; width: auto; white-space: nowrap; border-left: 0;
    border-bottom: 2px solid var(--line); padding: 8px 12px; gap: 8px;
  }
  .hist-book .t-nav button.active { border-bottom-color: var(--red); }
  .hist-hero { min-height: 480px; }
  .about-hero { min-height: 70vh; }
  .about-hero-copy { padding: 48px 0 40px; }
  .hist-book .t-nav { top: 62px; }
}
@media (max-width: 640px) {
  .do-grid, .desk-grid, .impress-grid, .team-grid-bios, .year-rail, .day-grid, .charge-grid, .sym-grid { grid-template-columns: 1fr; }
  .impress.wide { grid-column: auto; }
  .impress img, .impress.wide img { height: 200px; }
  .hist-hero .lede { color: #fff; max-width: 32ch; font-size: 17px; }
  .hist-aside { padding-bottom: 12px; }
  .era { padding: 40px 0 72px; }
  .pearl-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .pearl-grid .tall, .pearl-grid .wide { grid-row: auto; grid-column: auto; }
  .pearl-hero { min-height: 420px; }
}

/* Radio page */
.radio-hero {
  background: #0a0a0c; color: #fff; padding: 48px 0 56px; position: relative; overflow: hidden;
}
.radio-hero .arms {
  position: absolute; inset: auto -8% -30% auto; width: min(720px, 70vw); opacity: .18;
  pointer-events: none; mix-blend-mode: luminosity;
}
.radio-hero .wrap { position: relative; z-index: 1; }
.radio-hero .kicker-off { color: var(--gold); }
.radio-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 7vw, 80px); letter-spacing: -.04em; line-height: .95; max-width: 14ch;
}
.radio-hero .lede { color: rgba(255,255,255,.88); max-width: 46ch; margin: 16px 0 28px; }
.radio-player {
  display: grid; grid-template-columns: 280px 1fr; gap: 0;
  background: rgba(10,10,12,.72); border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px; overflow: hidden; backdrop-filter: blur(16px);
}
.radio-art { position: relative; min-height: 280px; background: #111; }
.radio-art img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.radio-player.is-off .radio-art img { filter: grayscale(.4) brightness(.7); }
.radio-player.is-live .onair { background: var(--red); color: #fff; }
.radio-player.is-off .onair i { background: #888; box-shadow: none; animation: none; }
.radio-art .onair { z-index: 2; }
.radio-art .play-xl {
  position: absolute; left: 50%; top: 58%; transform: translate(-50%,-50%); z-index: 2;
}
.radio-art .play-xl:hover { transform: translate(-50%,-50%) scale(1.06); }
.radio-now { padding: 28px 28px 24px; }
.radio-now h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -.03em; margin: 6px 0 10px;
}
.radio-now .lede { color: rgba(255,255,255,.72); margin: 0; }
.radio-now .live-meta { color: rgba(255,255,255,.55); }
.radio-now .eq { margin: 14px 0; }
.radio-choose {
  margin: 18px 0 8px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.45);
}
.radio-hero .stream-pills button {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.2);
}
.radio-hero .stream-pills button.on { background: var(--gold); color: #111; border-color: var(--gold); }
.vol-wrap {
  display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.radio-hero .live-actions .btn-ghost { color: #fff; }

.radio-up {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.radio-up-card {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px;
  cursor: pointer; text-align: left;
}
.radio-up-card img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.radio-up-card small { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.radio-up-card h3 { font-family: var(--display); font-weight: 500; font-size: 16px; margin: 2px 0 4px; }
.radio-up-card p { color: var(--muted); font-size: 13px; }
.radio-up-card:hover { border-color: var(--ink); }

.radio-sked-sec { background: #fff; border-block: 1px solid var(--line); }
.radio-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-filters select {
  width: auto; border-radius: 999px; padding: 10px 14px; font-size: 13px; font-weight: 700;
}
.radio-sked { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.radio-sked-row {
  display: grid; grid-template-columns: 72px 52px 1fr auto; gap: 14px; align-items: center;
  width: 100%; text-align: left; background: #fff; border: 0; border-bottom: 1px solid var(--line);
  padding: 14px 16px; color: inherit;
}
.radio-sked-row:last-child { border-bottom: 0; }
.radio-sked-row:hover { background: var(--cream); }
.radio-sked-row time {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700;
}
.radio-sked-row time b { display: block; font-family: var(--display); font-size: 16px; color: var(--ink); font-weight: 500; letter-spacing: 0; text-transform: none; }
.radio-sked-row img { width: 52px; height: 52px; object-fit: cover; border-radius: 10px; }
.radio-sked-row strong { display: block; font-size: 15px; }
.radio-sked-row em { display: block; font-style: normal; color: var(--muted); font-size: 13px; }
.radio-sked-row small {
  display: grid; justify-items: end; gap: 4px; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); font-weight: 700;
}
.radio-sked-row small i {
  font-style: normal; background: #f3f3ee; border-radius: 999px; padding: 3px 8px;
}

.radio-shows { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.radio-show {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
}
.radio-show img { width: 100%; height: 180px; object-fit: cover; object-position: 50% 22%; }
.radio-show h3, .radio-show p, .radio-show .radio-show-meta, .radio-show .radio-show-host, .radio-show-actions {
  padding-left: 16px; padding-right: 16px;
}
.radio-show-meta { margin-top: 12px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.radio-show h3 { font-family: var(--display); font-weight: 500; font-size: 22px; margin: 6px 0 6px; }
.radio-show > p { color: var(--ink-2); font-size: 14px; flex: 1; }
.radio-show-host { color: var(--muted); font-size: 13px; margin: 8px 0; }
.radio-show-actions {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 12px 16px 16px;
}
.radio-show-actions small { color: var(--muted); font-weight: 700; }
.radio-show-actions button {
  border: 0; background: #111; color: #fff; border-radius: 999px;
  padding: 8px 12px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.radio-show-actions button:hover { background: var(--gold); color: #111; }

.radio-arch-sec { background: #fff; border-block: 1px solid var(--line); }
.radio-eps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px;
}
.radio-eps .ep-card { width: auto; }
.ep-blurb { margin-top: 6px !important; }

.radio-hosts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.radio-hosts article {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.radio-hosts img { width: 100%; height: 220px; object-fit: cover; object-position: 50% 22%; }
.radio-hosts h3 { font-family: var(--display); font-weight: 500; font-size: 18px; padding: 12px 14px 0; }
.radio-hosts p { color: var(--muted); font-size: 13px; padding: 4px 14px 16px; }

.radio-talk-sec { background: var(--cream); }
.radio-talk { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; }
.radio-talk .off-h2 { font-size: clamp(28px, 4vw, 44px); max-width: 12ch; }
.radio-talk form { display: grid; gap: 12px; }
.radio-talk form p { margin: 0; display: grid; gap: 6px; }
.radio-talk textarea { min-height: 100px; }

@media (max-width: 1100px) {
  .radio-up, .radio-shows, .radio-eps, .radio-hosts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .radio-player, .radio-talk { grid-template-columns: 1fr; }
  .radio-art, .radio-art img { min-height: 220px; }
  .radio-sked-row { grid-template-columns: 64px 44px 1fr; }
  .radio-sked-row small { display: none; }
}
@media (max-width: 640px) {
  .radio-up, .radio-shows, .radio-eps, .radio-hosts { grid-template-columns: 1fr; }
  .radio-hero { padding: 32px 0 36px; }
  .radio-now { padding: 20px 18px 22px; }
}

/* Homepage — editorial command centre */
body[data-page="home"] {
  --home-serif: var(--serif);
}
body[data-page="home"] .kicker-off { margin-bottom: 8px; }
.home-edition {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #fff;
  margin-top: 8px;
}
.home-edition::before {
  content: ""; display: block; height: 4px;
  background: linear-gradient(90deg, #000 0 33.3%, var(--flag-y) 33.3% 66.6%, var(--flag-r) 66.6%);
}
.home-edition .wrap {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  min-height: 48px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.home-ed-mark {
  color: var(--ink); background: var(--gold); padding: 4px 10px; border-radius: 4px;
  letter-spacing: .12em;
}
.home-edition a {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); letter-spacing: .14em;
}
.home-edition a i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(225, 29, 46, .6); animation: pulse 1.6s infinite;
}
.home-quote {
  padding: 56px 0; background: #fff; border-block: 1px solid var(--line);
}
.home-quote blockquote {
  position: relative;
  font-family: var(--home-serif, "Source Serif 4", Georgia, serif);
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 600; letter-spacing: -.03em;
  line-height: 1.25; max-width: 22ch; margin: 8px 0 16px;
  border-left: 0; padding-left: 22px;
}
.home-quote blockquote::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(#000 0 33.3%, var(--flag-y) 33.3% 66.6%, var(--flag-r) 66.6%);
}
.home-quote cite {
  display: block; font-style: normal; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: var(--muted);
}
.home-pulse { background: #111114; color: #fff; position: relative; }
.home-pulse::before {
  content: ""; display: block; height: 4px;
  background: linear-gradient(90deg, #000 0 33.3%, var(--flag-y) 33.3% 66.6%, var(--flag-r) 66.6%);
}
.home-pulse .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.home-pulse div { padding: 28px 8px; border-right: 1px solid rgba(255,255,255,.1); }
.home-pulse div:last-child { border-right: 0; }
.home-pulse b {
  display: block; font-family: var(--display); font-size: clamp(28px, 4vw, 40px);
  font-weight: 500; color: var(--flag-y); letter-spacing: -.03em;
}
.home-pulse div:nth-child(2) b { color: #fff; }
.home-pulse div:nth-child(3) b { color: var(--flag-y); }
.home-pulse div:nth-child(4) b { color: var(--red); }
.home-pulse span {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700;
}
.home-close { padding: 48px 0 56px; text-align: center; }
.home-close .flag-rule { width: min(220px, 40%); margin: 0 auto 22px; }
.home-close p { color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.home-close b {
  display: block; margin-top: 8px;
  font-family: var(--home-serif, "Source Serif 4", Georgia, serif);
  font-size: clamp(22px, 3vw, 32px); font-weight: 600; letter-spacing: -.02em;
}
body[data-page="home"] .film a {
  box-shadow: 0 22px 50px rgba(21, 21, 25, .12);
}
body[data-page="home"] .mosaic-card,
body[data-page="home"] .news-card,
body[data-page="home"] .newsroom-side,
body[data-page="home"] .tool-chip {
  box-shadow: 0 1px 0 rgba(21, 21, 25, .04);
}
body[data-page="home"] .section { padding: 56px 0; }
body[data-page="home"] .news-card:hover { border-color: var(--flag-y); }
body[data-page="home"] .mosaic-card:hover { border-color: var(--flag-y); }
body[data-page="home"] .explore-card:hover { border-color: var(--flag-y); }
body[data-page="home"] .prog:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.25); }
.text-more {
  font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--ink-2);
}
.text-more:hover { color: var(--ink); }
.today-grid {
  display: grid; grid-template-columns: 1.55fr .9fr; gap: 0;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: #fff;
}
.today-lead {
  position: relative; min-height: 520px; color: #fff; display: block;
}
.today-lead img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.today-lead::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.05) 20%, rgba(10,10,11,.82) 100%);
}
.today-lead-meta {
  position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 1;
}
.today-src {
  display: inline-block; margin-left: 8px; font-family: var(--mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .85;
}
.today-lead h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px); line-height: 1.05;
  letter-spacing: -.03em; margin: 12px 0 20px; max-width: 18ch;
}
.home-events-sec { padding-top: 28px; padding-bottom: 48px; }
.home-events {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.home-event {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.home-event:hover h3 { color: var(--ink); }
.home-event-date {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 76px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 6px;
}
.home-event-day {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.04em;
}
.home-event-month {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.home-event-copy { min-width: 0; }
.home-event-copy h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.28;
  letter-spacing: -.02em;
  margin: 2px 0 8px;
  overflow-wrap: anywhere;
}
.home-event-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
@media (min-width: 860px) {
  .home-events {
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
  }
  .home-event:nth-child(odd) { padding-right: 8px; }
}
@media (max-width: 480px) {
  .home-event { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; }
  .home-event-date { min-height: 64px; }
  .home-event-day { font-size: 24px; }
}

.up-next { background: #fff; padding: 22px 22px 8px; border-left: 1px solid var(--line); }
.up-next a {
  display: grid; grid-template-columns: 64px 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.up-next a:last-child { border-bottom: 0; }
.up-next img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }
.up-next small {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.up-next h3 { font-size: 14px; font-weight: 600; line-height: 1.3; margin: 4px 0; }
.up-next span { font-size: 11px; color: var(--muted); }
.latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.latest-card { display: block; }
.latest-photo { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 16/10; }
.latest-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.latest-card:hover img { transform: scale(1.05); }
.latest-photo .tag { position: absolute; top: 12px; left: 12px; z-index: 1; }
.latest-src {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin: 12px 0 6px;
}
.latest-card h3 {
  font-family: var(--display); font-weight: 500; font-size: 20px;
  line-height: 1.25; letter-spacing: -.02em; margin-bottom: 10px;
}
.read-more {
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
}
.latest-card:hover .read-more { color: var(--flag-r); }
.home-flag-break { height: 5px; }
.feed-h {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px); line-height: .95;
  letter-spacing: -.04em; max-width: 14ch; margin-bottom: 28px;
}
.urg {
  display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; padding: 4px 8px; border-radius: 999px;
  margin-right: 6px;
}
.urg.critical { background: var(--flag-r); color: #fff; }
.urg.important { background: var(--flag-y); color: #111; }
.urg.standard { background: #ecece6; color: var(--ink); }
.feed-tools {
  display: flex; flex-wrap: wrap; gap: 22px 36px; align-items: end;
  margin: 8px 0 28px;
}
.feed-lab {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.feed-count {
  margin-left: auto; font-family: var(--mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.feed-count b { color: var(--ink); font-size: 18px; font-family: var(--display); font-weight: 500; }
.voice-feed { display: grid; gap: 0; border-top: 1px solid var(--line); }
.voice-item {
  display: grid; grid-template-columns: 72px 1fr 280px; gap: 22px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.voice-item:hover h3 { color: #8a0a12; }
.voice-arms { width: 56px; height: 56px; object-fit: contain; }
.voice-body h3 {
  font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -.02em; line-height: 1.15; margin: 8px 0 10px; text-transform: uppercase;
}
.voice-body > p { color: var(--ink-2); font-size: 15px; max-width: 62ch; }
.voice-meta {
  display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.voice-ch { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.voice-ch span {
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.voice-thumb { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }
.voice-item[hidden] { display: none !important; }
@media (max-width: 860px) {
  .voice-item { grid-template-columns: 48px 1fr; }
  .voice-thumb { grid-column: 1 / -1; height: 200px; }
  .feed-count { margin-left: 0; }
}
.lang-band { background: #0A0A0B; color: #fff; padding: 72px 0; }
.lang-band .kicker-off { color: var(--flag-y); }
.lang-band h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 5vw, 56px); letter-spacing: -.035em;
  max-width: 16ch; margin: 8px 0 16px;
}
.lang-band .lede { color: rgba(255,255,255,.72); max-width: 46ch; margin-bottom: 24px; }
.lang-band-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.lang-band-flag { display: flex; height: 180px; border-radius: 4px; overflow: hidden; }
.lang-band-flag span { flex: 1; }
.lang-band-flag span:nth-child(1) { background: #0A0A0B; }
.lang-band-flag span:nth-child(2) { background: var(--flag-y); }
.lang-band-flag span:nth-child(3) { background: var(--flag-r); }
@media (max-width: 860px) {
  .home-edition a { margin-left: 0; }
  .home-pulse .wrap { grid-template-columns: 1fr 1fr; }
  .home-pulse div:nth-child(2) { border-right: 0; }
  .home-quote blockquote { max-width: none; }
  .today-grid { grid-template-columns: 1fr; }
  .today-lead { min-height: 380px; }
  .up-next { border-left: 0; border-top: 1px solid var(--line); }
  .latest-grid { grid-template-columns: 1fr; }
  .lang-band-inner { grid-template-columns: 1fr; }
  .lang-band-flag { height: 12px; }
  .feed-h { max-width: none; }
}

/* Media gallery albums */
.mg-hero { padding-bottom: 4px; }
.mg-filters { margin-bottom: 28px; }
.mg-albums {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.mg-album {
  position: relative;
  display: block;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.mg-album img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s var(--ease);
}
.mg-album:hover img { transform: scale(1.08); }
.mg-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,18,.12) 0%, rgba(14,14,18,.55) 48%, rgba(14,14,18,.92) 100%);
}
.mg-album-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px; padding: 22px 20px 20px; gap: 8px;
}
.mg-album-body strong {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.mg-desc { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.45; max-width: 36ch; }
.mg-chip {
  display: inline-flex; align-self: flex-start;
  background: var(--gold); color: #111;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px;
}
.mg-chip-umc { background: #fff; color: #111; }
.mg-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .04em; }
.mg-meta em { font-style: normal; }
.mg-back { margin: 0 0 18px; }
.mg-back a { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.mg-album-head {
  display: grid; grid-template-columns: 160px 1fr; gap: 22px;
  align-items: center; margin-bottom: 28px;
}
.mg-album-head img { width: 160px; height: 120px; object-fit: cover; border-radius: 14px; }
.mg-album-head h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 500; margin: 6px 0 8px; letter-spacing: -.03em; }
.mg-album-head .mg-meta { color: var(--muted); }

/* Podcasts */
.pod-hero { padding-bottom: 8px; }
.pod-shows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pod-show {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
  cursor: pointer; text-align: left; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pod-show:hover, .pod-show:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(21, 21, 25, .14);
  outline: none;
}
.pod-show.is-open { box-shadow: 0 0 0 2px var(--gold); }
.pod-show-art {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #1a1a1f;
  overflow: hidden;
}
.pod-show-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
  display: block;
}
.pod-show-hostbar {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 28px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(14,14,18,.92));
  color: #fff;
  display: grid; gap: 2px;
}
.pod-show-hostbar small {
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.pod-show-hostbar strong {
  font-family: var(--display); font-size: 18px; font-weight: 500; letter-spacing: -.02em;
}
.pod-hot {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold); color: #111;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
}
.pod-hot.is-hot {
  background: var(--red); color: #fff;
  animation: podHotPulse 1.8s ease-in-out infinite;
}
.pod-hot svg { display: block; }
@keyframes podHotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 18px rgba(217,0,0,.35); }
  50% { transform: scale(1.05); box-shadow: 0 10px 22px rgba(217,0,0,.55); }
}
.pod-ep-new {
  display: inline-flex; vertical-align: middle; margin-left: 8px;
  background: var(--gold); color: #111;
  font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
}
.pod-ep-new.is-hot { background: var(--red); color: #fff; }
.pod-show-body { display: flex; flex-direction: column; gap: 6px; padding: 16px 16px 18px; flex: 1; }
.pod-show-meta { margin: 0; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.pod-show h2 { font-family: var(--display); font-weight: 500; font-size: 22px; margin: 0; letter-spacing: -.02em; }
.pod-show-body > p { color: var(--ink-2); font-size: 14px; margin: 0; }
.pod-show-host {
  margin: 0; color: var(--ink); font-size: 14px; font-weight: 600;
}
.pod-show-host span {
  display: inline-block; margin-right: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.pod-show-min { margin: 0; color: var(--muted); font-size: 13px; }
.pod-show-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.pod-open {
  display: inline-flex; align-items: center;
  background: var(--ink); color: #fff; border-radius: 999px;
  padding: 8px 14px; font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.pod-show:hover .pod-open { background: var(--gold); color: #111; }
.pod-show-actions small { color: var(--muted); font-weight: 700; }
.pod-back {
  border: 0; background: none; padding: 0; cursor: pointer;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; color: var(--ink);
}
.pod-detail-head {
  display: grid; grid-template-columns: 160px 1fr; gap: 22px;
  align-items: center; margin-bottom: 22px;
}
.pod-detail-head img { width: 160px; height: 160px; object-fit: cover; object-position: center 30%; border-radius: 16px; }
.pod-detail-head h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 500; margin: 6px 0 8px; letter-spacing: -.03em; }
.pod-eps { display: grid; gap: 10px; }
.pod-ep {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px;
  cursor: pointer;
}
.pod-ep:hover { border-color: var(--ink); }
.pod-ep.is-playing { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.pod-ep h3 { font-family: var(--display); font-size: 18px; font-weight: 500; margin: 0 0 4px; }
.pod-ep p { margin: 0; color: var(--ink-2); font-size: 14px; }
.pod-ep-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 12px; margin-top: 6px !important; }
.pod-play {
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: #111; font-size: 14px; font-weight: 700;
}
.pod-eps-sec { padding-top: 8px; padding-bottom: 24px; }
.pod-dock-copy { min-width: 0; }
.pod-dock .seek { margin: 6px 0 2px; }
@media (max-width: 1024px) {
  .mg-albums, .pod-shows { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mg-album-head, .pod-detail-head { grid-template-columns: 120px 1fr; }
}
@media (max-width: 640px) {
  .mg-albums, .pod-shows { grid-template-columns: 1fr; }
  .mg-album, .mg-album-body { min-height: 260px; }
  .mg-album-head, .pod-detail-head { grid-template-columns: 1fr; }
  .mg-album-head img, .pod-detail-head img { width: 100%; height: 160px; }
  body[data-page="podcasts"].pod-playing { padding-bottom: 112px; }
}

/* Mobile polish — scoped so Press Room and desktop stay intact */
@media (max-width: 860px) {
  body[data-page="home"] .section-head {
    flex-direction: column; align-items: flex-start; gap: 10px;
  }
  body[data-page="home"] .section-head h2 {
    font-size: clamp(26px, 8vw, 34px); max-width: none;
  }
  body[data-page="home"] .hero-actions {
    flex-direction: row; flex-wrap: wrap; gap: 8px;
  }
  body[data-page="home"] .hero-actions .btn-gold,
  body[data-page="home"] .hero-actions .btn-ghost {
    width: auto; flex: 0 1 auto; min-width: 0;
  }
  body[data-page="press"] .page-hero h1 {
    font-size: clamp(32px, 7vw, 48px); max-width: none;
  }
  body[data-page="press"] .filters {
    width: 100%; max-width: 100%;
    flex-wrap: nowrap; overflow-x: auto;
  }
  body[data-page="press"] .press-index-bar {
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  body[data-page="about"] .live-strip .live-flag-inline,
  body[data-page="accreditation"] .live-strip .live-flag-inline { display: none; }
  body[data-page="about"] .live-strip .wrap,
  body[data-page="accreditation"] .live-strip .wrap {
    justify-content: center; text-align: center;
    min-height: 0; padding: 14px 16px 12px;
  }
  body[data-page="about"] .live-strip,
  body[data-page="accreditation"] .live-strip { font-size: 12px; font-weight: 500; }

  body[data-page="press"] .live-strip .wrap {
    justify-content: flex-start; text-align: left;
    gap: 10px; padding: 10px 16px;
  }
  body[data-page="press"] .live-flag-inline { display: inline-flex; }
  body[data-page="press"] .strip-notify { margin-left: 0; width: auto; }

  .hist-hero { min-height: 0; }
  .hist-hero h1 { font-size: clamp(30px, 10vw, 42px); max-width: none; }
  .hist-hero .lede { max-width: none; font-size: 16px; }
  .hist-hero-grid { padding: 36px 0 24px; gap: 18px; }
  .hist-meta b { font-size: 20px; }
  .era { padding: 36px 0 64px; }
  .era .num { font-size: clamp(44px, 16vw, 64px); }
  .era h2 { font-size: clamp(24px, 7vw, 32px); }
  .era-copy p { font-size: 16px; max-width: none; }
  .hist-frame { max-height: 380px; }
  .hist-book .t-nav { top: 62px; }

  body[data-page="about"] .page-hero .hero-actions,
  body[data-page="accreditation"] .hero-actions {
    flex-direction: column; align-items: stretch;
  }
  body[data-page="about"] .page-hero .hero-actions a,
  body[data-page="accreditation"] .hero-actions a {
    width: 100%; flex: none;
  }
}
