:root {
  --bg: #e7f0ed;
  --surface: #ffffff;
  --ink: #0b0b0b;
  --muted: #5d6b67;
  --line: rgba(11, 11, 11, 0.08);
  --gold: #f6c90e;
  --teal: #57b894;
  --teal-deep: #1f7a5c;
  --studio: #101412;
  --studio-2: #1a211e;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(11, 11, 11, 0.08);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Vazirmatn", Vazir, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: clip;
}
img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; padding-inline: env(safe-area-inset-right) env(safe-area-inset-left); }
.screen-reader-text, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  inset: 12px;
  background: #fff;
  padding: 8px 12px;
  z-index: 100;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(1.8rem, 4.2vw, 3.15rem); }
h2 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
h3 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 12px; }
.lede { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 36em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}
.kicker--light { color: var(--teal-deep); }
.kicker--light::before { background: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-play {
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 24px rgba(246, 201, 14, .28);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.follow-band .btn-ghost,
.hero-actions .btn-ghost { color: #fff; }

.icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.icon svg { display: block; }
.play-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    0 10px 28px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  flex: 0 0 auto;
}
.play-icon .icon {
  width: 64%;
  height: 64%;
  display: grid;
  place-items: center;
}
.play-icon svg {
  width: 100%;
  height: 100%;
  transform: translateX(6%);
}
.audio-controls .icon svg,
.audio-play .icon svg,
.show-tab .icon svg { transform: none; }
.btn-play .play-icon {
  width: 28px;
  height: 28px;
  background: #111;
  color: var(--gold);
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(1.25);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.site-header.is-stuck {
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 32px rgba(11, 11, 11, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}
.site-header.is-stuck .header-inner { min-height: 68px; }
.custom-logo-link, .site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.custom-logo, .site-logo img { max-height: 42px; width: auto; }
.site-nav--desk {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.nav-drawer {
  display: none;
}
.header-search--mobile { display: none; }
.site-nav .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  position: relative;
  display: block;
  padding: 8px 14px;
  color: #3f4b47;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.site-nav a:hover {
  color: var(--ink);
  background: rgba(11,11,11,.04);
}
.site-nav .current-menu-item a,
.site-nav .current_page_item a {
  background: #111;
  color: #fff;
}
.site-nav .current-menu-item a::after,
.site-nav .current_page_item a::after { display: none; }
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-inline-start: auto;
}
.header-search--desk {
  display: flex;
  align-items: center;
  width: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 2px;
  transition: width .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.header-search--desk input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 0;
  min-width: 0;
  padding: 0;
  opacity: 0;
  font-size: .9rem;
}
.header-search--desk:focus-within {
  width: 230px;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246,201,14,.18);
}
.header-search--desk:focus-within input {
  width: 100%;
  padding: 8px 10px 8px 4px;
  opacity: 1;
}
.header-search button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  white-space: nowrap;
  box-shadow: none;
}
.header-cta:hover { color: #fff; background: #222; }
.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span:not(.screen-reader-text) {
  position: absolute;
  inset-inline: 11px;
  height: 1.5px;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}
.nav-backdrop { display: none; }
body.nav-open { overflow: hidden; }

.hero {
  position: relative;
  overflow: hidden;
  background: #070908;
  color: #fff;
  padding: 56px 0 88px;
  min-height: min(78vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(1.3);
  transform: scale(1.08);
  opacity: .42;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(246,201,14,.22), transparent 55%),
    radial-gradient(55% 50% at 0% 100%, rgba(87,184,148,.28), transparent 50%),
    linear-gradient(180deg, rgba(7,9,8,.35) 0%, rgba(7,9,8,.78) 62%, #070908 100%);
}
.hero-glow {
  position: absolute;
  inset: auto -10% -30% 30%;
  height: 280px;
  background: radial-gradient(closest-side, rgba(246,201,14,.16), transparent 70%);
  pointer-events: none;
}
.hero-eq {
  position: absolute;
  inset-inline-start: 7%;
  bottom: 120px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
  opacity: .18;
  pointer-events: none;
  z-index: 1;
}
.hero-eq span {
  width: 4px;
  border-radius: 99px;
  background: var(--gold);
  transform-origin: bottom;
  animation: eq 1.2s ease-in-out infinite;
}
.hero-eq span:nth-child(1) { height: 16px; animation-delay: .1s; }
.hero-eq span:nth-child(2) { height: 32px; animation-delay: .2s; }
.hero-eq span:nth-child(3) { height: 22px; animation-delay: .35s; }
.hero-eq span:nth-child(4) { height: 44px; animation-delay: .15s; }
.hero-eq span:nth-child(5) { height: 18px; animation-delay: .4s; }
.hero-eq span:nth-child(6) { height: 36px; animation-delay: .05s; }
.hero-eq span:nth-child(7) { height: 26px; animation-delay: .3s; }
.hero-eq span:nth-child(8) { height: 14px; animation-delay: .22s; }
.hero-eq span:nth-child(9) { height: 40px; animation-delay: .12s; }
.hero-eq span:nth-child(10) { height: 20px; animation-delay: .28s; }
.hero-eq span:nth-child(11) { height: 30px; animation-delay: .18s; }
.hero-eq span:nth-child(12) { height: 12px; animation-delay: .32s; }
@keyframes eq {
  0%, 100% { transform: scaleY(.45); }
  50% { transform: scaleY(1); }
}
.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero-stage--intro {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1.1fr);
  gap: 40px 56px;
}
.hero--intro {
  min-height: 0;
  padding: 48px 0 72px;
}
.hero--intro .hero-info h1 {
  max-width: 18ch;
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
  line-height: 1.35;
}
.hero--episode {
  min-height: 0;
  padding: 40px 0 64px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero--episode .hero-info h2 {
  max-width: 20ch;
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.35;
  margin: 0;
}
.hero-video {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 28px 70px rgba(0,0,0,.45);
}
.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-cover {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 32px 80px rgba(0,0,0,.5),
    0 0 90px rgba(246,201,14,.14);
}
.hero-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.hero-cover .play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  background: rgba(255, 255, 255, .14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    0 16px 40px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  transition: transform .2s ease, background .2s ease;
}
.hero-cover:hover .play-icon {
  transform: scale(1.08);
  background: rgba(255, 255, 255, .22);
}
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
}
.hero-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 4px rgba(255,77,77,.18);
  animation: live 1.6s ease-in-out infinite;
}
@keyframes live {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
.hero-part {
  margin: 0 0 10px;
  color: rgba(255,255,255,.58);
  font-size: .92rem;
  font-weight: 700;
}
.hero-info h1 {
  max-width: 20ch;
  font-size: clamp(1.45rem, 3.1vw, 2.35rem);
  line-height: 1.35;
}
.hero-lede {
  margin: 12px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 32em;
}
.hero-info .show-guest {
  display: inline-flex;
  margin-top: 6px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.hero-info .show-guest p { color: #fff; font-size: .92rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.hero-stats {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  border: 0;
}
.hero-stats div { margin: 0; }
.hero-stats strong { display: block; font-size: 1.2rem; line-height: 1.1; }
.hero-stats span { color: rgba(255,255,255,.52); font-size: .78rem; }
.hero-listen {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 36px;
}
.hero-listen .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-listen__platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.hero-listen p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  font-weight: 700;
}

.band { padding: 80px 0; }
.band--paper { background: #fff; }
.band--soft { background: var(--bg); }
.band--ink { background: #0b0d0c; color: #fff; }
.band--lift {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  border-radius: 32px 32px 0 0;
  padding-top: 56px;
  box-shadow: 0 -18px 40px rgba(0,0,0,.12);
}
.band--archive { padding-top: 36px; }

.band--ink .section-head h2 { color: #fff; }
.band--ink .text-link { color: var(--gold); }

.section { padding: 64px 0; }
.section--tight { padding-top: 12px; }
.section--rail { padding-bottom: 24px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 24px;
}
.text-link { font-weight: 800; color: var(--teal-deep); }
.text-link:hover { color: var(--ink); }

.episode-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: 16px;
  overflow-x: auto;
  padding: 4px max(24px, calc((100% - var(--max)) / 2)) 18px;
  scrollbar-width: thin;
}
.episode-rail .podcast-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.episode-rail .podcast-card:hover { transform: translateY(-6px); box-shadow: none; }
.episode-rail .podcast-card__media { border-radius: 18px; }
.episode-rail .podcast-card__body { padding: 12px 2px 0; }
.episode-rail .podcast-card__badge { display: none; }

.about-shoacast {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.about-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, .45fr);
  gap: 32px 48px;
  align-items: center;
  margin-bottom: 48px;
}
.about-intro__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.35;
  white-space: nowrap;
}
.about-intro__copy > p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.95;
}
.about-intro__brand {
  margin: 0;
  justify-self: end;
  width: min(100%, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(11,11,11,.1);
  box-shadow: none;
}
.about-intro__logo {
  width: 88%;
  height: auto;
  display: block;
}

.host-guests {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) auto minmax(0, 1.15fr);
  gap: 28px 20px;
  align-items: stretch;
}
.host-guests__host {
  display: grid;
  gap: 20px;
  align-content: start;
}
.host-guests__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 24px;
  min-width: 44px;
}
.host-guests__bridge-line {
  flex: 1;
  width: 1px;
  min-height: 48px;
  background: linear-gradient(180deg, transparent, rgba(11,11,11,.18), transparent);
}
.host-guests__bridge-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--teal-deep);
  white-space: nowrap;
}
.host-guests__guests {
  display: grid;
  gap: 22px;
  align-content: start;
  min-width: 0;
  padding: 28px;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.host-guests__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.host-guests__count {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.about-media {
  margin: 0;
  position: relative;
  aspect-ratio: 1;
}
.about-media__frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 1px rgba(11,11,11,.06),
    0 24px 48px rgba(11,11,11,.1);
}
.about-media__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.about-media:hover .about-media__frame img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .about-media__frame img { transition: none; }
  .about-media:hover .about-media__frame img { transform: none; }
}
.about-media__cap {
  position: absolute;
  z-index: 2;
  inset-inline: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11,13,12,.78);
  color: #fff;
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
}
.about-media__cap strong {
  font-size: 1.08rem;
  line-height: 1.3;
}
.about-media__cap span {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
}
.about-block a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-block a:hover { color: var(--teal-deep); }
.about-block--host {
  padding-block: 22px;
  padding-inline: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.about-block--host .kicker { margin-bottom: 10px; }
.about-block--host p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.9;
}
.about-block--host p:last-child { margin-bottom: 0; }

.face-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 118px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.face-row--panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: unset;
  gap: 16px 12px;
  overflow: visible;
  max-height: none;
  cursor: auto;
  touch-action: auto;
}
.face {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.face img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
}
.face-row--panel .face img {
  width: 72px;
  height: 72px;
  border-width: 2px;
}
.face span { font-size: .8rem; font-weight: 700; line-height: 1.3; }
.face-row--panel .face span { font-size: .72rem; }
.face-pager { min-width: 0; }
.face-pager [data-face-page][hidden] {
  display: none !important;
}
.face--nav {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.face--nav .face__nav-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed rgba(11,11,11,.22);
  background: #fff;
  color: var(--ink);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.face--nav:hover .face__nav-icon {
  background: var(--ink);
  border-color: var(--ink);
  border-style: solid;
  color: #fff;
  transform: scale(1.04);
}
.face--nav span:last-child {
  font-size: .72rem;
  font-weight: 800;
}

.brand-mark {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: currentColor;
}
.brand-mark svg {
  width: 20px;
  height: 20px;
  display: block;
}
.brand-mark--aparat,
.brand-mark--aparat svg {
  width: 24px;
  height: 24px;
}
.brand-mark--mask {
  background-color: currentColor;
  -webkit-mask: var(--brand-src) center / contain no-repeat;
  mask: var(--brand-src) center / contain no-repeat;
}

.listen-row__links { display: flex; flex-wrap: wrap; gap: 10px; }
.listen-row__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
}
.listen-row__links a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.card-grid { display: grid; gap: 18px; }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.podcast-card, .post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11,11,11,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.podcast-card:hover, .post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.podcast-card__media, .post-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dce8e4;
}
.podcast-card__media img,
.media-fallback {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.post-card__media img,
.post-card .media-fallback {
  aspect-ratio: 16 / 10;
}
.media-fallback { display: block; background: linear-gradient(135deg, #d7efe4, #f4e7a4); }
.podcast-card__media .play-icon {
  position: absolute;
  inset-inline-end: 12px;
  bottom: 12px;
}
.podcast-card__badge {
  position: absolute;
  inset-inline-start: 10px;
  top: 10px;
  background: rgba(16,20,18,.82);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 999px;
}
.podcast-card__body, .post-card__body { padding: 14px 14px 16px; }
.podcast-card h3, .post-card h3 { margin-bottom: 6px; }
.podcast-card h3 a:hover, .post-card h3 a:hover { color: var(--teal-deep); }
.meta, .post-card time { color: var(--muted); font-size: .86rem; }
.post-card p { color: var(--muted); font-size: .92rem; margin: 0; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.studio-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.studio-card--host {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  background: #111;
  color: #fff;
  border: 0;
}
.studio-card--host a { color: var(--gold); }
.host-media img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
}

.guest-chips,
.face-row:not(.face-row--panel) {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}
.guest-chips a,
.face-row a {
  cursor: pointer;
  -webkit-user-drag: none;
}
.guest-chips::-webkit-scrollbar,
.face-row::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.guest-chips.is-dragging,
.face-row.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.guest-chips.is-dragging a,
.face-row.is-dragging a {
  pointer-events: none;
}
.guest-chips img,
.face-row img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.guest-chips {
  display: flex;
  gap: 8px;
  padding: 4px 2px 14px;
}
.guest-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.guest-chip img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}
.guest-chip:not(:has(img)) { padding: 8px 14px; }
.guest-chip strong { font-size: .82rem; }
.guest-chip small { color: var(--muted); font-size: .72rem; }
.guest-chip.is-active,
.guest-chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.guest-chip.is-active small,
.guest-chip:hover small { color: rgba(255,255,255,.7); }

.follow-band {
  background: var(--studio);
  color: #fff;
  padding: 48px 0;
}
.follow-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.follow-band p { color: rgba(255,255,255,.7); margin: 0; }
.follow-band .hero-actions { margin: 0; }

.page-hero {
  padding: 48px 0 64px;
  background: var(--bg);
}
.page-hero h1 { max-width: 16ch; }
.page-hero p { color: var(--muted); max-width: 40em; }
.page-hero time { color: var(--muted); font-weight: 700; font-size: .9rem; }

.archive-hero {
  padding: 40px 0 28px;
  background: transparent;
}
.archive-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 1fr);
  gap: 20px 40px;
  align-items: center;
}
.archive-hero h1 {
  max-width: 16em;
  color: var(--ink);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.35;
}
.archive-hero p {
  color: var(--muted);
  max-width: 36em;
}
.archive-hero__stats {
  display: flex;
  gap: 28px;
  margin: 22px 0 0;
}
.archive-hero__stats div { margin: 0; }
.archive-hero__stats strong { display: block; font-size: 1.35rem; line-height: 1.15; }
.archive-hero__stats span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  white-space: nowrap;
}
.archive-hero__art {
  margin: 0;
  overflow: visible;
}
.archive-wave {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: .5;
}

.blog-hero {
  padding: 52px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.blog-hero h1 { max-width: 16ch; }
.blog-hero p { color: var(--muted); max-width: 38em; }

.post-lead {
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}
.post-lead__media {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: #dce8e4;
}
.post-lead__media img,
.post-lead .media-fallback {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.post-lead__copy time {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}
.post-lead__copy h2 { max-width: 16ch; }
.post-lead__copy p { color: var(--muted); }

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.post-card__meta span { color: var(--teal-deep); }

.story-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 64px;
  background: #070908;
  color: #fff;
}
.story-hero__bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: blur(42px) saturate(1.15);
  opacity: .34;
}
.story-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 50% at 100% 0%, rgba(246,201,14,.14), transparent 58%),
    linear-gradient(180deg, rgba(7,9,8,.2), rgba(7,9,8,.88));
}
.story-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 40px 48px;
  align-items: center;
}
.story-back {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  font-weight: 700;
}
.story-back:hover { color: var(--gold); }
.story-hero h1 {
  max-width: 16ch;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
}
.story-lead {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 36em;
}
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}
.story-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 700;
}
.story-meta__item .icon {
  color: var(--gold);
}
.story-meta__item time,
.story-meta__item span {
  color: inherit;
}
.story-hero__media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 28px 60px rgba(0,0,0,.45);
}
.story-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.band--ink .podcast-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}
.band--ink .podcast-card h3 a { color: #fff; }
.band--ink .meta { color: rgba(255,255,255,.62); }

.app-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 88px;
  background: #070908;
  color: #fff;
}
.app-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(50% 50% at 80% 20%, rgba(246,201,14,.18), transparent 55%),
    radial-gradient(40% 40% at 10% 80%, rgba(87,184,148,.16), transparent 60%);
}
.app-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 48px;
  align-items: center;
}
.app-hero h1 { max-width: 14ch; }
.app-hero p { color: rgba(255,255,255,.74); max-width: 34em; }
.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.app-hero__icon {
  margin: 0;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  background: #fff;
}
.app-hero__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.app-features article {
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg);
}
.app-features strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.app-features span { color: var(--muted); }
.app-guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.app-guide__grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.app-guide__grid p { margin: 8px 0 0; color: var(--muted); }
.app-privacy { margin: 28px 0 0; }

.sort-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.sort-box > span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
}

.story {
  position: relative;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 72px 0 88px;
  background: #070908;
  color: #fff;
}
.story-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.story-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,8,.15) 0%, rgba(7,9,8,.82) 70%, #070908 100%);
}
.story-copy { position: relative; z-index: 1; max-width: 760px; }
.story-copy time {
  display: block;
  margin: 0 0 12px;
  color: rgba(255,255,255,.6);
  font-weight: 700;
}
.story-copy h1 { max-width: 18ch; }
.story-body .prose { padding-bottom: 24px; }
.story-body .article-cover { max-width: 800px; margin-inline: auto; }

.show {
  position: relative;
  overflow: hidden;
  background: #070908;
  color: #fff;
  padding: 72px 0 180px;
}
.show-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(1.2);
  opacity: .38;
}
.show-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(246,201,14,.16), transparent 55%),
    linear-gradient(180deg, rgba(7,9,8,.25), rgba(7,9,8,.92));
}
.show-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 0;
}
.show-cover {
  width: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 24px 60px rgba(0,0,0,.45);
}
.show-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.show-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
}
.show-back {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  font-weight: 700;
}
.show-back:hover { color: var(--gold); }
.show-guest {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.show-guest p {
  margin: 0;
  color: #fff;
}
.show-guest img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex: 0 0 auto;
}
.episode {
  overflow: visible;
}
body.single-shoa-podcast {
  background: #fff;
}
.episode-player,
.episode-player.band--paper {
  background: transparent !important;
  margin-top: -130px;
  padding-top: 0;
  padding-bottom: 40px;
  position: relative;
  z-index: 6;
  border-radius: 0;
}
.episode-player > .container {
  margin-top: 0;
  position: relative;
  z-index: 6;
}
.episode-player + .episode-body {
  padding-top: 8px;
}
.show-dock {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(11,11,11,.08);
  box-shadow: none !important;
  filter: none;
}
.show-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-width: 420px;
  padding: 6px;
  margin-bottom: 16px;
  background: #f2f2f2;
  border-radius: 16px;
}
.show-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.show-tab.is-active {
  background: var(--gold);
  color: #111;
}
.show-panel[hidden] { display: none !important; }
.show-player {
  direction: ltr;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  background: linear-gradient(180deg, #1a1d1b 0%, #101210 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 10px 12px 10px 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.show-player audio { display: none; }
.show-player__track {
  display: grid;
  grid-template-columns: 4.4em minmax(0, 1fr) 4.4em;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.ctrl {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}
.ctrl svg {
  display: block;
  flex: 0 0 auto;
}
.ctrl--main {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: #111;
}
.ctrl--main [data-play-icon] svg {
  transform: translateX(1px);
}
.ctrl--rate {
  width: auto;
  min-width: 44px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
}
.ctrl--rate:hover { background: rgba(255,255,255,.14); }
.time {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  min-width: 4.4em;
  letter-spacing: .02em;
  line-height: 1;
}
.time--current { text-align: left; }
.time--duration {
  text-align: right;
  color: rgba(255,255,255,.5);
}
.seek {
  position: relative;
  height: 6px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
  padding: 0;
  cursor: pointer;
  overflow: visible;
}
.seek:hover { height: 8px; }
.seek__buffer,
.seek__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}
.seek__buffer { background: rgba(255,255,255,.28); }
.seek__fill { background: var(--gold); }
.seek__fill::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.part-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.part-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
}
.part-chip.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.episode-body { padding-top: 8px; }
.episode-body .prose { padding-bottom: 8px; }
.band .page-body { padding-bottom: 0; }

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 22px;
}
.sort-tabs { display: inline-flex; flex-wrap: nowrap; gap: 6px; }
.sort-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .88rem;
}
.sort-tabs a.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.prose {
  max-width: 680px;
  margin-inline: auto;
  padding-bottom: 64px;
}
.prose--wide { max-width: 760px; }
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  margin: 2.1em 0 .7em;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.prose h3 {
  margin: 1.7em 0 .55em;
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 800;
}
.prose h4 {
  margin: 1.4em 0 .4em;
  font-size: 1.02rem;
  font-weight: 800;
}
.prose p,
.prose li {
  font-size: 1.08rem;
  line-height: 2;
  color: #2a3330;
}
.prose p { margin: 0 0 1.15em; }
.prose ul,
.prose ol { margin: 0 0 1.2em; padding-inline-start: 1.3em; }
.prose li { margin: 0 0 .45em; }
.prose a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 4px; }
.prose strong { color: var(--ink); font-weight: 800; }
.prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 18px;
  border-inline-start: 3px solid var(--gold);
  color: #1b2321;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.85;
}
.prose hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 2.2em 0;
}
.prose figure { margin: 1.6em 0; }
.prose img { border-radius: 18px; }
.prose figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}
.article-cover { margin-bottom: 28px; }
.article-cover img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.home-article .prose { padding-bottom: 0; }
details.faq,
.prose details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  margin: 10px 0;
  overflow: clip;
}
details.faq summary,
.prose details summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  line-height: 1.55;
}
details.faq summary::-webkit-details-marker,
.prose details summary::-webkit-details-marker { display: none; }
details.faq summary::after,
.prose details summary::after {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / 10px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 10px no-repeat,
    #eef3f1;
  color: var(--ink);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background-color .25s ease, color .25s ease;
}
details.faq[open] summary::after,
.prose details[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--ink);
  color: #fff;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center, center;
  background-size: 10px 1.5px, 1.5px 10px;
  background-repeat: no-repeat;
}
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.22, 1, .36, 1);
}
details.faq[open] > .faq__body,
.prose details[open] > .faq__body {
  grid-template-rows: 1fr;
}
.faq__body > * {
  overflow: hidden;
  min-height: 0;
}
.faq__body p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.site-footer {
  background: #0b0d0c;
  color: #c9d6d1;
  padding: 48px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer h2 { color: #fff; font-size: 1.05rem; }
.site-footer a { color: #fff; }
.platform-list, .footer-menu .menu { list-style: none; margin: 0; padding: 0; }
.platform-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.platform-list a span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .88rem;
}
.host-msg {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 14px 10px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(246,201,14,.16), rgba(255,255,255,.05));
  border: 1px solid rgba(246,201,14,.35);
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.host-msg:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(246,201,14,.28), rgba(255,255,255,.08));
}
.host-msg img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid var(--gold);
}
.host-msg__copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.host-msg small {
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  font-weight: 800;
}
.host-msg strong {
  font-size: .98rem;
  line-height: 1.3;
}
.host-msg em {
  font-style: normal;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
}
.host-msg__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
}
.footer-menu .menu { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.footer-copy { margin-top: 28px; opacity: .6; font-size: .88rem; }

.related_podcasts .related_item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--bg);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}
.related_podcasts .related_item.active { outline: 2px solid var(--teal); }
.related_podcasts img { width: 92px; height: 92px; object-fit: cover; }
.wrapper_tabs_name { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.single-shoa-player-wrapper .tabs {
  display: inline-flex;
  background: var(--bg);
  border-radius: 999px;
  padding: 4px;
}
.single-shoa-player-wrapper .tabs > div {
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.single-shoa-player-wrapper .tabs > div.active {
  background: var(--ink);
  color: #fff;
}
.player-item { display: none; }
.player-item.active { display: block; }
.player-item audio { width: 100%; }
.single-shoa-podcast .shoa-podcast-player { height: auto !important; overflow: visible !important; }

.page-body { padding-bottom: 64px; }
.page-body--rich { padding-top: 28px; }
.pagination { margin-top: 32px; }
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 700;
  line-height: 1;
}
.pagination .page-numbers.current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.empty-note { color: var(--muted); }
.comments-wrap {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 0 0 48px;
}
.comments-area {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 28px 24px;
}
.comments-title,
.comment-reply-title {
  font-size: 1.15rem;
  margin: 0 0 18px;
}
.comment-list,
.comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .children {
  margin: 12px 0 0 18px;
  padding-inline-start: 14px;
  border-inline-start: 2px solid var(--line);
}
.comment-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 16px 14px;
  margin: 0 0 12px;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-author .fn {
  font-weight: 800;
  font-style: normal;
}
.comment-metadata {
  margin: 4px 0 10px 54px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.comment-metadata a { color: inherit; }
.comment-content p {
  margin: 0 0 .7em;
  color: #2a3330;
  line-height: 1.9;
}
.comment-content p:last-child { margin-bottom: 0; }
.reply { margin-top: 10px; }
.comment-reply-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 800;
}
.comment-respond { margin-top: 22px; }
.comment-notes { color: var(--muted); font-size: .88rem; }
.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.comment-notes,
.logged-in-as,
.comment-form-comment,
.comment-form-cookies-consent,
.form-submit,
.comment-subscription-form {
  grid-column: 1 / -1;
}
.comment-form label {
  display: block;
  margin: 0 0 6px;
  font-size: .86rem;
  font-weight: 800;
}
.comment-form p { margin: 0 0 12px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form input:focus,
.comment-form textarea:focus {
  outline: 2px solid rgba(246,201,14,.55);
  border-color: var(--gold);
}
.comment-form .form-submit { margin: 16px 0 0; }
.comment-form .logged-in-as { color: var(--muted); font-size: .88rem; }

.shoa-app, .shoa-privacy {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow);
}

@media (hover: none) {
  .podcast-card:hover, .post-card:hover, .btn:hover { transform: none; }
}

@media (max-width: 1180px) {
  .hero-stage { grid-template-columns: minmax(280px, 38vw) minmax(0, 1fr); gap: 32px; }
  .hero-cover { border-radius: 22px; }
}

@media (max-width: 980px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }
  .header-inner {
    min-height: 64px;
  }
  .header-search--desk,
  .header-cta,
  .site-nav--desk { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: min(360px, 88vw);
    height: auto;
    z-index: 80;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    padding: calc(24px + env(safe-area-inset-top)) 22px calc(24px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 0 40px rgba(0,0,0,.14);
    transform: translateX(110%);
    transition: transform .28s ease, visibility .28s ease;
    overflow-y: auto;
    visibility: hidden;
  }
  .nav-drawer.is-open,
  .nav-drawer:not([hidden]).is-open {
    transform: none;
    visibility: visible;
  }
  .nav-drawer[hidden] {
    display: flex !important;
  }
  .header-search--mobile {
    display: flex;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 4px 8px 4px 12px;
    background: #f7faf9;
    pointer-events: auto;
  }
  .header-search--mobile input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;
    padding: 8px 0;
  }
  .site-nav .menu {
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
  }
  .site-nav a {
    padding: 12px 14px;
    font-size: 1.05rem;
    border-radius: 12px;
  }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(11,13,12,.38);
  }
  body.nav-open .nav-backdrop { display: block; }

  .hero-stage, .show-stage, .split-grid, .footer-grid, .studio-card--host, .follow-band__inner,
  .host-guests,
  .hero-stage--intro,
  .post-lead, .story-hero__grid, .app-hero__grid, .app-features, .app-guide__grid, .archive-hero__grid {
    grid-template-columns: 1fr;
  }
  .hero--intro .hero-video { order: -1; }
  .hero--episode { padding: 32px 0 56px; }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .about-intro__brand {
    width: min(100%, 160px);
    padding: 16px;
    border-radius: 22px;
    justify-self: start;
    order: -1;
  }
  .about-intro__logo {
    max-width: none;
    margin-inline: 0;
  }
  .about-intro__copy h2 {
    white-space: normal;
    font-size: clamp(1.35rem, 5vw, 1.7rem);
  }
  .host-guests__bridge {
    flex-direction: row;
    min-width: 0;
    padding-block: 4px;
    gap: 12px;
  }
  .host-guests__bridge-line {
    width: auto;
    height: 1px;
    min-height: 0;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(11,11,11,.18), transparent);
  }
  .host-guests__bridge-label {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0;
  }
  .host-guests__guests {
    padding: 22px 18px;
  }
  .about-media {
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
  }
  .about-media__cap { inset-inline: 14px; bottom: 14px; }
  .about-block--host { padding-block: 20px; padding-inline: 18px; }
  .face-row--panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    cursor: auto;
    touch-action: auto;
  }
  .face-row--panel .face img,
  .face--nav .face__nav-icon {
    width: 68px;
    height: 68px;
  }
  .hero {
    min-height: 0;
    padding: 36px 0 72px;
  }
  .hero-stage { gap: 24px; }
  .hero-cover, .show-cover { max-width: 420px; }
  .hero-cover .play-icon { width: 68px; height: 68px; }
  .hero-eq { display: none; }
  .hero-listen .container { align-items: flex-start; }
  .hero-actions {
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    font-size: .82rem;
    padding-inline: 12px;
    justify-content: center;
  }
  .app-actions .btn { min-width: 0; }

  .show-copy h1, .story-copy h1, .page-hero h1, .archive-hero h1, .blog-hero h1,
  .story-hero h1, .app-hero h1, .hero-info h1 { max-width: none; }
  .story-hero { padding: 32px 0 48px; }
  .story-hero__media { max-width: 560px; margin-inline: auto; order: -1; }
  .story-hero__media img { aspect-ratio: 16 / 10; }
  .story-hero h1 { max-width: none; }
  .archive-hero { padding: 28px 0 12px; }
  .archive-hero__art { min-height: 0; max-width: none; }
  .archive-wave { width: 100%; opacity: .4; }

  .band { padding: 64px 0; }
  .band--archive { padding-top: 28px; }
  .band--lift { margin-top: -28px; border-radius: 24px 24px 0 0; padding-top: 40px; }
  .section-head { align-items: start; flex-wrap: wrap; }
  .hero-stats, .archive-hero__stats { gap: 18px; }
  .follow-band__inner { display: grid; }

  .card-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 1.3);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }
  .card-rail::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .card-rail.is-dragging { cursor: grabbing; }
  .card-rail img {
    -webkit-user-drag: none;
    pointer-events: none;
  }
  .card-grid--4:not(.card-rail),
  .card-grid--3:not(.card-rail) {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    overflow: visible;
    cursor: auto;
    user-select: auto;
    touch-action: auto;
  }

  .listen-row__links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 2px;
  }
  .listen-row__links::-webkit-scrollbar { display: none; }
  .listen-row__links a {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: .8rem;
    white-space: nowrap;
  }

  .social-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .social-row::-webkit-scrollbar { display: none; }
  .social-row a { flex: 0 0 auto; white-space: nowrap; }

  .platform-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .platform-list a {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .platform-list small { display: none; }

  .show-player { gap: 10px; padding: 6px 14px 6px 6px; }
  .show-player__track { gap: 8px; }
  .toolbar { align-items: flex-start; }
  .app-hero__icon { order: -1; width: 140px; height: 140px; border-radius: 32px; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(1.55rem, 8vw, 2.2rem); }
  .container { width: min(var(--max), calc(100% - 24px)); }
  .header-inner { min-height: 60px; }
  .custom-logo, .site-logo img { max-height: 34px; }

  .hero { padding: 24px 0 56px; }
  .hero-cover { max-width: none; border-radius: 20px; }
  .hero-cover .play-icon { width: 60px; height: 60px; }
  .hero-actions .btn {
    font-size: .78rem;
    padding-inline: 10px;
    gap: 6px;
  }
  .hero-listen__platforms { width: 100%; }
  .hero-stats { width: 100%; justify-content: space-between; }

  .band { padding: 48px 0; }
  .section { padding: 40px 0; }
  .page-hero, .blog-hero { padding: 32px 0 48px; }
  .card-grid { gap: 12px; }
  .card-rail {
    grid-auto-columns: calc((100% - 12px) / 1.3);
  }
  .podcast-card__body, .post-card__body { padding: 10px 10px 12px; }
  .podcast-card h3, .post-card h3 { font-size: .92rem; }
  .post-card p { display: none; }

  .show { padding: 40px 0 150px; }
  .episode-player,
  .episode-player.band--paper { margin-top: -96px; }
  .show-dock { padding: 18px 16px 20px; border-radius: 24px; }
  .show-cover { max-width: none; }
  .show-tabs { max-width: none; }
  .show-player {
    border-radius: 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
  }
  .show-player__track { grid-template-columns: 3.4em minmax(0, 1fr) 3.4em; gap: 6px; }
  .time { font-size: .72rem; min-width: 0; }
  .ctrl--main { width: 46px; height: 46px; }
  .ctrl--rate { min-width: 40px; height: 32px; padding: 0 8px; font-size: .74rem; }

  .sort-tabs a { padding: 8px 10px; font-size: .8rem; }
  .app-actions { width: 100%; }
  .app-actions .btn { flex: 1 1 100%; }
  .comment-form { grid-template-columns: 1fr; }
  .comments-area { padding: 16px; }
  .comment-metadata { margin-inline-start: 0; }
  .prose p, .prose li { font-size: 1.02rem; }
  .pagination .page-numbers { min-width: 36px; min-height: 36px; }
}

@media (max-width: 480px) {
  .archive-hero__art { display: none; }
  .post-lead { margin-bottom: 24px; }
  .hero-cover .play-icon { width: 54px; height: 54px; }
  .hero-actions .btn { font-size: .74rem; }
}

@media (max-width: 360px) {
  .sort-tabs { width: 100%; }
  .sort-tabs a { flex: 1; justify-content: center; }
}

