/* ==========================================================================
   Tackling the Chicane — design system v2
   Direction: sports-broadcast editorial. Condensed broadcast-grotesk for
   headlines, a serif for long-form reading, monospace for anything that is
   actually data (positions, times, dates, scorelines). The signature device
   is "The Grid" — episode recaps read as a timing sheet / fixture list,
   not a card wall, because that's how both sports actually present results.
   ========================================================================== */

:root {
  --ink: #0d0f12;
  --surface: #15181c;
  --surface-2: #1b1f24;
  --paper: #eceeef;
  --muted: #9aa1a9;
  --faint: #929aa3;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);

  --red: #c81e2c;
  --red-bright: #e8394a;
  --green: #2e9e63;
  --green-bright: #3ec27f;
  --gold: #c99a3e;

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 4px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 120px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 15, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
}

.logo .logo-mark {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s ease;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover { color: var(--paper); }
.nav-links a.active { color: var(--paper); border-bottom-color: var(--gold); }

.nav-cta { color: var(--gold) !important; }
.nav-cta:hover { color: var(--paper) !important; border-bottom-color: var(--paper); }

/* --- buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
}

.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--paper); }

button.btn { cursor: pointer; appearance: none; -webkit-appearance: none; }
.btn-ghost:hover { border-color: var(--paper); transform: translateY(-1px); }

/* --- hero --- */
.hero {
  border-bottom: 1px solid var(--line);
  padding: 92px 0 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(100deg, var(--ink) 0%, var(--ink) 28%, rgba(13, 15, 18, 0.78) 46%, rgba(13, 15, 18, 0.3) 66%, rgba(13, 15, 18, 0.42) 100%),
    url("../img/hero-bg.jpg");
  /* Fill the desktop banner; keep the artwork's top-right mark in view. */
  background-size: cover, cover;
  background-position: center, right top;
  background-repeat: no-repeat, no-repeat;
}

.hero-content {
  max-width: var(--container);
  padding-bottom: 76px;
}

@media (max-width: 760px) {
  .hero {
    /* Preserve the complete 1672 × 941 artwork above the copy, without
       stretching a landscape image across a tall mobile hero. */
    padding-top: calc(100vw * 941 / 1672 + 20px);
    background-image:
      linear-gradient(to bottom, transparent 65%, var(--ink) 100%),
      url("../img/hero-bg.jpg");
    background-size: 100% calc(100vw * 941 / 1672), 100% auto;
    background-position: center top, center top;
  }

  .hero-content { padding-bottom: 40px; }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.hero p.lede {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* broadcast card: latest recap status panel */
.broadcast-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  max-width: 380px;
  margin-top: 36px;
}

.broadcast-card .bc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.broadcast-card .bc-label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(200, 30, 44, 0.2);
}

.broadcast-card .bc-body { padding: 20px 18px 22px; }

.broadcast-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: none;
}

.broadcast-card .bc-meta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--faint);
  margin-bottom: 16px;
}

.broadcast-card a.bc-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}
.broadcast-card a.bc-link:hover { color: var(--gold); border-color: var(--gold); }

/* --- ticker --- */
.ticker-bar {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
}

.ticker-bar .ticker-tag {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 1;
}

/* Dedicated masked lane for the scrolling text — clips it to the space
   after the tag so sliding content can never render over the tag itself. */
.ticker-viewport {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  padding-left: 24px;
  animation: ticker-scroll 38s linear infinite;
}

.ticker-bar:hover .ticker-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker-viewport { overflow-x: auto; }
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.ticker-track span b { color: var(--paper); font-weight: 500; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- section headers --- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 56px 0 22px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

.section-head .post-count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* --- filters: underline tabs --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.filter-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 0 12px;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--faint);
  cursor: pointer;
  background: transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.filter-pill:hover { color: var(--paper); }
.filter-pill.active { color: var(--paper); border-bottom-color: var(--gold); }

/* --- the grid: results-sheet post list --- */
.post-grid { margin-bottom: 8px; }

.grid-row {
  display: grid;
  grid-template-columns: 56px 1fr auto 20px;
  align-items: center;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-left-color 0.15s ease, padding-left 0.15s ease;
}

.grid-row.cat-f1 { border-left-color: var(--red); }
.grid-row.cat-soccer { border-left-color: var(--green); }
.grid-row.cat-crossover { border-left-color: var(--gold); }

.grid-row:hover { background: var(--surface); padding-left: 12px; }

.grid-row .row-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--faint);
  text-align: right;
}

.grid-row .row-main h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.25;
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}

.grid-row .row-main p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

.grid-row .row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.row-meta .cat-code { font-weight: 600; }
.cat-f1 .row-meta .cat-code, .row-num.f1 { color: var(--red-bright); }
.cat-soccer .row-meta .cat-code, .row-num.soccer { color: var(--green-bright); }
.cat-crossover .row-meta .cat-code, .row-num.crossover { color: var(--gold); }

.grid-row .row-arrow {
  font-family: var(--font-mono);
  color: var(--faint);
  transition: transform 0.15s ease, color 0.15s ease;
}
.grid-row:hover .row-arrow { transform: translateX(3px); color: var(--paper); }

.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

/* --- pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 36px 0 64px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.pagination button {
  background: none;
  border: none;
  color: var(--faint);
  cursor: pointer;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
}

.pagination button.active { color: var(--paper); border-bottom-color: var(--gold); }
.pagination button:hover:not(.active):not(:disabled) { color: var(--paper); }
.pagination button:disabled { opacity: 0.3; cursor: not-allowed; }

/* --- about block --- */
.about-block {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 28px;
  margin: 56px 0;
}

.about-block img { width: 72px; height: 72px; border-radius: 50%; }

.about-block h3 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.about-block p {
  font-family: var(--font-serif);
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* --- listen band --- */
.listen-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
  text-align: center;
}

.listen-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0 0 12px;
}

.listen-band p { font-family: var(--font-serif); color: var(--muted); margin: 0 0 30px; font-size: 1.05rem; }
.listen-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* --- article page --- */
.article-hero { padding: 48px 24px 30px; }

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--gold); }

.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 12px;
  border-left: 3px solid var(--faint);
  margin-bottom: 18px;
}

.cat-tag.f1 { border-left-color: var(--red); color: var(--red-bright); }
.cat-tag.soccer { border-left-color: var(--green); color: var(--green-bright); }
.cat-tag.crossover { border-left-color: var(--gold); color: var(--gold); }

.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0 0 20px;
  max-width: 900px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--faint);
  margin-bottom: 8px;
}

.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 0; }

.tag-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 8px 24px 40px;
}

.article-body p, .article-body ul, .article-body ol, .article-body blockquote {
  font-family: var(--font-serif);
  font-size: 1.14rem;
  line-height: 1.7;
  color: #d7d9db;
}

.article-body p { margin: 0 0 22px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body li { margin-bottom: 10px; }

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  margin: 46px 0 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.article-body h2:first-child { border-top: none; margin-top: 0; }
.article-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; margin: 30px 0 12px; }

.article-body a:not(.btn) { color: var(--paper); border-bottom: 1px solid var(--gold); }
.article-body a:not(.btn):hover { color: var(--gold); }

.article-body blockquote {
  border-left: 3px solid var(--red);
  margin: 26px 0;
  padding: 2px 0 2px 22px;
  color: var(--muted);
  font-style: italic;
}

.article-body table { width: 100%; border-collapse: collapse; margin: 22px 0; font-family: var(--font-body); font-size: 0.92rem; }
.article-body th, .article-body td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; }
.article-body th { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--faint); }

.article-body code {
  font-family: var(--font-mono);
  background: var(--surface);
  padding: 2px 6px;
  font-size: 0.85em;
}

.cta-box {
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 30px;
  margin: 40px 0;
}

.cta-box h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; margin: 0 0 8px; font-size: 1.3rem; }
.cta-box p { color: var(--muted); margin: 0 0 20px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-transform: none; margin: 0 0 8px; }
.faq-item p { margin: 0; color: var(--muted); }

.episode-embed {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 40px 0;
}

.episode-embed .play-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.episode-embed strong { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.01em; }
.episode-embed .sub { color: var(--muted); font-family: var(--font-body); font-size: 0.88rem; margin-top: 4px; }
.episode-embed a.btn { flex: none; }
.episode-embed > div { min-width: 0; }
.article-actions { margin-top: 24px; }
.article-jumps { margin: 24px 0; padding: 18px; border: 1px solid var(--line); }
.article-jumps summary { cursor: pointer; color: var(--paper); }
.article-jumps ul { margin-bottom: 0; padding-left: 20px; }
.article-jumps a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.related-all { display: inline-block; margin-top: 20px; color: var(--gold); }

/* --- modal / popup form --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 7, 9, 0.78);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--paper); }

.modal-frame {
  width: 100%;
  flex: 1;
  min-height: 60vh;
  border: none;
  background: var(--paper);
}

.modal-fallback {
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--faint);
  text-align: center;
}
.modal-fallback a { color: var(--gold); }

@media (max-width: 620px) {
  .modal { max-height: 92vh; }
  .modal-frame { min-height: 50vh; }
}

/* --- related --- */
.related { max-width: 700px; margin: 0 auto 60px; }
.related h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 0 0 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.related-list .grid-row { grid-template-columns: 36px 1fr auto 16px; }
.related-list .grid-row h3 { font-size: 1.05rem; }

/* --- footer --- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 32px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-family: var(--font-serif); color: var(--muted); font-size: 0.95rem; max-width: 320px; line-height: 1.55; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 11px;
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--faint);
}

.legend { display: flex; gap: 16px; }
.legend span { display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.legend .sw { width: 8px; height: 8px; }
.legend .sw.f1 { background: var(--red); }
.legend .sw.soccer { background: var(--green); }
.legend .sw.crossover { background: var(--gold); }

/* --- responsive --- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 10px; }
  .nav-links { gap: 16px; }
  .nav-links a.home-link { display: none; }
}

@media (max-width: 620px) {
  .episode-embed { flex-direction: column; align-items: flex-start; padding: 20px; }
  .episode-embed a.btn { max-width: 100%; justify-content: center; }
  .related-list .grid-row { grid-template-columns: 34px minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-row { grid-template-columns: 34px 1fr; row-gap: 8px; }
  .grid-row .row-meta { grid-column: 2; align-items: flex-start; flex-direction: row; gap: 12px; }
  .grid-row .row-meta { flex-wrap: wrap; white-space: normal; }
  .grid-row .row-arrow { display: none; }
  .about-block { grid-template-columns: 1fr; text-align: center; border-left: none; border-top: 3px solid var(--gold); }
  .about-block img { margin: 0 auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
