/* ============================================================
   Bowl After Bowl — Main Stylesheet
   Ported from the original Next.js project's:
     - styles/globals.css
     - all component *.module.css files

   NOTE: Fonts are loaded via <link> tags in base.html, NOT here.
   Do NOT add @import font rules — they cause sequential loading
   delays that produce a flash of unstyled content (FOUC).
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) ----------------- */
:root {
  /* Grey scale (purple-tinted) */
  --color-grey-50:  hsl(265, 55%, 96%);
  --color-grey-100: hsl(265, 19%, 88%);
  --color-grey-200: hsl(265,  7%, 70%);
  --color-grey-300: hsl(265,  6%, 66%);
  --color-grey-400: hsl(265,  4%, 57%);
  --color-grey-500: hsl(265,  3%, 53%);
  --color-grey-600: hsl(265,  4%, 42%);
  --color-grey-700: hsl(265,  4%, 31%);
  --color-grey-800: hsl(276,  5%, 20%);
  --color-grey-900: hsl(280,  5%, 13%);

  /* Purple — primary brand */
  --color-primary-50:  #E4CFFE;
  --color-primary-100: #BD86F4;
  --color-primary-200: #AC59FF;
  --color-primary-300: #973DF2;
  --color-primary-400: #7830BF;
  --color-primary-500: #8127DB;
  --color-primary-600: #481D73;
  --color-primary-700: #281040;  /* page background */

  /* Green — success / text highlight */
  --color-success-50:  #E4CFFE;  /* NOTE: original reuses primary-50 hex for this token */
  --color-success-100: #AAFF82;  /* primary body text color */
  --color-success-500: #81D959;  /* headings, links, neon glow source */

  /* Error */
  --color-error-100: #f1acc9;
  --color-error-500: #a10c4a;

  /* Spacing scale */
  --size-1:  0.25rem;
  --size-2:  0.5rem;
  --size-3:  0.75rem;
  --size-4:  1rem;
  --size-5:  1.25rem;
  --size-6:  1.5rem;
  --size-8:  2rem;
  --size-16: 4rem;
  --size-20: 5rem;
  --size-40: 10rem;
}

/* --- Base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  background-color: var(--color-primary-700);
}

body {
  margin: 0;
  min-height: 100vh;
  /* Standard safeguard: prevent any overflowing child from creating
     horizontal scroll. The nav dropdown uses position:absolute so
     this does not affect it. */
  overflow-x: hidden;
  background-color: var(--color-primary-700);
  color: var(--color-success-100);
  font-family: 'paralucent', 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
body.has-persistent-player {
  padding-bottom: 7rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'paralucent', sans-serif;
}

a { text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* --- Navigation -------------------------------------------- */
.nav-link {
  color: var(--color-success-500);
  font-size: 1.62rem;
  font-family: 'sunflower', 'Oswald', sans-serif;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0.08rem 1.05rem 0.18rem;
  border-radius: 0.4rem;
  letter-spacing: 0.01em;
  transition: color 0.15s ease, transform 0.15s ease, text-shadow 0.15s ease, letter-spacing 0.15s ease, background-color 0.15s ease;
}
.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.62rem;
  height: 1.62rem;
  background-image: url("../images/leaf.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) scale(0.72);
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(129, 217, 89, 0.4));
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.nav-link::before {
  left: -0.36rem;
}
.nav-link::after {
  right: -0.36rem;
  transform: translateY(-50%) scale(0.72) scaleX(-1);
}
.nav-link:hover::before,
.nav-link:hover::after,
.nav-link.active::before,
.nav-link.active::after {
  opacity: 1;
}
.nav-link:hover::before,
.nav-link.active::before {
  transform: translateY(-50%) scale(1);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateY(-50%) scale(1) scaleX(-1);
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-success-100);
  text-shadow: 0 0 12px rgba(129, 217, 89, 0.45);
}
.nav-link:hover {
  transform: translateY(-1px) scale(1.03);
  letter-spacing: 0.02em;
}
.nav-link.active {
  font-size: 1.8rem;
}

/* --- Main navigation bar ----------------------------------- */
.main-nav {
  background-color: var(--color-primary-600);
  border-bottom: 2px solid var(--color-primary-300);
}
.main-nav .inner {
  max-width: 87rem;
  margin: 0 auto;
  padding: 0 1rem;       /* minimal vertical padding — logo fills the height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}
/* Site logo in nav */
.nav-logo {
  font-family: 'sunflower', 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-success-500);
  white-space: nowrap;
}
.nav-logo:hover { color: var(--color-success-100); }

/* Logo image — preserves aspect ratio, fills nav height */
.nav-logo-img {
  height: 9rem;
  width: auto;
  display: block;
  transition: opacity 0.15s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* Nav link list (desktop default) */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
}

/* --- Hamburger button — hidden on desktop, shown on mobile --- */
/* Three-span stack that animates into an ✕ when open. */
.nav-hamburger {
  display: none;          /* hidden by default; shown in mobile media query below */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  line-height: 0;
}
/* Each bar */
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-success-500);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
/* Animate to ✕ when JS adds .open to the button */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile nav overrides (MUST come after all base nav rules) --- */
/* Placing the media query last ensures it wins the cascade for the
   properties it overrides (display, flex-wrap, position). */
@media (max-width: 700px) {
  /* Shrink logo */
  .nav-logo-img { height: 4.5rem; }

  /* Lock inner row — logo left, hamburger right, no wrapping */
  .main-nav { position: relative; }   /* dropdown anchors to this */
  .main-nav .inner { flex-wrap: nowrap; }

  /* Show the hamburger button */
  .nav-hamburger { display: flex; }

  /* Collapse the link list — absolutely positioned dropdown */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;           /* flush below the nav bar */
    left: 0;
    right: 0;
    flex-direction: column;
    margin-left: 0;
    justify-content: flex-start;
    background-color: var(--color-primary-600);
    border-bottom: 2px solid var(--color-primary-300);
    padding: var(--size-4);
    gap: var(--size-2);
    z-index: 200;
  }
  /* Revealed when JS adds .nav-open to the <ul> */
  .nav-links.nav-open { display: flex; }

  /* Slightly smaller link text in the dropdown */
  .nav-link { font-size: 1.35rem; }
}

/* --- Hero section ------------------------------------------ */
.hero {
  text-align: center;
  background-image: linear-gradient(
    to bottom,
    var(--color-primary-700),
    var(--color-primary-600),
    var(--color-primary-400)
  );
  padding: var(--size-8) 0;
}

.hero-image {
  width: 300px;
  height: 300px;
  margin: auto;
  overflow: hidden;
  background-color: var(--color-grey-700);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-family: 'doublebass', 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 11.5vw, var(--size-16));
  margin: var(--size-4) 0;
  color: var(--color-success-500);
  white-space: nowrap;
}

.hero p {
  font-family: 'paralucent', 'Roboto', sans-serif;
  font-size: var(--size-6);
  color: var(--color-success-500);
  width: 90%;
  max-width: 40rem;
  margin: auto;
}

.hero .btn-primary {
  color: var(--color-primary-600);
}

.hero .btn-primary:hover {
  color: var(--color-primary-600);
}

.section-latest .section-heading-row h2,
.section-featured .section-heading-row h2,
.section-latest .section-heading-link {
  font-family: 'paralucent', 'Oswald', sans-serif;
}

/* --- Neon flicker header (used on All Episodes h1, etc.) --- */
/*
   HOW THE EFFECT WORKS:
   - The heading uses the 'Benda' typekit font
   - A purple border surrounds it (rounded pill shape)
   - The @keyframes flicker animation cycles between:
       ON state: stacked green text-shadow layers (neon glow) +
                 stacked purple box-shadow layers (border glow)
       OFF state: no shadow at all (simulates neon flicker/stutter)
   - The timing (0%,18%,22%,25%,33%,53%,57%,100% = ON; 20%,24%,32%,55% = OFF)
     creates a realistic irregular flicker cadence.
*/
.neon-header {
  font-family: 'Benda', sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: var(--color-success-50);
  text-align: center;
  animation: flicker 1.2s infinite alternate;
  border: 0.3rem solid var(--color-primary-50);
  padding: 0.4em 1em;
  border-radius: 2rem;
  display: inline-block;
  /* Never wider than its container — prevents overflow on small screens */
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .neon-header { font-size: 4rem; }
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 33%, 53%, 57%, 100% {
    /* Green text glow — multiple layers spread the light outward */
    text-shadow:
      0 0   4px var(--color-success-50),
      0 0  10px var(--color-success-100),
      0 0  21px var(--color-success-100),
      0 0  82px var(--color-success-100),
      0 0  42px var(--color-success-500),
      0 0  92px var(--color-success-500),
      0 0 102px var(--color-success-500),
      0 0 150px var(--color-success-500);
    /* Purple border/box glow */
    box-shadow:
      0 0 0.2rem  var(--color-primary-100),
      0 0 0.2rem  var(--color-primary-100),
      0 0 2rem    var(--color-primary-300),
      0 0 0.8rem  var(--color-primary-300),
      0 0 2.8rem  var(--color-primary-300),
      inset 0 0 1.3rem var(--color-primary-300);
  }
  20%, 24%, 32%, 55% {
    /* OFF frames — neon is "out" */
    text-shadow: none;
    box-shadow: none;
  }
}

/* --- Page section base (shared across all content pages) --- */
/* Common width + centering; each page-specific class only sets max-width. */
.page-section {
  width: 90%;
  margin: var(--size-8) auto;
}

/* --- Section wrappers -------------------------------------- */
.section-featured { max-width: 80rem; }
.section-latest {
  max-width: 84rem;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-4);
  margin-bottom: var(--size-4);
}

.section-heading-row-centered {
  justify-content: center;
}

.section-heading-row h2,
.section-featured h2 {
  font-size: var(--size-8);
  color: var(--color-success-100);
  margin: 0;
}

.section-heading-link {
  color: var(--color-primary-100);
  font-size: 0.95rem;
}

.section-heading-link:hover {
  color: var(--color-success-100);
  text-decoration: underline;
}

.section-featured h2 {
  text-align: center;
}

@media (min-width: 768px) {
  .section-heading-row h2,
  .section-featured h2 { font-size: var(--size-16); }
}

.episodes-slider-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.slider-control-btn {
  border: 1px solid var(--color-primary-100);
  background-color: var(--color-primary-600);
  color: var(--color-success-100);
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 50%;
}

.slider-control-btn:hover {
  background-color: var(--color-primary-500);
}

.episodes-slider {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0.15rem 0.8rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(13.5rem, 18rem);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  overscroll-behavior-x: contain;
}

.episodes-slider::-webkit-scrollbar {
  display: none;
}

.episodes-slider .episode-card {
  scroll-snap-align: start;
  background-color: var(--color-primary-600);
  border: 1px solid var(--color-primary-500);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.episodes-slider .episode-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-success-500);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.slider-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: 0;
  background-color: var(--color-primary-300);
  opacity: 0.55;
  padding: 0;
}

.slider-dot.active {
  background-color: var(--color-success-500);
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 700px) {
  .section-heading-row {
    flex-wrap: wrap;
  }

  .section-heading-row h2 {
    font-size: var(--size-8);
  }

  .episodes-slider-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .episodes-slider {
    grid-auto-columns: minmax(12.5rem, 74vw);
  }

  .slider-control-btn {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    font-size: 0.95rem;
  }
}

/* --- Episode grid ------------------------------------------ */
.episodes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.5rem;
  align-content: center;
}

/* --- Episode card ------------------------------------------ */
.episode-card {
  text-align: center;
  min-width: 0; /* same grid overflow fix as .bud-card */
}
.episode-card a { color: var(--color-grey-100); }
.episode-card-media {
  position: relative;
}
.episode-card-image-link,
.episode-card-content-link {
  display: block;
}

.episode-card-image {
  width: 100%;
  aspect-ratio: 1;   /* podcast artwork is always square — no clipping needed */
  overflow: hidden;
}
.episode-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the square container; no cropping since source is 1:1 */
}

.episode-card-content { padding: var(--size-4); }

/* Episode number (h3) uses 'paralucent' typekit font */
.episode-card-content h3 {
  margin: var(--size-1) 0;
  font-size: var(--size-6);
  font-family: 'paralucent', 'Roboto', 'Segoe UI Symbol', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-success-500);
}

/* Episode title (h4) — same font */
.episode-card-content h4 {
  font-size: var(--size-4);
  font-family: 'paralucent', 'Roboto', 'Segoe UI Symbol', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: var(--size-2) 0;
  color: var(--color-success-500);
}

.episode-card-content time {
  font-style: italic;
  color: var(--color-primary-100);
}

.episode-card-content p {
  line-height: var(--size-6);
  margin: 0;
}

/* --- Primary button (offset shadow style) ------------------ */
/* Works on both <button> and <a> — display:inline-block is required
   so the ::after pseudo-element has dimensions to offset from. */
.btn-primary {
  font-size: var(--size-8);
  font-family: 'gal-gothic-variable', 'Oswald', sans-serif; /* Oswald is the loaded fallback */
  font-style: normal;
  font-variation-settings: "wght" 420;
  padding: 1rem 2rem;
  outline: 0;
  margin: 2rem;
  border: 2px solid #fff;
  cursor: pointer;
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: #fff;                   /* white — readable on both dark bg and hero gradient */
  background-color: transparent;
  transition: .3s ease;
}
.btn-primary::after {
  content: "";
  background-color: var(--color-success-500);
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}
.btn-primary:hover {
  top: 0;
  left: 0;
  font-variation-settings: "wght" 710;
  color: var(--color-primary-700);  /* dark purple text over the green shadow on hover */
}
.btn-primary:hover::after {
  top: 0;
  left: 0;
}

/* --- Form submit button ------------------------------------ */
/* Quiet, understated — meant not to compete with the neon header */
.btn-form {
  background-color: var(--color-primary-700);  /* #281040 — darkest purple */
  border: 1px solid var(--color-primary-700);
  padding: var(--size-2) var(--size-4);        /* 0.5rem 1rem */
  border-radius: 4px;
  color: var(--color-primary-50);              /* #E4CFFE — light lavender */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.btn-form:hover {
  background-color: var(--color-primary-500);  /* #8127DB — bright purple */
  border-color:     var(--color-primary-500);
}

/* Episode artwork overlay control (explicitly overrides .btn-form defaults) */
.episode-card .episode-card-play-btn {
  position: absolute;
  bottom: 0.55rem;
  right: 0.55rem;
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  min-height: 2.35rem;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--color-primary-100);
  background-color: rgba(40, 16, 64, 0.88);
  color: var(--color-success-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: opacity 0.16s ease, transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}
.episode-card .episode-card-share-btn {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  min-height: 2.2rem;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--color-primary-100);
  background-color: rgba(40, 16, 64, 0.88);
  color: var(--color-success-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: opacity 0.16s ease, transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}
.episode-card .episode-card-share-btn:hover {
  background-color: var(--color-primary-500);
  border-color: var(--color-success-500);
}
.episode-card .episode-card-play-btn::before {
  content: "";
  display: block;
}
.episode-card .episode-card-play-btn[data-state="play"]::before {
  width: 0;
  height: 0;
  border-top: 0.34rem solid transparent;
  border-bottom: 0.34rem solid transparent;
  border-left: 0.52rem solid var(--color-success-100);
  margin-left: 0.08rem;
}
.episode-card .episode-card-play-btn[data-state="pause"]::before {
  width: 0.56rem;
  height: 0.66rem;
  background:
    linear-gradient(
      to right,
      var(--color-success-100) 0,
      var(--color-success-100) 0.19rem,
      transparent 0.19rem,
      transparent 0.37rem,
      var(--color-success-100) 0.37rem,
      var(--color-success-100) 0.56rem
    );
}
.episode-card .episode-card-play-btn:hover {
  background-color: var(--color-primary-500);
  border-color: var(--color-success-500);
  color: var(--color-success-50);
}

/* Desktop: show control only on card hover/focus */
@media (hover: hover) and (pointer: fine) {
  .episode-card .episode-card-play-btn,
  .episode-card .episode-card-share-btn {
    width: 3.525rem;
    height: 3.525rem;
    min-width: 3.525rem;
    min-height: 3.525rem;
  }
  .episode-card .episode-card-play-btn[data-state="play"]::before {
    border-top-width: 0.51rem;
    border-bottom-width: 0.51rem;
    border-left-width: 0.78rem;
    margin-left: 0.12rem;
  }
  .episode-card .episode-card-play-btn[data-state="pause"]::before {
    width: 0.84rem;
    height: 0.99rem;
    background:
      linear-gradient(
        to right,
        var(--color-success-100) 0,
        var(--color-success-100) 0.29rem,
        transparent 0.29rem,
        transparent 0.56rem,
        var(--color-success-100) 0.56rem,
        var(--color-success-100) 0.84rem
      );
  }
  .episode-card .episode-card-share-btn .share-trigger-icon {
    width: 1.45rem;
    height: 1.45rem;
  }
  .episode-card .episode-card-play-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
  }
  .episode-card .episode-card-share-btn {
    left: 0.55rem;
    right: auto;
    top: auto;
    bottom: 0.55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
  }
  .episode-card:hover .episode-card-play-btn,
  .episode-card:hover .episode-card-share-btn,
  .episode-card .episode-card-play-btn:focus-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .episode-card .episode-card-share-btn:focus-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Touch/mobile: keep it visible (no hover affordance) */
@media (hover: none), (pointer: coarse) {
  .episode-card .episode-card-play-btn {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .episode-card .episode-card-share-btn {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

/* --- Neon header centering wrapper ------------------------- */
/* .neon-header is display:inline-block (needed for the pill border),
   so it can't center itself. Wrap it in this div to center it. */
.neon-header-wrap {
  text-align: center;
  margin-bottom: var(--size-8);
}

/* --- Flash messages ---------------------------------------- */
.messages {
  max-width: 80rem;
  margin: 1rem auto;
  padding: 0 1.5rem;
}
.message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
.message-error   { background-color: var(--color-error-500);   color: var(--color-grey-50); }
.message-success { background-color: var(--color-primary-600); color: var(--color-success-100); }

/* --- Live alert strip -------------------------------------- */
.live-alert {
  background-color: rgba(72, 29, 115, 0.95);
  border-bottom: 1px solid var(--color-primary-300);
}
.live-alert-upcoming {
  background-color: rgba(40, 16, 64, 0.92);
}
.live-alert-inner {
  width: min(94%, 80rem);
  margin: 0 auto;
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.live-alert-text {
  margin: 0;
  color: var(--color-success-100);
  font-size: 0.9rem;
}
.live-alert-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.live-alert-listen-btn,
.live-alert-watch-btn,
.live-listen-btn,
.live-chat-btn {
  font-weight: 700;
  color: var(--color-success-500);
  border-color: var(--color-primary-300);
}
.live-alert-listen-btn:hover,
.live-alert-watch-btn:hover,
.live-listen-btn:hover,
.live-chat-btn:hover {
  color: var(--color-success-100);
  background-color: var(--color-primary-500);
  border-color: var(--color-primary-500);
}

/* --- Live page --------------------------------------------- */
.live-page {
  max-width: 110rem;
}
.live-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 12rem;
  margin-bottom: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: 0.65rem;
  border: 2px dashed var(--color-primary-400);
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-grey-100);
}
.live-video-placeholder-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-success-100);
  letter-spacing: 0.03em;
}
.live-video-placeholder-hint {
  font-size: 0.92rem;
  color: var(--color-grey-200);
  max-width: 28rem;
  line-height: 1.4;
}
.live-now-playing {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  margin-bottom: 1rem;
  padding: 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid var(--color-primary-300);
  background: rgba(0, 0, 0, 0.25);
}
.live-now-playing-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid var(--color-primary-300);
  background: #000;
}
.live-now-playing-body {
  min-width: 0;
}
.live-now-playing-heading {
  margin: 0.25rem 0 0;
  color: var(--color-success-100);
  font-size: 1.05rem;
}
.live-now-playing-title {
  margin: 0.3rem 0 0;
  color: var(--color-grey-100);
  font-weight: 700;
  font-size: 1.02rem;
}
.live-now-playing-subtitle {
  margin: 0.38rem 0 0;
  color: var(--color-primary-100);
  font-style: italic;
}
.live-broadcast-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(22rem, 28rem);
  gap: 1rem;
  align-items: start;
}
.live-page-top-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.live-card {
  background-color: var(--color-primary-600);
  border: 1px solid var(--color-primary-500);
  border-radius: 0.75rem;
  padding: 1rem;
}
.live-card-stream {
  min-width: 0;
}
.live-chat-card {
  min-width: 0;
}
.live-card-status {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.45rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-success-100);
  border: 1px solid var(--color-primary-200);
  background-color: rgba(172, 89, 255, 0.18);
}
.live-card-status-upcoming {
  border-color: var(--color-primary-100);
  background-color: rgba(189, 134, 244, 0.22);
}
.live-card-status-ended {
  border-color: var(--color-grey-400);
  background-color: rgba(57, 53, 66, 0.4);
  color: var(--color-grey-100);
}
.live-card h2 {
  margin: 0;
  color: var(--color-success-100);
}
.live-card-subtitle {
  margin: 0.4rem 0 0;
  color: var(--color-primary-100);
  font-style: italic;
}
.live-card-summary {
  margin: 0.55rem 0 0;
  color: var(--color-grey-100);
}
.live-video-wrap {
  margin-top: 0.9rem;
}
.live-video-player {
  width: 100%;
  display: block;
  border-radius: 0.65rem;
  border: 1px solid var(--color-primary-300);
  background: #000;
}
.live-video-player-embed {
  /* Keep iframe wrapper content-sized with no forced extra vertical space. */
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}
.live-video-player-media {
  aspect-ratio: 16 / 9;
  min-height: 28rem;
}
.live-fallback-note {
  margin: 0.65rem 0 0;
  color: var(--color-grey-200);
}
.live-card-actions {
  justify-content: flex-start;
  margin-top: 0.9rem;
  margin-bottom: 0;
}
.live-chat-embed-wrap {
  margin-top: 0.7rem;
  border: 1px solid var(--color-primary-300);
  border-radius: 0.65rem;
  overflow: hidden;
  background: #0b0b0b;
}
.live-chat-embed {
  width: 100%;
  height: 32rem;
  border: 0;
  display: block;
}
@media (max-width: 980px) {
  .live-broadcast-layout {
    grid-template-columns: 1fr;
  }
  .live-now-playing {
    grid-template-columns: 1fr;
  }
  .live-now-playing-art {
    max-width: 18rem;
  }
  .live-chat-embed {
    height: 24rem;
  }
  .live-video-player-media {
    min-height: 14rem;
  }
}

/* --- Footer ------------------------------------------------ */
.main-footer {
  background-color: var(--color-primary-600);
  border-top: 2px solid var(--color-primary-500);
  padding: 1.15rem 1.5rem 1rem;
  margin-top: 4rem;
  text-align: center;
  color: var(--color-grey-200);
  font-size: 1rem;
  line-height: 1.35;
}
.main-footer p {
  margin: 0.2rem 0;
}
.main-footer a { color: var(--color-success-500); }
.main-footer a:hover { color: var(--color-success-100); }
.footer-links-row {
  font-weight: 700;
  text-align: center;
}
.footer-donate-wrap {
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
}

.paypal-donate-form {
  margin: 0;
}

.paypal-donate-image {
  border: 0;
}

.footer-donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-success-500);
  color: var(--color-success-100);
  background-color: var(--color-primary-700);
  font-weight: 700;
}
.footer-donate-btn:hover {
  background-color: var(--color-primary-500);
}
.footer-copyright-row {
  color: var(--color-grey-300);
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

/* --- Share dialog ------------------------------------------ */
.share-dialog {
  border: 1px solid var(--color-primary-300);
  border-radius: 0.75rem;
  background-color: var(--color-primary-600);
  color: var(--color-success-100);
  width: min(95vw, 34rem);
  padding: 0;
}
.share-dialog::backdrop {
  background: rgba(12, 3, 20, 0.72);
}
.share-dialog-panel {
  margin: 0;
  padding: 1rem;
}
.share-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.share-dialog-header h2 {
  margin: 0;
  font-size: 1.25rem;
}
.share-close-btn {
  border: 1px solid var(--color-primary-300);
  background-color: var(--color-primary-700);
  color: var(--color-success-100);
  border-radius: 0.4rem;
  width: 1.9rem;
  height: 1.9rem;
  line-height: 1;
}
.share-dialog-subtitle {
  margin: 0.45rem 0 0.8rem;
  color: var(--color-grey-200);
  font-size: 0.9rem;
}
.share-field-label {
  display: block;
  font-size: 0.82rem;
  color: var(--color-grey-200);
  margin-bottom: 0.35rem;
}
.share-message-input,
.share-link-input {
  width: 100%;
  border: 1px solid var(--color-primary-300);
  border-radius: 0.45rem;
  background-color: var(--color-primary-700);
  color: var(--color-success-100);
  padding: 0.6rem;
  margin-bottom: 0.65rem;
}
.share-timestamp-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}
.share-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0.2rem 0 0.8rem;
}
.share-platform-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.share-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.share-platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary-300);
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  color: var(--color-success-100);
  background-color: var(--color-primary-700);
  font-size: 1rem;
  line-height: 1;
  overflow: hidden;
}
.share-platform-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.share-platform-icon-raster {
  object-fit: contain;
}
.share-trigger-icon {
  width: 1rem;
  height: 1rem;
  display: block;
}
.share-platform-btn:hover {
  background-color: var(--color-primary-500);
}
.share-platform-label {
  font-size: 0.62rem;
  line-height: 1;
  color: var(--color-success-100);
}
.share-feedback {
  min-height: 1.2rem;
  margin: 0.8rem 0 0;
  color: var(--color-grey-200);
  font-size: 0.8rem;
}

/* --- Persistent audio player -------------------------------- */
.persistent-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 350;
  background-color: var(--color-primary-600);
  border-top: 2px solid var(--color-primary-300);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
}
.persistent-player-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-items: center;
}
.persistent-player-meta {
  min-width: 0;
  text-align: center;
}
.persistent-player-label {
  display: none;
}
.persistent-player-title {
  color: var(--color-success-500);
  display: block;
  font-family: 'paralucent', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.persistent-player-title:hover {
  color: var(--color-success-100);
}
.persistent-player audio {
  display: none;
}
.persistent-player-controls {
  display: grid;
  gap: 0.28rem;
}
.persistent-timeline-row {
  display: grid;
  grid-template-columns: auto 1fr auto 4.5rem auto;
  align-items: center;
  gap: 0.45rem;
}
.persistent-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.persistent-control-btn {
  border: 1px solid var(--color-primary-100);
  background-color: var(--color-primary-700);
  color: var(--color-success-100);
  width: 1.78rem;
  height: 1.78rem;
  min-width: 1.78rem;
  min-height: 1.78rem;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 0.9rem;
  position: relative;
}
.persistent-nav-row #persistent-toggle-btn {
  width: 2.06rem;
  height: 2.06rem;
  min-width: 2.06rem;
  min-height: 2.06rem;
}
.persistent-nav-row #persistent-back-30-btn,
.persistent-nav-row #persistent-forward-30-btn {
  width: 1.92rem;
  height: 1.92rem;
  min-width: 1.92rem;
  min-height: 1.92rem;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.3rem 1.3rem;
}
.persistent-nav-row #persistent-back-30-btn {
  background-image: url("../images/replay-30.png");
}
.persistent-nav-row #persistent-forward-30-btn {
  background-image: url("../images/forward-30.png");
}
.persistent-control-btn:hover {
  background-color: var(--color-primary-500);
}
.persistent-control-btn:disabled {
  opacity: 0.45;
  cursor: default;
}
.persistent-toggle-btn {
  font-size: 0;
}
.persistent-toggle-btn::before {
  content: "";
  display: block;
}
.persistent-toggle-btn[data-state="play"]::before {
  width: 0;
  height: 0;
  border-top: 0.36rem solid transparent;
  border-bottom: 0.36rem solid transparent;
  border-left: 0.55rem solid var(--color-success-100);
  margin-left: 0.08rem;
}
.persistent-toggle-btn[data-state="pause"]::before {
  width: 0.6rem;
  height: 0.7rem;
  background:
    linear-gradient(
      to right,
      var(--color-success-100) 0,
      var(--color-success-100) 0.2rem,
      transparent 0.2rem,
      transparent 0.4rem,
      var(--color-success-100) 0.4rem,
      var(--color-success-100) 0.6rem
    );
}
.persistent-time {
  font-family: 'Oswald', 'paralucent', sans-serif;
  font-size: 0.78rem;
  color: var(--color-grey-100);
  min-width: 2rem;
  text-align: center;
}
.persistent-seek {
  width: 100%;
  accent-color: var(--color-success-500);
  height: 0.95rem;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.persistent-seek::-webkit-slider-runnable-track {
  height: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-success-500), var(--color-primary-200));
}
.persistent-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  margin-top: -0.29rem;
  background: var(--color-success-100);
  border: 1px solid var(--color-primary-700);
}
.persistent-seek::-moz-range-track {
  height: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-success-500), var(--color-primary-200));
  border: 0;
}
.persistent-seek::-moz-range-progress {
  height: 0.32rem;
  border-radius: 999px;
  background: var(--color-success-500);
}
.persistent-seek::-moz-range-thumb {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--color-success-100);
  border: 1px solid var(--color-primary-700);
}
.persistent-seek::-moz-focus-outer {
  border: 0;
}
.persistent-volume {
  width: 100%;
  height: 0.9rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--color-success-500);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.persistent-volume::-webkit-slider-runnable-track {
  height: 0.26rem;
  border-radius: 999px;
  background: var(--color-primary-200);
}
.persistent-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-top: -0.24rem;
  background: var(--color-success-100);
  border: 1px solid var(--color-primary-700);
}
.persistent-volume::-moz-range-track {
  height: 0.26rem;
  border-radius: 999px;
  background: var(--color-primary-200);
  border: 0;
}
.persistent-volume::-moz-range-progress {
  height: 0.26rem;
  border-radius: 999px;
  background: var(--color-success-500);
}
.persistent-volume::-moz-range-thumb {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-success-100);
  border: 1px solid var(--color-primary-700);
}
.persistent-volume::-moz-focus-outer {
  border: 0;
}
@media (max-width: 700px) {
  body.has-persistent-player {
    padding-bottom: 6.25rem;
  }
  .persistent-player-inner {
    grid-template-columns: 1fr;
    gap: 0.22rem;
    padding: 0.35rem 0.6rem;
  }
  .persistent-player-title {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  .persistent-timeline-row {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 0.28rem;
  }
  .persistent-time {
    display: inline-block;
    min-width: 1.75rem;
    font-size: 0.68rem;
  }
  .persistent-seek {
    min-width: 0;
    display: block;
  }
  .persistent-nav-row {
    gap: 0.3rem;
  }
  .persistent-control-btn {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    font-size: 0.84rem;
  }
  .persistent-nav-row #persistent-toggle-btn {
    width: 2.55rem;
    height: 2.55rem;
    min-width: 2.55rem;
    min-height: 2.55rem;
  }
  .persistent-nav-row #persistent-back-30-btn,
  .persistent-nav-row #persistent-forward-30-btn {
    width: 2.35rem;
    height: 2.35rem;
    min-width: 2.35rem;
    min-height: 2.35rem;
    background-size: 1.38rem 1.38rem;
  }
  .persistent-volume {
    display: none;
  }
}

/* --- Episode detail page ----------------------------------- */
.episode-detail {
  width: 90%;
  max-width: 50rem;
  margin: 2rem auto;
}
.episode-detail-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--color-success-500);
  font-size: 0.9rem;
}
.episode-detail-back:hover { color: var(--color-success-100); }

.episode-detail-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-100);
  margin-bottom: 0.5rem;
}
.episode-detail h1 {
  font-size: 2.5rem;
  color: var(--color-success-500);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.episode-detail-share-row {
  margin: 0.4rem 0 0.6rem;
}
.episode-detail-share-btn {
  border: 1px solid var(--color-primary-100);
  background-color: var(--color-primary-600);
  color: var(--color-success-100);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.episode-detail-share-btn:hover {
  background-color: var(--color-primary-500);
}
.episode-detail-share-time-note {
  margin: -0.6rem 0 1rem;
  color: var(--color-grey-300);
  font-size: 0.82rem;
}
.episode-detail time {
  font-style: italic;
  color: var(--color-primary-100);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1.5rem;
}
.episode-detail-image-wrap {
  position: relative;
  margin-bottom: 2rem;
}
.episode-detail-image {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.episode-detail-play-btn {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 7.2rem;
  height: 7.2rem;
  min-width: 7.2rem;
  min-height: 7.2rem;
  border-radius: 50%;
  border: 1px solid var(--color-primary-100);
  background-color: rgba(40, 16, 64, 0.9);
  color: var(--color-success-100);
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.episode-detail-play-btn::before {
  content: "";
  display: block;
}
.episode-detail-play-btn[data-state="play"]::before {
  width: 0;
  height: 0;
  border-top: 1.1rem solid transparent;
  border-bottom: 1.1rem solid transparent;
  border-left: 1.65rem solid var(--color-success-100);
  margin-left: 0.22rem;
}
.episode-detail-play-btn[data-state="pause"]::before {
  width: 1.85rem;
  height: 2.15rem;
  background:
    linear-gradient(
      to right,
      var(--color-success-100) 0,
      var(--color-success-100) 0.62rem,
      transparent 0.62rem,
      transparent 1.23rem,
      var(--color-success-100) 1.23rem,
      var(--color-success-100) 1.85rem
    );
}
.episode-detail-play-btn:hover {
  background-color: var(--color-primary-500);
  border-color: var(--color-success-500);
}
@media (max-width: 700px) {
  .episode-detail-play-btn {
    width: 5.1rem;
    height: 5.1rem;
    min-width: 5.1rem;
    min-height: 5.1rem;
  }
  .episode-detail-play-btn[data-state="play"]::before {
    border-top-width: 0.82rem;
    border-bottom-width: 0.82rem;
    border-left-width: 1.24rem;
    margin-left: 0.16rem;
  }
  .episode-detail-play-btn[data-state="pause"]::before {
    width: 1.35rem;
    height: 1.6rem;
    background:
      linear-gradient(
        to right,
        var(--color-success-100) 0,
        var(--color-success-100) 0.45rem,
        transparent 0.45rem,
        transparent 0.9rem,
        var(--color-success-100) 0.9rem,
        var(--color-success-100) 1.35rem
      );
  }
}
.episode-chapters-accordion {
  margin-bottom: 2rem;
  border: 1px solid var(--color-primary-500);
  border-radius: 0.75rem;
  background-color: var(--color-primary-600);
}
.episode-chapters-summary {
  cursor: pointer;
  list-style: none;
  padding: 0.8rem 1rem;
  font-family: 'Oswald', 'paralucent', sans-serif;
  color: var(--color-success-100);
}
.episode-chapters-summary::-webkit-details-marker {
  display: none;
}
.episode-chapters-summary::before {
  content: "▸";
  margin-right: 0.55rem;
  color: var(--color-success-500);
}
.episode-chapters-accordion[open] .episode-chapters-summary::before {
  content: "▾";
}
.episode-chapters {
  padding: 0 1rem 1rem;
}
.episode-chapters-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.episode-chapter-btn {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid var(--color-primary-300);
  background-color: var(--color-primary-700);
  color: var(--color-success-100);
  border-radius: 0.45rem;
  padding: 0.45rem 0.6rem;
}
.episode-chapter-btn:hover {
  border-color: var(--color-success-500);
  background-color: var(--color-primary-500);
}
.episode-chapter-time {
  font-family: 'Oswald', 'paralucent', sans-serif;
  color: var(--color-primary-100);
  font-size: 0.85rem;
}
.episode-chapter-title {
  font-size: 0.95rem;
}
.episode-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* --- Episode detail: "In This Episode" persons strip ---------- */
.episode-persons {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-primary-500);
}
.episode-persons-heading {
  color: var(--color-success-100);
  font-size: var(--size-5);
  margin: 0 0 var(--size-4);
}
/* Horizontal scroll of avatar chips */
.episode-persons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-4);
}
.episode-person-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-1);
  text-align: center;
  width: 5rem;
  text-decoration: none;
}
/* Circular avatar */
.episode-person-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-300);
  transition: border-color 0.15s ease;
}
/* Fallback initial circle */
.episode-person-avatar-fallback {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--color-primary-500);
  border: 2px solid var(--color-primary-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-success-100);
  transition: border-color 0.15s ease;
}
.episode-person-link:hover .episode-person-avatar,
.episode-person-link:hover .episode-person-avatar-fallback {
  border-color: var(--color-success-500);
}
.episode-person-name {
  font-size: 0.8rem;
  font-family: 'paralucent', sans-serif;
  font-weight: 700;
  color: var(--color-success-500);
  line-height: 1.2;
  overflow-wrap: break-word;
  width: 100%;
}
.episode-person-link:hover .episode-person-name { color: var(--color-success-100); }
/* "Host" label under hosts' names */
.episode-person-role {
  font-size: 0.65rem;
  color: var(--color-grey-400);
  font-style: italic;
}

.episode-shownotes {
  border-top: 1px solid var(--color-primary-500);
  padding-top: 2rem;
}
.episode-shownotes h2 {
  color: var(--color-success-500);
  margin-bottom: 1rem;
}
/* Style the raw HTML pulled from the RSS feed's content:encoded */
.episode-shownotes a { color: var(--color-primary-100); }
.episode-shownotes a:hover { color: var(--color-success-100); text-decoration: underline; }
.episode-shownotes p { margin-bottom: 1rem; }
.episode-shownotes ul,
.episode-shownotes ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* Fallback tile when an episode card has no artwork */
.episode-card-image-fallback {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* --- Shared page utilities --------------------------------- */
/* h1 on standard content pages — sits below the neon-header-wrap */
.contact-section h1,
.buds-section h1 {
  color: var(--color-success-100);
  margin-bottom: var(--size-2);
}

/* Subtitle / tagline below the neon header, used on any page */
.subtitle {
  color: var(--color-success-500);
  font-size: var(--size-6);
  font-weight: 700;
  margin-bottom: var(--size-8);
}

/* --- Contact page ------------------------------------------ */
.contact-section { max-width: 40rem; }
.form-group { margin-bottom: var(--size-5); }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-grey-100);
  margin-bottom: var(--size-2);
}

/* Styled inputs and textareas — used via class="form-input" on widgets */
.form-input {
  width: 100%;
  padding: var(--size-2) var(--size-4);
  background-color: var(--color-primary-600);
  border: 1px solid var(--color-primary-300);
  border-radius: 4px;
  color: var(--color-success-100);
  font-family: 'paralucent', 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-success-500);
  box-shadow: 0 0 0 3px rgba(129, 217, 89, 0.2);
}
.form-input::placeholder { color: var(--color-grey-400); }

.form-error {
  color: var(--color-error-100);
  font-size: 0.875rem;
  margin-top: var(--size-1);
}

/* --- Buds page --------------------------------------------- */
/* h1 and .subtitle handled by shared utilities above */
.buds-section { max-width: 80rem; }
.buds-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 1.5rem;
}
/* Force 2 columns on small phones — minmax(12rem) only fits 1 on 320–375px screens */
@media (max-width: 500px) {
  .buds-grid { grid-template-columns: repeat(2, 1fr); }
}
.bud-card {
  background-color: var(--color-primary-600);
  border: 1px solid var(--color-primary-500);
  border-radius: 0.75rem;
  padding: var(--size-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--size-3);
  /* CSS Grid items default to min-width:auto, meaning they won't shrink
     below their content's minimum width. Setting 0 lets the card shrink
     to fit its column so content can't blow out the grid. */
  min-width: 0;
}
/* Circular avatar image */
.bud-card-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-300);
}
/* Fallback tile showing the bud's first initial */
.bud-card-avatar-fallback {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--color-primary-500);
  border: 2px solid var(--color-primary-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-success-100);
}
.bud-card-name {
  font-family: 'paralucent', sans-serif;
  font-weight: 700;
  color: var(--color-success-500);
  margin: 0;
  font-size: var(--size-5);
  overflow-wrap: break-word; /* wrap long names rather than overflowing */
  word-break: break-word;
  width: 100%;
}
/* Episode count badge on each card */
.bud-card-count {
  font-size: 0.75rem;
  color: var(--color-grey-400);
  font-style: italic;
}
/* External site link — sits outside the main card link-wrap */
.bud-card-link {
  color: var(--color-primary-100);
  font-size: 0.875rem;
  transition: color 0.15s ease;
  overflow-wrap: break-word; /* prevent long URLs from overflowing the card */
  word-break: break-all;
  width: 100%;
  text-align: center;
}
.bud-card-link:hover { color: var(--color-success-100); text-decoration: underline; }

/* Wraps avatar + name + count; makes the whole card clickable to detail page */
.bud-card-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-3);
  text-decoration: none;
  width: 100%;
}
.bud-card-link-wrap:hover .bud-card-name { color: var(--color-success-100); }

/* Empty state message */
.buds-empty {
  color: var(--color-grey-400);
  grid-column: 1 / -1;
}

/* --- Sort controls (shared; used on buds list, potentially others) --- */
.sort-controls {
  display: flex;
  align-items: center;
  gap: var(--size-2);
  margin-bottom: var(--size-8);
  flex-wrap: wrap;
}
.sort-label {
  color: var(--color-grey-400);
  font-size: 0.875rem;
}
.sort-btn {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--color-primary-300);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--color-success-500);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.sort-btn:hover {
  background-color: var(--color-primary-500);
  color: var(--color-success-100);
}
.sort-btn.active {
  background-color: var(--color-primary-500);
  color: var(--color-success-100);
  border-color: var(--color-primary-500);
  font-weight: 700;
}

/* --- Bud detail page --------------------------------------- */
.bud-detail { max-width: 80rem; }

.bud-detail-back {
  display: inline-block;
  margin-bottom: var(--size-6);
  color: var(--color-success-500);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.bud-detail-back:hover { color: var(--color-success-100); }

/* Profile card: avatar left, info right; stacks on mobile */
.bud-profile {
  display: flex;
  gap: var(--size-8);
  align-items: flex-start;
  background-color: var(--color-primary-600);
  border: 1px solid var(--color-primary-500);
  border-radius: 0.75rem;
  padding: var(--size-8);
  margin-bottom: var(--size-8);
}
@media (max-width: 600px) {
  .bud-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Large circular avatar on detail page */
.bud-profile-avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary-300);
  flex-shrink: 0;
}
/* Fallback initial circle */
.bud-profile-avatar-fallback {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: var(--color-primary-500);
  border: 3px solid var(--color-primary-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-success-100);
  flex-shrink: 0;
}

.bud-profile-name {
  font-family: 'paralucent', sans-serif;
  font-size: var(--size-8);
  font-weight: 700;
  color: var(--color-success-500);
  margin: 0 0 var(--size-4);
}
.bud-profile-bio {
  color: var(--color-grey-100);
  line-height: 1.7;
  margin-bottom: var(--size-4);
}
.bud-profile-link {
  color: var(--color-primary-100);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.bud-profile-link:hover { color: var(--color-success-100); text-decoration: underline; }

/* Episodes section on the detail page */
.bud-episodes-heading {
  color: var(--color-success-100);
  font-size: var(--size-6);
  margin-bottom: var(--size-6);
}
/* Force 3 columns on the bud detail episode grid */
.bud-detail .episodes-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 700px) {
  .bud-detail .episodes-grid { grid-template-columns: repeat(2, 1fr); }
}

.bud-no-episodes {
  color: var(--color-grey-400);
  font-style: italic;
}

/* --- Success / confirmation page --------------------------- */
.success-section {
  width: 90%;
  max-width: 40rem;
  margin: var(--size-20) auto;
  text-align: center;
}
.success-section .icon  { font-size: 4rem; margin-bottom: var(--size-6); }
.success-section h1     { font-size: var(--size-16); color: var(--color-success-500); margin-bottom: var(--size-4); }
.success-section p      { font-size: var(--size-5); color: var(--color-grey-100); margin-bottom: var(--size-8); }

/* --- Pagination -------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin: var(--size-8) 0;
  flex-wrap: wrap;
}
/* Shared styles for links, current page, and disabled buttons */
.pagination a,
.pagination .current,
.pagination .disabled {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-primary-300);
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
}
.pagination a {
  color: var(--color-success-500);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.pagination a:hover {
  background-color: var(--color-primary-500);
  color: var(--color-success-100);
}
/* Current page — highlighted */
.pagination .current {
  background-color: var(--color-primary-500);
  color: var(--color-success-100);
  font-weight: 700;
}
/* Prev/Next when at first/last page */
.pagination .disabled {
  color: var(--color-grey-600);
  border-color: var(--color-grey-700);
  cursor: default;
}
/* Page count label */
.pagination .page-info {
  color: var(--color-grey-300);
  font-size: 0.85rem;
  padding: 0 0.5rem;
}

/* --- Episodes page layout (sidebar + grid) ----------------- */
.episodes-layout { max-width: 80rem; }

/* Two-column layout: sidebar left, grid right. Stacks on mobile. */
.episodes-with-sidebar {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 700px) {
  .episodes-with-sidebar { grid-template-columns: 1fr; }
}

/* Force 3 columns within the sidebar layout — the sidebar eats enough
   horizontal space that auto-fill would otherwise give 4 columns. */
.episodes-layout .episodes-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 700px) {
  /* 2 per row on mobile — matches the UX of podcast/music apps */
  .episodes-layout .episodes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Archive filter sidebar -------------------------------- */
.archive-sidebar {
  background-color: var(--color-primary-600);
  border: 1px solid var(--color-primary-500);
  border-radius: 0.75rem;
  padding: var(--size-4);
  position: sticky;
  top: 1rem;
}
.archive-sidebar h3 {
  font-family: 'Oswald', sans-serif;
  font-size: var(--size-5);
  color: var(--color-success-500);
  margin: 0 0 var(--size-3);
}
.archive-year-group { margin-bottom: var(--size-2); }

/* --- Mobile archive dropdown ------------------------------- */
/* Hidden on desktop — the sidebar handles filtering there.
   On mobile the sidebar is hidden and this select takes over. */
.archive-select {
  display: none;
}

@media (max-width: 700px) {
  .archive-sidebar  { display: none; }
  .archive-select {
    display: block;
    width: 100%;
    padding: var(--size-2) var(--size-3);
    background-color: var(--color-primary-600);
    border: 1px solid var(--color-primary-500);
    border-radius: 0.5rem;
    color: var(--color-success-100);
    font-family: 'paralucent', 'Roboto', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    /* webkit/blink override so the arrow colour matches */
    -webkit-appearance: auto;
    appearance: auto;
  }
  .archive-select:focus {
    outline: none;
    border-color: var(--color-success-500);
    box-shadow: 0 0 0 2px rgba(129, 217, 89, 0.25);
  }
}

/* Year link — bold, acts as a section heading */
.archive-year-link {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-success-100);
  padding: 0.2rem 0;
  transition: color 0.15s ease;
}
.archive-year-link:hover,
.archive-year-link.active { color: var(--color-success-500); }

/* Month list — shown when the parent year is selected */
.archive-months {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0 0 0 var(--size-4);
}
.archive-months li a {
  display: block;
  color: var(--color-grey-200);
  font-size: 0.85rem;
  padding: 0.15rem 0;
  transition: color 0.15s ease;
}
.archive-months li a:hover,
.archive-months li a.active { color: var(--color-success-500); }

/* Clear filters link */
.archive-clear {
  display: inline-block;
  margin-bottom: var(--size-3);
  color: var(--color-primary-100);
  font-size: 0.8rem;
  text-decoration: underline;
}
.archive-clear:hover { color: var(--color-success-100); }

/* Active filter label above the grid */
.filter-active-label {
  color: var(--color-grey-300);
  font-size: 0.85rem;
  margin-bottom: var(--size-4);
}

/* --- Podroll / Roll Call pages ----------------------------- */
.podroll-list-section {
  max-width: 80rem;
}
.podroll-grid .podroll-card .episode-card-content h4 {
  min-height: 2.4em;
}
.podroll-subtitle {
  color: var(--color-grey-200);
  font-size: 0.88rem;
  line-height: 1.35;
}
@media (max-width: 700px) {
  .podroll-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }
  .podroll-grid .podroll-card .episode-card-content {
    padding: var(--size-3);
  }
  .podroll-grid .podroll-card .episode-card-content h4 {
    font-size: 0.93rem;
    line-height: 1.25;
  }
  .podroll-grid .podroll-card .podroll-subtitle {
    font-size: 0.78rem;
    line-height: 1.25;
  }
}

/* --- Value for Value page ---------------------------------- */
.v4v-section {
  max-width: 84rem;
}

.v4v-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.v4v-card {
  background-color: var(--color-primary-600);
  border: 1px solid var(--color-primary-500);
  border-radius: 0.75rem;
  padding: var(--size-5);
}

.v4v-card h2 {
  margin: 0 0 0.45rem;
  color: var(--color-success-100);
  font-size: 1.25rem;
}

.v4v-card p {
  margin: 0.5rem 0 0;
  color: var(--color-grey-100);
}

.v4v-card a {
  color: var(--color-primary-100);
}

.v4v-card a:hover {
  color: var(--color-success-100);
  text-decoration: underline;
}

.v4v-note {
  color: var(--color-grey-300);
  font-size: 0.85rem;
}

.v4v-phone-link {
  color: var(--color-success-500);
  font-weight: 700;
}

.v4v-phone-link:hover {
  color: #5ea73f;
}

.v4v-mailing {
  line-height: 1.5;
}

.v4v-btn {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  padding: 0.65rem 1rem;
}

.v4v-card .paypal-donate-form {
  margin-top: 0.9rem;
}

.v4v-card-paypal .paypal-donate-form {
  display: flex;
  justify-content: center;
}

.v4v-nostr-list {
  margin-top: 0.8rem;
  gap: var(--size-5);
  justify-content: center;
}

.v4v-nostr-link .episode-person-avatar-fallback {
  width: 3.2rem;
  height: 3.2rem;
}

.podroll-detail {
  max-width: 56rem;
}
.podroll-show-subtitle {
  color: var(--color-success-100);
  font-size: 1.05rem;
  font-style: italic;
  margin: 0 0 0.6rem;
}
.podroll-show-summary {
  color: var(--color-grey-100);
  margin-bottom: 1rem;
}
.podroll-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.podroll-links a,
.podroll-open-link {
  color: var(--color-primary-100);
}
.podroll-link-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background-color: var(--color-success-500);
  border-color: var(--color-success-500);
  color: var(--color-primary-500);
  font-weight: 700;
}
.podroll-links .podroll-link-btn,
.podroll-links .podroll-link-btn:visited,
.podroll-links button.podroll-link-btn {
  color: var(--color-primary-500) !important;
}
.podroll-link-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-block;
  flex: 0 0 auto;
}
.podroll-guid-status {
  font-size: 0.85rem;
  color: var(--color-success-100);
  align-self: center;
  min-width: 5.2rem;
}
.podroll-links .podroll-link-btn:hover,
.podroll-links .podroll-link-btn:focus-visible {
  background-color: var(--color-success-100);
  border-color: var(--color-success-100);
  color: var(--color-primary-500) !important;
  text-decoration: none;
}
.podroll-links a:hover,
.podroll-open-link:hover {
  color: var(--color-success-100);
  text-decoration: underline;
}

.podroll-recent h2 {
  color: var(--color-success-500);
  margin-bottom: 0.25rem;
}
.podroll-refresh-meta {
  margin: 0 0 0.9rem;
  color: var(--color-grey-300);
  font-size: 0.8rem;
}
.podroll-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.podroll-recent-item {
  display: block;
  border: 1px solid var(--color-primary-500);
  background: var(--color-primary-600);
  border-radius: 0.6rem;
  padding: 0.75rem;
  overflow: hidden;
}
.podroll-recent-art-wrap {
  position: relative;
  float: right;
  margin-left: 0.9rem;
  margin-bottom: 0.45rem;
}
.podroll-recent-art {
  width: 168px;
  height: 168px;
  border-radius: 0.45rem;
  object-fit: cover;
}
.podroll-recent-art-fallback {
  width: 168px;
  height: 168px;
  border-radius: 0.45rem;
}
.podroll-recent-play-btn {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  min-height: 2.2rem;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--color-primary-100);
  background-color: rgba(40, 16, 64, 0.88);
  color: var(--color-success-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.podroll-recent-share-btn {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  min-height: 2.2rem;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--color-primary-100);
  background-color: rgba(40, 16, 64, 0.88);
  color: var(--color-success-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.podroll-recent-share-btn:hover {
  background-color: var(--color-primary-500);
  border-color: var(--color-success-500);
}
.podroll-recent-share-btn .share-trigger-icon {
  width: 1rem;
  height: 1rem;
}
.podroll-recent-play-btn::before {
  content: "";
  display: block;
}
.podroll-recent-play-btn[data-state="play"]::before {
  width: 0;
  height: 0;
  border-top: 0.34rem solid transparent;
  border-bottom: 0.34rem solid transparent;
  border-left: 0.52rem solid var(--color-success-100);
  margin-left: 0.08rem;
}
.podroll-recent-play-btn[data-state="pause"]::before {
  width: 0.56rem;
  height: 0.66rem;
  background:
    linear-gradient(
      to right,
      var(--color-success-100) 0,
      var(--color-success-100) 0.19rem,
      transparent 0.19rem,
      transparent 0.37rem,
      var(--color-success-100) 0.37rem,
      var(--color-success-100) 0.56rem
    );
}
.podroll-recent-play-btn:hover {
  background-color: var(--color-primary-500);
  border-color: var(--color-success-500);
}
@media (min-width: 701px) and (hover: hover) and (pointer: fine) {
  .podroll-recent-play-btn,
  .podroll-recent-share-btn {
    width: 3.3rem;
    height: 3.3rem;
    min-width: 3.3rem;
    min-height: 3.3rem;
  }
  .podroll-recent-share-btn {
    left: 0.45rem;
    right: auto;
    top: auto;
    bottom: 0.45rem;
  }
  .podroll-recent-play-btn[data-state="play"]::before {
    border-top-width: 0.51rem;
    border-bottom-width: 0.51rem;
    border-left-width: 0.78rem;
    margin-left: 0.12rem;
  }
  .podroll-recent-play-btn[data-state="pause"]::before {
    width: 0.84rem;
    height: 0.99rem;
    background:
      linear-gradient(
        to right,
        var(--color-success-100) 0,
        var(--color-success-100) 0.29rem,
        transparent 0.29rem,
        transparent 0.56rem,
        var(--color-success-100) 0.56rem,
        var(--color-success-100) 0.84rem
      );
  }
  .podroll-recent-share-btn .share-trigger-icon {
    width: 1.35rem;
    height: 1.35rem;
  }
}
.podroll-recent-body h4 {
  margin: 0 0 0.35rem;
  color: var(--color-success-100);
  font-size: 1.05rem;
}
.podroll-recent-meta {
  color: var(--color-primary-100);
  font-size: 0.82rem;
  margin: 0 0 0.45rem;
}
.podroll-recent-body p {
  margin: 0.25rem 0;
}
.podroll-recent-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.podroll-recent-more-wrap {
  margin: 1rem 0 0;
  text-align: center;
}
.podroll-recent-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 700px) {
  .podroll-recent-item {
    overflow: hidden;
  }
  .podroll-recent-art-wrap {
    margin-left: 0.65rem;
    margin-bottom: 0.35rem;
  }
  .podroll-recent-art {
    width: 120px;
    height: 120px;
    aspect-ratio: auto;
  }
  .podroll-recent-art-fallback {
    width: 120px;
    height: 120px;
    aspect-ratio: auto;
  }
  .podroll-recent-actions {
    flex-wrap: wrap;
  }
  .podroll-open-link {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .podroll-recent-play-btn {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
  .podroll-recent-play-btn[data-state="play"]::before {
    border-top-width: 0.4rem;
    border-bottom-width: 0.4rem;
    border-left-width: 0.62rem;
    margin-left: 0.09rem;
  }
  .podroll-recent-play-btn[data-state="pause"]::before {
    width: 0.68rem;
    height: 0.78rem;
    background:
      linear-gradient(
        to right,
        var(--color-success-100) 0,
        var(--color-success-100) 0.23rem,
        transparent 0.23rem,
        transparent 0.45rem,
        var(--color-success-100) 0.45rem,
        var(--color-success-100) 0.68rem
      );
  }
  .podroll-recent-body h4 {
    font-size: 0.98rem;
    line-height: 1.25;
  }
  .podroll-recent-body p {
    font-size: 0.88rem;
  }
}
