/* =========================================================
   THE RIGHTSIDE — Design system
   Brand tokens (from brand sheet):
     red    #F43631
     cream  #FFFCEE
     navy   #383C5E
   Type:
     Display → Oswald (stand-in for Balboa Extra Condensed)
     Sans    → Barlow Condensed (stand-in for Pragmatica Extended)
     Serif   → DM Serif Display (for editorial / op-ed voice)
     Mono    → JetBrains Mono (timestamps / metadata)
   ========================================================= */

:root {
  --red:   #F43631;
  --red-dk:#C92A26;
  --cream: #FFFCEE;
  --cream-2:#F5F0DE;
  --navy:  #383C5E;
  --navy-dk:#1F2239;
  --navy-2:#2A2E49;
  --ink:   #14152A;
  --paper: var(--cream);
  --fg:    var(--navy);
  --muted: #6B6E88;
  --rule:  #D9D2BC;

  --f-display: 'Oswald', 'Impact', sans-serif;
  --f-sans: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-serif: 'DM Serif Display', Georgia, serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1440px;
  --pad: clamp(20px, 4vw, 64px);
}

/* Theme: navy (broadcast) */
body.theme-navy {
  --paper: var(--navy-dk);
  --fg: var(--cream);
  --muted: #8F93B3;
  --rule: rgba(255,252,238,.14);
  --cream-2: #2A2E49;
}

/* Theme: red (megaphone) */
body.theme-red {
  --paper: var(--red);
  --fg: #1a0704;
  --muted: rgba(26,7,4,.6);
  --rule: rgba(26,7,4,.18);
  --cream-2: #E5291F;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--fg);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; }

/* ======== LOGO (SVG-free reconstruction) ======== */
.rs-logo { display: inline-block; transform: scale(var(--rs-logo-scale,1)); transform-origin: top left; }
.rs-logo-top {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--f-sans); font-weight: 300; letter-spacing: .12em;
  font-size: 22px; line-height: 1;
}
.rs-logo-the { font-family: var(--f-sans); font-weight: 300; letter-spacing: .12em; }
.rs-logo-rule { display: inline-block; height: 2px; width: 140px; }
.rs-logo-arrow {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  margin-left: -6px;
}
.rs-logo-main {
  font-family: var(--f-display); font-weight: 700;
  font-stretch: condensed;
  font-size: 66px; line-height: .82;
  letter-spacing: .01em;
  margin-top: 2px;
  transform: scaleX(.92);
  transform-origin: left;
}
.rs-logo-sub {
  font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .14em;
  font-size: 11px;
  margin-top: 6px;
}

.rs-mark { position: relative; border-radius: 50%; display: grid; place-items: center; }
.rs-mark-letters {
  font-family: var(--f-display); font-weight: 700; font-size: 20px; letter-spacing: .02em;
  line-height: 1; transform: scaleX(.92);
}
.rs-mark-arrow { position: absolute; top: 50%; left: 18%; width: 64%; height: 1.5px; }
.rs-mark-tip {
  position: absolute; top: 50%; right: 14%;
  width: 0; height: 0; transform: translateY(-50%);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid currentColor;
}

/* ======== TOPBAR ======== */
.topbar {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 600;
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 8px var(--pad);
  display: flex; align-items: center; gap: 24px;
  justify-content: space-between;
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-label { color: var(--red); }
.topbar-sep { opacity: .4; }
.topbar-show { opacity: .8; }
.topbar-mid { opacity: .55; font-family: var(--f-mono); letter-spacing: .08em; }
.topbar-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: white; padding: 6px 12px;
  border-radius: 2px; font-weight: 700;
}
.topbar-btn:hover { background: var(--red-dk); }

/* Topbar with ticker (full width, top of site) */
.topbar-with-ticker { display: block; }
.topbar-ticker {
  background: var(--red); color: white;
  border-top: 1px solid rgba(255,255,255,.15);
  overflow: hidden; position: relative;
}
.topbar-ticker-track {
  display: flex; gap: 36px; padding: 8px 0;
  white-space: nowrap; width: max-content;
  animation: ticker 70s linear infinite;
  font-family: var(--f-sans); font-weight: 600;
  letter-spacing: .08em; font-size: 12px;
}
.topbar-ticker-item { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; padding-left: 18px; }

/* Title link */
.title-link { color: inherit; transition: color .2s; }
.title-link:hover { color: var(--red); }

/* Advertise standalone */
.advertise-section { padding-top: 20px; padding-bottom: 80px; }

.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 0 var(--red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(244,54,49,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(244,54,49,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,54,49,0); }
}

/* ======== NAV ======== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.nav-logo { height: 50px; display: flex; align-items: center; color: var(--red); }
.nav-links {
  display: flex; gap: 34px; list-style: none; margin: 0; padding: 0;
  justify-self: center;
  font-family: var(--f-sans); font-weight: 600;
  letter-spacing: .14em; font-size: 13px; text-transform: uppercase;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--red);
  transition: right .3s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-right { justify-self: end; }
.nav-sub {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .14em; font-size: 12px; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid var(--fg);
  border-radius: 2px;
  transition: all .2s;
}
.nav-sub:hover { background: var(--fg); color: var(--paper); }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; font-size: 13px;
  border-radius: 2px;
  border: 1px solid transparent;
  position: relative;
  transition: transform .15s ease, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dk); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--fg); }
.btn-outline {
  background: transparent; color: var(--fg);
  border: 1.5px solid var(--fg);
}
.btn-outline:hover { background: var(--fg); color: var(--paper); }
.btn-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: white;
  box-shadow: 0 0 0 0 rgba(255,255,255,.8);
  animation: pulse-w 1.8s infinite;
}
@keyframes pulse-w {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ======== SECTION HEADER (shared) ======== */
section { max-width: var(--maxw); margin: 0 auto; padding: 100px var(--pad); }
.section-head {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  align-items: end; gap: 40px;
  border-top: 1.5px solid var(--fg);
  padding-top: 22px;
  margin-bottom: 48px;
}
.section-head-l { display: flex; gap: 14px; align-items: center; font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 12px; }
.section-num { font-family: var(--f-mono); opacity: .5; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--red); }
.section-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: .88; letter-spacing: -.005em;
  margin: 0; transform: scaleX(.94); transform-origin: left;
}
.section-title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); transform: scaleX(1.08); display: inline-block; }
.section-head-r { justify-self: end; text-align: right; max-width: 280px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.section-head-r a { color: var(--red); border-bottom: 1px solid currentColor; }
.title-arrow {
  display: inline-block; width: 60px; height: 3px;
  background: var(--red); vertical-align: middle;
  position: relative; margin-left: 10px;
}
.title-arrow::after {
  content: ""; position: absolute; right: -1px; top: 50%;
  border: 6px solid transparent; border-left-color: var(--red);
  transform: translate(100%, -50%);
}

/* ======== HERO: EDITORIAL ======== */
.hero { padding-top: 40px; padding-bottom: 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "meta meta"
    "head hosts"
    "sub  hosts"
    "stats stats";
  gap: 40px 60px;
  align-items: start;
  padding: 40px 0;
}
.hero-meta {
  grid-area: meta;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .18em; font-size: 12px;
  border-top: 1.5px solid var(--fg);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.hero-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--red); }
.hero-date { font-family: var(--f-mono); font-weight: 500; letter-spacing: .1em; opacity: .7; }

.hero-headline {
  grid-area: head;
  font-family: var(--f-display);
  font-size: clamp(84px, 11vw, 190px);
  line-height: .82;
  letter-spacing: -.015em;
  margin: 0;
  font-weight: 700;
  transform: scaleX(.9); transform-origin: left;
}
.hl-line { display: block; }
.hl-accent { color: var(--red); }
.hl-arrow-word {
  position: relative; display: inline-block; margin-left: .28em;
}
.hl-arrow-word::before {
  content: ""; position: absolute;
  left: -.36em; top: .52em;
  width: .28em; height: .06em; background: var(--red);
}
.hl-arrow-word::after {
  content: ""; position: absolute;
  left: -.12em; top: .52em;
  transform: translateY(-50%);
  border: .08em solid transparent; border-left-color: var(--red);
}

.hero-sub { grid-area: sub; max-width: 520px; }
.hero-sub p { font-size: 19px; line-height: 1.55; color: var(--fg); margin: 0 0 28px; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-hosts {
  grid-area: hosts;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  align-self: end;
}
.host-card { border: 1px solid var(--rule); padding: 14px; background: var(--cream-2); transition: transform .3s ease; }
.host-card:hover { transform: translateY(-4px); }
.host-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #d8d1ba, #b8b199);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.host-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.host-name { font-family: var(--f-display); font-size: 26px; line-height: 1; font-weight: 700; transform: scaleX(.92); transform-origin: left; }
.host-role { font-family: var(--f-mono); font-size: 9px; letter-spacing: .14em; opacity: .6; margin-top: 4px; }

/* ======== HERO: POSTER ======== */
.hero-poster { padding-top: 40px; padding-bottom: 60px; }
.poster-frame {
  background: var(--red); color: var(--cream);
  padding: 60px clamp(24px, 4vw, 80px);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.poster-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .18em; font-size: 12px;
  padding: 8px 14px; border: 1px solid rgba(255,252,238,.4);
  border-radius: 2px;
}
.poster-stack {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(92px, 15vw, 240px);
  line-height: .82;
  margin: 40px 0;
  transform: scaleX(.92); transform-origin: left;
}
.poster-word { display: block; }
.poster-word-red { -webkit-text-stroke: 2px var(--cream); color: transparent; }
.poster-word-italic { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: .7em; transform: scaleX(1.08); }
.poster-footer {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid rgba(255,252,238,.3);
  padding-top: 24px;
}
.poster-footer-lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; opacity: .65; }
.poster-footer-val { font-family: var(--f-sans); font-weight: 700; letter-spacing: .08em; font-size: 16px; margin-top: 6px; }
.poster-cta {
  position: absolute; right: clamp(24px, 4vw, 80px); bottom: 36px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--red);
  padding: 16px 24px; font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .14em; font-size: 13px; text-transform: uppercase;
}

/* ======== TICKER ======== */
.ticker {
  position: relative;
  display: flex; align-items: stretch;
  border-top: 1.5px solid var(--fg);
  border-bottom: 1.5px solid var(--fg);
  font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .14em;
  font-size: 13px;
  margin-top: 30px;
  background: var(--paper);
}
.ticker-label {
  position: relative; z-index: 3;
  background: var(--red); color: white;
  padding: 14px 22px; white-space: nowrap;
  letter-spacing: .18em;
  flex-shrink: 0;
}
.ticker-viewport {
  flex: 1; min-width: 0; overflow: hidden; position: relative;
}
.ticker-track {
  display: flex; gap: 42px;
  padding: 14px 0 14px 30px;
  animation: ticker 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ======== LIVE STREAM ======== */
.live-player {
  display: grid; grid-template-columns: 1fr 340px; gap: 24px;
}
.live-video {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(180deg, #0f1127, #1a1d3a);
  border-radius: 2px; overflow: hidden;
  display: grid;
}
.live-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.live-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--cream);
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 13px;
  text-transform: uppercase;
}
.live-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: var(--cream);
  pointer-events: none;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--navy); padding: 7px 10px;
  font-family: var(--f-sans); font-weight: 700; letter-spacing: .16em; font-size: 11px;
  white-space: nowrap;
}
.live-badge.is-live { background: var(--red); color: white; }
.live-title { font-family: var(--f-sans); font-weight: 700; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.live-message { margin-top: 4px; font-size: 14px; line-height: 1.35; max-width: 580px; opacity: .9; text-shadow: 0 2px 18px rgba(0,0,0,.45); }

.live-side { background: var(--cream-2); padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.live-sidehead { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 11px; opacity: .6; margin-bottom: 8px; }
.live-chan {
  display: grid; grid-template-columns: 22px 1fr auto;
  align-items: center; gap: 12px;
  padding: 12px 4px; border-bottom: 1px solid var(--rule);
  font-family: var(--f-sans); font-weight: 600;
  letter-spacing: .06em; font-size: 14px;
  transition: padding .2s;
}
.live-chan:hover { padding-left: 10px; }
.live-chan-h { font-family: var(--f-mono); font-size: 11px; opacity: .6; }
.live-callin {
  margin-top: auto; padding-top: 20px;
  border-top: 1.5px solid var(--fg);
}
.callin-lbl { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 11px; color: var(--red); }
.callin-num { font-family: var(--f-display); font-weight: 700; font-size: 36px; line-height: 1; margin-top: 6px; transform: scaleX(.92); transform-origin: left; }
.callin-hint { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ======== EPISODES ======== */
.ep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.ep-card {
  background: var(--paper);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .3s;
  min-height: 320px;
}
.ep-card:hover { background: var(--cream-2); }
body.theme-navy .ep-card:hover { background: var(--navy-2); }
.ep-card-feat { background: var(--navy); color: var(--cream); grid-column: span 2; grid-row: span 1; min-height: 380px; }
.ep-card-feat:hover { background: var(--ink); }
.ep-card-feat .ep-tag, .ep-card-feat .ep-num, .ep-card-feat .ep-date { color: var(--cream); opacity: .7; }
.ep-top { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; opacity: .6; }
.ep-tag { color: var(--red); }
.ep-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: 36px; line-height: 1; letter-spacing: -.005em;
  margin: 0; transform: scaleX(.92); transform-origin: left;
}
.ep-card-feat .ep-title { font-size: 64px; }
.ep-card-feat .ep-blurb { font-size: 18px; max-width: 560px; }
.ep-blurb { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.5; flex: 1; }
.ep-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-sans); font-weight: 700; letter-spacing: .14em; font-size: 12px;
  border-top: 1px solid var(--rule); padding-top: 14px;
}
.ep-card-feat .ep-foot { border-color: rgba(255,252,238,.2); }
.ep-play {
  background: transparent; border: 0; color: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: inherit; letter-spacing: inherit; font-size: inherit;
}
.ep-play:hover { color: var(--red); }
.ep-cta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; flex-wrap: wrap; gap: 20px;
}
.ep-cta-aside { font-family: var(--f-sans); font-weight: 600; letter-spacing: .08em; font-size: 13px; display: flex; align-items: center; gap: 18px; color: var(--muted); }
.ep-plat { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--rule); border-radius: 2px; color: var(--fg); }

/* ======== HOSTS ======== */
.hosts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hostblock { display: flex; flex-direction: column; gap: 20px; }
.hostblock-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #c9c2ab, #a8a18a);
  position: relative;
  overflow: hidden;
}
.hostblock-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.hostblock:hover .hostblock-photo img { transform: scale(1.03); }
body.theme-navy .hostblock-photo { background: linear-gradient(180deg, #3a3e5c, #2a2e49); }
.hostblock-role { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 11px; color: var(--red); }
.hostblock-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 64px; line-height: 1; margin: 4px 0 0;
  letter-spacing: -.01em;
  transform: scaleX(.92); transform-origin: left;
}
.hostblock-full { font-family: var(--f-serif); font-style: italic; font-size: 16px; color: var(--muted); margin-top: 2px; }
.hostblock-bio { font-size: 15px; line-height: 1.55; color: var(--fg); margin: 8px 0 0; text-wrap: pretty; }
.hostblock-q {
  font-family: var(--f-serif); font-style: italic; font-size: 20px; line-height: 1.35;
  margin: 8px 0 0; padding-left: 16px; border-left: 3px solid var(--red);
  color: var(--fg);
}

/* ======== OP-EDS ======== */
.opeds-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; }
.oped-lead { display: flex; flex-direction: column; gap: 16px; }
.oped-cat { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 11px; color: var(--red); }
.oped-title { font-family: var(--f-serif); font-weight: 400; font-size: 52px; line-height: 1.02; margin: 0; text-wrap: balance; }
.oped-title-sm { font-size: 28px; }
.oped-dek { font-family: var(--f-sans); font-size: 18px; color: var(--muted); margin: 0; line-height: 1.45; }
.oped-meta { font-family: var(--f-sans); font-weight: 600; letter-spacing: .08em; font-size: 13px; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.oped-dot { opacity: .4; }
.oped-meta-sm { font-size: 12px; }
.oped-img {
  margin-top: 12px;
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, rgba(56,60,94,.06) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, #d8d1ba, #b8b199);
  display: flex; align-items: flex-end; padding: 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; color: var(--navy);
}
.oped-list { display: flex; flex-direction: column; }
.oped-row {
  padding: 22px 0; border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
  transition: padding .2s ease;
}
.oped-row:first-child { border-top: 1.5px solid var(--fg); }
.oped-row:hover { padding-left: 12px; }
.oped-row-meta { display: flex; justify-content: space-between; font-family: var(--f-sans); font-weight: 700; letter-spacing: .14em; font-size: 11px; }
.oped-row-meta span:last-child { color: var(--muted); font-family: var(--f-mono); }
.oped-arrow { margin-left: auto; color: var(--red); }

/* ======== SPONSORS ======== */
.sponsor-marquee {
  overflow: hidden; border-top: 1.5px solid var(--fg); border-bottom: 1.5px solid var(--fg);
  padding: 16px 0; margin-bottom: 48px;
}
.sponsor-marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  font-family: var(--f-display); font-weight: 700;
  font-size: 28px; letter-spacing: .01em;
  animation: ticker 50s linear infinite;
  transform: scaleX(.94); transform-origin: left;
}
.sponsor-marquee-item { display: inline-flex; align-items: center; gap: 48px; }

.sponsors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.sponsor {
  background: var(--paper); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 240px; transition: background .3s;
}
.sponsor:hover { background: var(--cream-2); }
body.theme-navy .sponsor:hover { background: var(--navy-2); }
.sponsor-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; opacity: .5; }
.sponsor-tier { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 10px; color: var(--red); }
.sponsor-name { font-family: var(--f-display); font-weight: 700; font-size: 32px; line-height: 1; margin: 4px 0; transform: scaleX(.92); transform-origin: left; }
.sponsor-desc { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
.sponsor-cta { font-family: var(--f-sans); font-weight: 700; letter-spacing: .14em; font-size: 12px; display: inline-flex; align-items: center; gap: 8px; color: var(--red); }

.advertise-cta {
  margin-top: 48px; padding: 40px;
  background: var(--navy); color: var(--cream);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
body.theme-navy .advertise-cta { background: var(--red); color: white; }
body.theme-red .advertise-cta { background: var(--navy); color: var(--cream); }
.advertise-kicker { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 11px; color: var(--red); margin-bottom: 10px; }
body.theme-navy .advertise-kicker { color: var(--cream); opacity: .8; }
.advertise-title { font-family: var(--f-display); font-weight: 700; font-size: 36px; line-height: 1.05; margin: 0; max-width: 700px; transform: scaleX(.94); transform-origin: left; }

/* ======== NEWSLETTER ======== */
.news {
  background: var(--navy); color: var(--cream);
  padding: 0; max-width: none;
}
body.theme-navy .news { background: var(--red); color: white; }
body.theme-red .news { background: var(--navy); color: var(--cream); }
.news-inner { max-width: var(--maxw); margin: 0 auto; padding: 100px var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.news-kicker { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 12px; display: inline-flex; align-items: center; gap: 10px; color: var(--red); }
body.theme-navy .news-kicker { color: white; }
.news-title { font-family: var(--f-display); font-weight: 700; font-size: clamp(42px, 5vw, 80px); line-height: .95; margin: 18px 0 0; transform: scaleX(.94); transform-origin: left; }
.news-title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); transform: scaleX(1.06); display: inline-block; }
body.theme-navy .news-title em { color: var(--cream); opacity: .85; }
.news-dek { font-size: 17px; line-height: 1.5; color: var(--cream); opacity: .85; margin-top: 18px; text-wrap: pretty; max-width: 460px; }
.news-form { background: var(--cream); color: var(--navy); padding: 32px; border-radius: 2px; }
body.theme-navy .news-form { background: white; color: var(--navy); }
.news-label { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 11px; opacity: .6; }
.news-row { display: flex; gap: 0; margin-top: 10px; }
.news-row input {
  flex: 1; padding: 16px; font: inherit; font-size: 16px;
  border: 1.5px solid var(--navy); background: transparent; color: var(--navy);
  border-radius: 2px 0 0 2px;
  outline: none;
}
.news-row input:focus { border-color: var(--red); }
.news-row button {
  background: var(--red); color: white; border: 1.5px solid var(--red);
  padding: 0 22px; font-family: var(--f-sans); font-weight: 700;
  letter-spacing: .14em; font-size: 13px;
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 0 2px 2px 0;
  transition: background .2s;
}
.news-row button:hover { background: var(--red-dk); }
.news-fine { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.4; }
.news-done { display: flex; gap: 14px; align-items: center; }
.news-done-mark { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: white; display: grid; place-items: center; font-size: 22px; font-weight: 700; }

/* ======== SOCIALS ======== */
.socials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.social {
  background: var(--paper); padding: 24px;
  display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center;
  transition: background .3s;
}
.social:hover { background: var(--cream-2); color: var(--red); }
body.theme-navy .social:hover { background: var(--navy-2); color: white; }
.social-icon { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--fg); display: grid; place-items: center; }
.social-name { font-family: var(--f-sans); font-weight: 700; letter-spacing: .16em; font-size: 13px; }
.social-handle { font-family: var(--f-mono); font-size: 12px; opacity: .7; margin-top: 2px; }
.social-stat { font-family: var(--f-sans); font-size: 12px; opacity: .5; margin-top: 4px; }

/* ======== FOOTER ======== */
.footer { background: var(--ink); color: var(--cream); padding: 80px var(--pad) 0; position: relative; overflow: hidden; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.footer-logo { color: var(--red); }
.footer-logo .rs-logo-sub { color: var(--cream); opacity: .7; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer-col-t { font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 11px; opacity: .55; margin-bottom: 6px; }
.footer-cols a { font-family: var(--f-sans); font-weight: 500; letter-spacing: .04em; font-size: 14px; opacity: .85; transition: opacity .2s, color .2s; }
.footer-cols a:hover { opacity: 1; color: var(--red); }
.footer-bar {
  max-width: var(--maxw); margin: 60px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,252,238,.12);
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--f-sans); font-weight: 600; letter-spacing: .12em; font-size: 11px; opacity: .7;
  position: relative; z-index: 2;
}
.footer-tag { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: 0; font-size: 14px; opacity: 1; }
.footer-big {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(140px, 22vw, 360px);
  line-height: .8;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,252,238,.08);
  text-align: center;
  margin-top: -40px;
  transform: scaleX(.92);
  pointer-events: none;
  user-select: none;
}

/* ======== TWEAKS PANEL ======== */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  background: var(--paper);
  border: 1.5px solid var(--fg); border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  width: 300px;
  transform-origin: bottom right;
  animation: tweakIn .3s ease;
}
@keyframes tweakIn { from { transform: scale(.8); opacity: 0; } }
.tweaks-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--rule); font-family: var(--f-sans); font-weight: 700; letter-spacing: .18em; font-size: 12px; }
.tweaks-close { background: transparent; border: 0; color: inherit; font-size: 18px; line-height: 1; }
.tweaks-body { padding: 16px; display: flex; flex-direction: column; gap: 18px; }
.tweak-group { display: flex; flex-direction: column; gap: 8px; }
.tweak-lbl { font-family: var(--f-sans); font-weight: 600; letter-spacing: .14em; font-size: 10px; opacity: .6; }
.tweak-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.tweak-opt {
  padding: 10px 8px;
  border: 1px solid var(--rule);
  background: var(--paper); color: var(--fg);
  font-family: var(--f-sans); font-weight: 600;
  letter-spacing: .1em; font-size: 10px; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
  border-radius: 2px;
}
.tweak-opt:hover { border-color: var(--fg); }
.tweak-opt.active { background: var(--fg); color: var(--paper); border-color: var(--fg); }

/* ======== SCROLL REVEAL ======== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ======== RESPONSIVE ======== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "meta" "head" "sub" "hosts"; }
  .hero-hosts { grid-template-columns: repeat(3, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .section-head-r { justify-self: start; text-align: left; }
  .live-player { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
  .ep-card-feat { grid-column: auto; }
  .hosts-grid { grid-template-columns: 1fr; }
  .opeds-grid { grid-template-columns: 1fr; }
  .sponsors-grid { grid-template-columns: 1fr; }
  .advertise-cta { grid-template-columns: 1fr; }
  .news-inner { grid-template-columns: 1fr; padding: 60px var(--pad); }
  .socials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bar { flex-direction: column; }
}
