@font-face {
  font-family: "Fredoka Local";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/fredoka-600.ttf") format("truetype");
}

@font-face {
  font-family: "Fredoka Local";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/fredoka-700.ttf") format("truetype");
}

:root {
  --color-brand: #fb471f;
  --color-brand-soft: #ff7354;
  --color-surface-dark: #1d252d;
  --color-text: #000000;
  --color-text-muted: #64707b;
  --color-white: #ffffff;
  --color-cream: #f5f1eb;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.1);
  --radius-pill: 999px;
  --radius-card: 30px;
  --container-width: 1280px;
  --page-padding: 64px;
  --section-padding: 112px;
  --font-display: "Fredoka Local", "Fredoka", "Noto Sans", "Segoe UI", Arial, sans-serif;
  --font-ui: "Noto Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-copy: "Noto Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --size-h1: 64px;
  --size-h2: 48px;
  --size-h3: 42px;
  --size-h4: 34px;
  --size-h5: 24px;
  --size-body-xl: 20px;
  --size-body-l: 18px;
  --size-body: 16px;
  --size-body-s: 14px;
  --line-display: 1;
  --line-copy: 1.5;
  --hero-backdrop-shift: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-surface-dark);
  color: var(--color-text);
  font-family: var(--font-copy);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  background: var(--color-brand);
}

.container {
  width: min(100% - 2rem, var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0;
  background: transparent;
}

.header-bar {
  position: relative;
  z-index: 41;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 40px;
  border-radius: 110px;
  background: var(--color-white);
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 18.75rem;
  min-width: 18.75rem;
}

.brand img {
  display: block;
  width: 18.75rem;
  height: 2.85825rem;
  aspect-ratio: 300 / 45.732;
  max-width: none;
  object-fit: contain;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-brand);
}

.menu-panel {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px 4px;
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-surface-dark);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.header-bar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-bar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header-bar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
  margin-top: 0;
  padding: 170px 0 0;
  background: var(--color-brand);
  animation: heroFadeIn 700ms ease-out both;
}

.hero-backdrop {
  position: absolute;
  inset: 180px auto auto 50%;
  transform: translateX(-50%);
  width: min(1449px, 100%);
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.12);
  text-align: center;
  pointer-events: none;
  animation: heroBackdropIn 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-backdrop-line {
  display: block;
  white-space: nowrap;
}

.hero-backdrop-line-top {
  font-size: clamp(100px, 15.8vw, 262px);
  animation: heroBackdropLoopLeft 14s ease-in-out infinite;
}

.hero-backdrop-line-bottom {
  font-size: clamp(86px, 13.5vw, 224px);
  animation: heroBackdropLoopRight 14s ease-in-out infinite;
}

.hero-layout {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 520px;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.hero-copy,
.filters-card,
.episode-card,
.host-card,
.cta-card {
  border-radius: var(--radius-card);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 56px 0 72px;
  color: var(--color-white);
  text-align: center;
  animation: heroCopyIn 820ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-soft);
  color: var(--color-white);
  font-family: var(--font-copy);
  font-size: 16px;
  font-weight: 500;
  line-height: var(--line-copy);
}

.eyebrow-rotator {
  display: inline-block;
  min-width: 8ch;
  text-align: left;
  will-change: transform, opacity;
}

.eyebrow-rotator.is-animating {
  animation: eyebrowWordSwap 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes eyebrowWordSwap {
  0% {
    opacity: 0;
    transform: translateY(35%);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.eyebrow-dark {
  background: rgba(29, 37, 45, 0.12);
  color: var(--color-surface-dark);
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--line-display);
}

.hero h1 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 6.4vw, 4rem);
  font-style: normal;
  font-weight: 600;
  line-height: clamp(2.3rem, 6.4vw, 4rem);
  text-transform: uppercase;
  animation: heroLineIn 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 260ms both;
}

.hero-description {
  max-width: 64ch;
  margin: 24px auto 0;
  color: var(--color-text);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  animation: heroLineIn 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 360ms both;
}

.hero-actions,
.episode-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions {
  animation: heroLineIn 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 460ms both;
}

.hero-person {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero-person-left {
  left: 0;
  width: min(28vw, 361px);
  transform: scaleX(-1);
  transform-origin: center;
  animation: heroPersonLeftIn 920ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both;
}

.hero-person-right {
  right: 0;
  width: min(25vw, 315px);
  animation: heroPersonRightIn 920ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both;
}

.episodes-page-hero {
  padding: 170px 0 90px;
}

.episodes-page-hero-wrap {
  display: flex;
  justify-content: center;
}

.episodes-page-hero-copy {
  width: 100%;
  max-width: 738px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-white);
  text-align: center;
}

.episode-season-filters,
.episode-tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.episode-season-filters {
  justify-content: center;
}

.episode-season-filters .chip,
.episode-tag-filters .chip {
  border-radius: 40px;
  padding: 0.6rem 1.15rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
}

.episode-season-filters .chip.is-active {
  background: var(--color-surface-dark);
  border-color: var(--color-surface-dark);
}

.episode-tag-filters .chip {
  border-width: 1px;
  padding: 0.3rem 0.875rem;
  font-size: 1rem;
  font-weight: 600;
}

.episode-tag-filters .chip.is-active {
  background: var(--color-brand-soft);
  border-color: var(--color-brand-soft);
}

.chip-has-close {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.chip-close {
  font-size: 0.95em;
  line-height: 1;
}

.episodes-page-list-section {
  background: var(--color-surface-dark);
  padding: var(--section-padding) 0;
}

.episodes-page-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.episodes-page-list-head {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.episodes-page-list-head h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4375rem);
  font-weight: 600;
}

.episodes-page-list-head h2 span {
  color: var(--color-brand);
}

.episodes-page-grid {
  gap: 1.5rem;
  margin-top: 0;
}

.episodes-page-grid .episode-card {
  border-radius: 1.875rem;
  padding: 2.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  animation: episodeCardIn 460ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.episodes-page-grid .episode-actions {
  justify-content: flex-start;
}

.episodes-load-more-wrap {
  display: flex;
  justify-content: center;
}

.episodes-load-more.is-hidden {
  display: none;
}

.contact-page-hero {
  padding: 170px 0 90px;
}

.error-page-hero {
  padding: 170px 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-body .site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-page-body main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.error-page-body .error-page-hero {
  flex: 1;
}

.error-page-backdrop {
  inset: 33% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 738px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.error-page-backdrop .hero-backdrop-line {
  font-size: clamp(9rem, 26vw, 25rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
  animation: heroBackdropLoopLeft 14s ease-in-out infinite;
}

.error-page-hero-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.error-page-hero-copy {
  width: 738px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  margin: 0 auto;
}

.error-page-icon {
  width: 11.13863rem;
  height: 6.5975rem;
  transform: rotate(10.993deg);
  position: absolute;
  right: -5rem;
  top: -3rem;
  margin: 0;
  z-index: 3;
}

.error-page-hero-copy .hero-description {
  margin-top: 0;
}

.error-page-hero-copy .hero-description a {
  color: var(--color-text);
  font-weight: 700;
  text-decoration: underline;
}

.contact-page-hero-wrap {
  display: flex;
  justify-content: center;
}

.contact-page-hero-copy {
  width: 100%;
  max-width: 890px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.contact-form-section {
  background: #ececec;
  padding: var(--section-padding) 0;
}

.contact-form-wrap {
  display: flex;
  justify-content: center;
}

.contact-form-card {
  width: min(100%, 49.75rem);
  display: flex;
  padding: 3.75rem;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
  border-radius: 2.5rem;
  background: #f2f1ea;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-card > img {
  display: block;
  width: 6.25rem;
  height: auto;
  margin: 0 auto;
}

.contact-form-card h2 {
  margin: 0;
  color: var(--color-text);
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
}

.contact-form label {
  color: #3a444e;
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 1.125rem;
  border: 2px solid #e9e0d4;
  background: var(--color-white);
  color: var(--color-surface-dark);
  font-family: var(--font-ui);
  font-size: 1rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a8acb1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c8c0b3;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-consent {
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--color-brand);
}

.contact-consent span {
  color: #3a444e;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
}

.contact-form .button {
  margin: 1.4rem auto 0;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  min-width: 0;
}

.contact-form .button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.contact-form-feedback {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  align-self: center;
}

.contact-form-feedback.is-success {
  color: #178a4f;
}

.contact-form-feedback.is-error {
  color: #c0392b;
}

.turnstile-wrap {
  margin-top: 0.25rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

@keyframes episodeCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(0.8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroBackdropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes heroBackdropLoopLeft {
  0% {
    transform: translateX(var(--hero-backdrop-shift));
  }
  50% {
    transform: translateX(calc(var(--hero-backdrop-shift) * -1));
  }
  100% {
    transform: translateX(var(--hero-backdrop-shift));
  }
}

@keyframes heroBackdropLoopRight {
  0% {
    transform: translateX(calc(var(--hero-backdrop-shift) * -1));
  }
  50% {
    transform: translateX(var(--hero-backdrop-shift));
  }
  100% {
    transform: translateX(calc(var(--hero-backdrop-shift) * -1));
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroPersonLeftIn {
  from {
    opacity: 0;
    transform: translateX(-64px) scaleX(-1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scaleX(-1);
  }
}

@keyframes heroPersonRightIn {
  from {
    opacity: 0;
    transform: translateX(64px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero-backdrop,
  .hero-copy,
  .hero h1,
  .hero-description,
  .hero-actions,
  .hero-person-left,
  .hero-person-right,
  .eyebrow-rotator.is-animating {
    animation: none !important;
  }
}

.hero-cta-watch {
  gap: 8px;
}

.hero-cta-watch img {
  width: 74px;
  height: 17px;
}

.hero-cta-listen {
  gap: 16px;
}

.hero-cta-listen img {
  width: 62px;
  height: 18.803px;
}

.section-heading p,
.host-card p,
.cta-card p,
.episode-description,
.footer-copy {
  font-size: var(--size-body-l);
  line-height: var(--line-copy);
  color: var(--color-text-muted);
}

.hero-facts {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.hero-facts div {
  padding: 18px 20px;
  border-radius: 24px;
  background: var(--color-white);
}

.hero-facts dt {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-brand);
}

.hero-facts dd {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 14px 23px;
  border: 0;
  border-radius: 40px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 12px 20px;
  font-size: 16px;
}

.button-primary {
  background: var(--color-brand);
  color: var(--color-white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d93a16;
}

.button-dark {
  background: var(--color-surface-dark);
  color: var(--color-white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #11181f;
}

.button-light {
  background: var(--color-white);
  color: var(--color-brand);
}

.button-light:hover,
.button-light:focus-visible {
  background: #fff4ef;
}

.episodes-section {
  padding: var(--section-padding) 0;
  background:
    linear-gradient(180deg, var(--color-cream) 0 220px, var(--color-surface-dark) 220px 100%);
}

.about-podcast-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.about-podcast-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

.about-podcast-heading {
  width: 100%;
}

.about-podcast-heading h2 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 3.4375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.about-podcast-heading h2 span {
  color: var(--color-brand);
}

.about-podcast-heading p {
  margin: 0.875rem 0 0;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about-slider-shell {
  position: relative;
  width: 100%;
}

.about-slider-shell::before,
.about-slider-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}

.about-slider-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.about-slider-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.about-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0.125rem;
}

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

.about-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.about-card {
  display: flex;
  flex: 0 0 25rem;
  width: 25rem;
  height: 17.5rem;
  padding: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  border-radius: 1.875rem;
  background: #f2f1ea;
  scroll-snap-align: center;
}

.about-card img {
  display: block;
  width: 3.98rem;
  height: 2.38rem;
}

.about-card h3 {
  margin: 0;
  color: var(--color-surface-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.about-card p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.about-slider-pagination {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about-slider-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: 0;
  background: rgba(29, 37, 45, 0.2);
  cursor: pointer;
}

.about-slider-dot.is-active {
  background: var(--color-brand);
}

.platform-cta-section {
  background: var(--color-white);
  padding: var(--section-padding) 0;
}

.platform-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  padding: 2.5rem 5rem;
  border-radius: 1.875rem;
  background: var(--color-brand);
  box-shadow: var(--shadow-soft);
}

.platform-cta-icon {
  flex: 0 0 12.875rem;
}

.platform-cta-icon img {
  width: 12.875rem;
  height: 7.625rem;
  display: block;
}

.platform-cta-content {
  flex: 1 1 auto;
  max-width: 59.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.platform-cta-content h3 {
  margin: 0;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.platform-cta-content h3 span {
  color: var(--color-surface-dark);
}

.platform-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.top-episodes-section {
  background: var(--color-surface-dark);
  padding: var(--section-padding) 0;
}

.topics-parallax-section {
  position: relative;
  overflow: hidden;
  background: #f2f1ea;
  padding: var(--section-padding) 0;
}

.topics-parallax-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  align-self: stretch;
}

.topics-parallax-heading h2 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.4375rem);
  font-weight: 600;
  line-height: 1;
}

.topics-parallax-heading h2 span {
  color: var(--color-brand);
}

.topics-parallax-heading p {
  margin: 0.875rem 0 0;
  max-width: 48ch;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.topics-parallax-backdrop {
  position: absolute;
  top: 3rem;
  right: 0;
  width: min(74rem, 92vw);
  height: auto;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.topics-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.topic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 20rem;
  padding: 2.5rem;
  border-radius: 1.875rem;
  background: var(--color-surface-dark);
  box-shadow: var(--shadow-soft);
}

.topic-card h3 {
  margin: 0;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1;
}

.topic-card p {
  margin: 0.625rem 0 0;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  max-width: 100%;
  width: 100%;
}

.topic-card-button {
  align-self: flex-start;
  margin-top: 1.25rem;
}

.topic-card-arrow {
  position: absolute;
  top: 2.4rem;
  right: 2.1rem;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.top-episodes-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.top-episodes-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.4375rem;
  font-weight: 600;
  color: var(--color-brand);
}

.top-episodes-heading h2 span {
  color: var(--color-white);
}

.top-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.top-episode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  align-self: stretch;
  background: var(--color-white);
  border-radius: 1.875rem;
  padding: 2.5rem;
}

.top-episode-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.625rem;
  border-radius: 3.125rem;
  background: var(--color-brand-soft);
  color: var(--color-white);
  font-family: var(--font-copy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.top-episode-meta {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.75rem;
  color: var(--color-surface-dark);
  font-family: var(--font-copy);
  font-size: 0.875rem;
}

.top-episode-title {
  margin: 0.625rem 0 0;
  color: var(--color-surface-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.top-episode-description {
  margin: 0.625rem 0 0;
  color: var(--color-surface-dark);
  font-family: var(--font-copy);
  font-size: 1.125rem;
  line-height: 1.5;
}

.top-episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.875rem;
}

.top-episodes-action {
  display: flex;
  justify-content: center;
}

.hosts-feature-section {
  border-top: 4px solid var(--color-brand);
  padding: var(--section-padding) 0 42px;
  background: var(--color-surface-dark);
}

.hosts-feature-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.hosts-feature-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hosts-feature-heading .eyebrow {
  align-self: flex-start;
}

.hosts-feature-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4375rem);
  font-weight: 600;
  line-height: 1.1;
}

.hosts-feature-heading h2 span {
  color: var(--color-brand);
}

.hosts-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.host-feature-card {
  background: var(--color-white);
  border-radius: 30px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.host-feature-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.host-feature-avatar-wrap {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 56px;
}

.host-feature-avatar {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: top center;
}

.host-feature-content {
  flex: 1 1 auto;
}

.host-feature-card h3 {
  margin: 0;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1;
}

.host-feature-role {
  margin: 0.25rem 0 0;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.host-feature-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 72px;
}

.host-feature-body p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
}

.host-feature-body strong {
  color: var(--color-brand);
  font-weight: 700;
}

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

.button-outline-light {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.guest-cta-section {
  background: var(--color-surface-dark);
  padding: 60px 0;
}

.guest-cta-container {
  display: flex;
  justify-content: center;
}

.guest-cta-wrap {
  position: relative;
  width: 100%;
  border-radius: 30px;
  background: var(--color-brand);
  padding: 50px 50px 80px;
  overflow: visible;
}

.guest-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: min(44rem, calc(100% - 28.5rem));
}

.guest-cta-copy h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1;
}

.guest-cta-copy p {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.15;
}

.guest-cta-copy .button {
  margin-top: 22px;
}

.guest-cta-media {
  position: absolute;
  right: 1.5rem;
  bottom: -22px;
  width: min(37.5rem, 48vw);
  max-width: 415px;
  z-index: 1;
  pointer-events: none;
}

.guest-cta-media img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer-v2 {
  background: var(--color-surface-dark);
  padding: 3.125rem 0 3.75rem 0;
}

.footer-v2-wrap {
  border-radius: 30px;
}

.footer-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-v2-brand img {
  width: min(20.55rem, 100%);
  max-width: 328px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-v2-brand a {
  display: inline-block;
}

.footer-v2-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-v2-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-v2-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-v2-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 999px;
}

.footer-v2-socials a:hover,
.footer-v2-socials a:focus-visible {
  transform: translateY(-1px) scale(1.06);
  opacity: 0.86;
}

.footer-v2-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-v2-divider {
  margin-top: 1.6rem;
  height: 1px;
  background: var(--color-brand);
}

.footer-v2-bottom {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #74818d;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
}

.footer-v2-bottom a {
  color: #74818d;
}

.footer-privacy-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #74818d;
  font: inherit;
  cursor: pointer;
}

.footer-v2-bottom a:hover,
.footer-v2-bottom a:focus-visible,
.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  color: var(--color-white);
}

.footer-v2-credit {
  display: inline-flex;
  align-items: center;
}

.footer-v2-credit img {
  display: block;
  height: 16px;
  width: auto;
}

.footer-listen-button {
  color: var(--color-surface-dark);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: min(calc(100% - 2rem), 860px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(29, 37, 45, 0.96);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.45;
}

.cookie-banner p a {
  color: var(--color-white);
  text-decoration: underline;
}

.cookie-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-settings.is-hidden {
  display: none;
}

.cookie-setting-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.cookie-setting-item input {
  accent-color: var(--color-brand);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.cookie-banner-actions .button {
  min-width: 0;
  flex: 1 1 0;
}

.cookie-banner-button {
  background: var(--color-white);
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
}

.cookie-banner-button.is-hidden {
  display: none;
}

.cookie-banner-button:hover,
.cookie-banner-button:focus-visible {
  background: #fff4ef;
  color: var(--color-brand);
}

.cookie-banner.is-hidden {
  display: none;
}

.legal-page-section {
  padding: 150px 0 90px;
}

.legal-page-card {
  background: #f2f1ea;
  border-radius: 2rem;
  padding: 2rem;
}

.legal-page-card h1,
.legal-page-card h2 {
  margin-top: 0;
}

.legal-page-card p,
.legal-page-card li {
  font-size: 1rem;
  line-height: 1.6;
}

.legal-page-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
}


.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(0.6px);
  transition:
    opacity 480ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms),
    transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms),
    filter 480ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(34px, 4vw, var(--size-h2));
}

.section-heading p {
  margin-top: 18px;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--color-white);
}

.filters-card {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.filter-group + .filter-group {
  margin-top: 24px;
}

.filter-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.filter-label,
.episode-meta,
.footer-copy {
  font-family: var(--font-copy);
  font-size: var(--size-body-s);
  line-height: var(--line-copy);
}

.filter-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--size-h5);
  font-weight: 600;
  color: var(--color-white);
}

.filter-note {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--size-body);
  line-height: var(--line-copy);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.chip:hover,
.chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
}

.chip.is-active {
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.episode-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.episode-card,
.empty-state {
  padding: 36px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.episode-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.episode-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-copy);
}

.episode-category {
  border-radius: 50px;
  background: var(--color-brand-soft);
  color: var(--color-white);
}

.episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: #57626c;
}

.episode-card h3,
.host-card h3 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: var(--size-h5);
  font-weight: 600;
  color: var(--color-surface-dark);
}

.episode-description {
  margin: 14px 0 0;
}

.hosts-section {
  padding: 0 0 var(--section-padding);
  background: var(--color-surface-dark);
}

.hosts-layout {
  padding-top: 8px;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.host-card {
  display: flex;
  gap: 22px;
  padding: 32px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.host-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.host-role {
  margin: 10px 0 0;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand);
}

.cta-section {
  padding-bottom: 60px;
  background: var(--color-surface-dark);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px;
  background: var(--color-brand);
  color: var(--color-white);
  overflow: hidden;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 0 0 60px;
  background: var(--color-surface-dark);
}

.footer-layout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 71, 31, 0.7);
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy span,
.footer-copy,
.footer-links a {
  color: var(--color-white);
}

.footer-copy {
  max-width: 40ch;
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-brand-soft);
}

.empty-state h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--size-h5);
  font-weight: 600;
}

.empty-state p {
  margin: 10px 0 0;
  color: var(--color-text-muted);
}

@media (max-width: 960px) {
  :root {
    --page-padding: 24px;
    --section-padding: 80px;
    --hero-backdrop-shift: 34px;
  }

  .site-header {
    top: 10px;
  }

  .hero-layout,
  .cta-card,
  .footer-layout {
    flex-direction: column;
  }

  .header-bar {
    z-index: 41;
    flex-wrap: wrap;
    border-radius: 32px;
    align-items: center;
    padding: 18px 22px;
  }

  .hero {
    padding: 136px 0 24px;
  }

  .hero-copy,
  .filters-card,
  .episode-card,
  .host-card,
  .cta-card {
    padding: 28px;
  }

  .hero-backdrop {
    top: 142px;
    line-height: 0.86;
    inset-inline: 50% auto;
    transform: translateX(-50%);
    text-align: center;
  }

  .hero-backdrop-line-top {
    font-size: clamp(78px, 18vw, 152px);
  }

  .hero-backdrop-line-bottom {
    font-size: clamp(64px, 15vw, 132px);
  }

  .hero-layout {
    min-height: 420px;
  }

  .hero-person-left,
  .hero-person-right {
    width: min(32vw, 210px);
    bottom: 0;
  }

  .hero-person-left {
    left: 0;
  }

  .hero-person-right {
    right: 0;
  }

  .hero-layout,
  .hosts-grid {
    grid-template-columns: 1fr;
  }

  .filter-heading {
    align-items: start;
  }

  .about-podcast-container {
    gap: 3rem;
  }

  .about-podcast-heading h2 {
    font-size: clamp(2.2rem, 6.5vw, 3rem);
  }

  .about-podcast-heading p {
    font-size: 1.0625rem;
  }

  .about-card {
    flex-basis: 21rem;
    min-height: 16.5rem;
    padding: 2rem;
  }

  .platform-cta-wrap {
    padding: 2rem;
    gap: 1rem;
  }

  .platform-cta-icon {
    flex-basis: 8.5rem;
  }

  .platform-cta-icon img {
    width: 8.5rem;
    height: auto;
  }

  .platform-cta-content h3 {
    font-size: clamp(1.8rem, 5.3vw, 2.25rem);
  }

  .top-episodes-container {
    gap: 3rem;
  }

  .topics-cards-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 18rem;
  }

  .episodes-page-list-wrap {
    gap: 3rem;
  }

  .episodes-page-grid .episode-card {
    padding: 2rem;
  }

  .top-episodes-heading h2 {
    font-size: clamp(2.2rem, 6.2vw, 3rem);
  }

  .top-episode-card {
    padding: 2rem;
  }

  .hosts-feature-grid {
    grid-template-columns: 1fr;
  }

  .host-feature-card {
    padding: 2rem;
  }

  .guest-cta-wrap {
    padding: 2.5rem 2rem 3rem;
  }

  .guest-cta-copy {
    max-width: min(32rem, calc(100% - 20rem));
  }

  .guest-cta-copy h3 {
    font-size: clamp(2rem, 5.2vw, 2.4rem);
  }

  .guest-cta-media {
    width: min(24rem, 44vw);
    right: 1.5rem;
  }

  .footer-v2-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-v2-right {
    width: 100%;
    justify-content: space-between;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .contact-form label,
  .contact-consent span {
    font-size: 1.1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.8rem 0.95rem;
  }
}

@media (max-width: 900px) {
  .about-slider-pagination {
    display: flex;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 1.25rem, var(--container-width));
  }

  .hero-person-left {
    left: -65px;
  }

  .hero-person-right {
    right: -65px;
  }

  .brand {
    width: auto;
    min-width: 0;
    justify-content: flex-start;
    flex: 0 1 auto;
  }

  .brand img {
    width: min(14.25rem, 68vw);
    height: auto;
    aspect-ratio: 300 / 45.732;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .menu-panel {
    display: none;
    width: 100%;
    flex-basis: 100%;
    margin: 10px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header-bar.is-menu-open .menu-panel {
    display: flex;
  }

  .site-nav {
    margin-left: 0;
    font-size: 16px;
    gap: 12px 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .chip {
    justify-content: center;
  }

  .episode-season-filters .chip,
  .episode-tag-filters .chip {
    width: auto;
    flex: 0 0 auto;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }

  .hero-actions .button {
    width: auto;
  }

  .episodes-page-grid .episode-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .episodes-page-grid .episode-actions .button {
    width: auto;
    flex: 0 1 auto;
  }

  .episode-card-top,
  .host-card {
    flex-direction: column;
  }

  .cta-card {
    align-items: stretch;
  }
}

@media (max-width: 1225px) and (min-width: 901px) {
  .hero-copy {
    width: 40%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 0 0;
  }

  .episodes-page-hero {
    padding: 132px 0 64px;
  }

  .contact-page-hero {
    padding: 132px 0 64px;
  }

  .error-page-hero {
    padding: 132px 0 64px;
  }

  .error-page-icon {
    right: 1rem;
    top: -0.4rem;
    width: 8rem;
    height: auto;
  }

  .episodes-page-hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  .episode-season-filters,
  .episode-tag-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .episode-season-filters {
    justify-content: center;
  }

  .episode-season-filters .chip {
    font-size: 1rem;
    padding: 0.55rem 1rem;
  }

  .episode-tag-filters .chip {
    width: auto;
    font-size: 0.7rem;
  }

  .episode-tag-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .episodes-page-list-wrap {
    gap: 2.5rem;
  }

  .episodes-page-grid .episode-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 860px;
    padding: 16px 0 80px;
  }

  .hero-backdrop {
    inset: 148px auto auto 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  .hero-description {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .episodes-page-grid .episode-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .hero-person-left,
  .hero-person-right {
    display: block;
    width: min(34vw, 135px);
    opacity: 0.95;
    bottom: 0;
  }

  .hero-person-left {
    left: -65px;
  }

  .hero-person-right {
    right: -65px;
  }

  .about-podcast-heading h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
  }

  .topics-parallax-section {
    padding: 3rem 0;
  }

  .topics-parallax-backdrop {
    top: 0.75rem;
    right: -1.5rem;
    width: min(56rem, 120vw);
  }

  .topics-parallax-heading p {
    font-size: 1rem;
  }

  .topic-card {
    min-height: 16.5rem;
    padding: 1.5rem;
  }

  .topic-card h3 {
    font-size: 1.75rem;
  }

  .topic-card p {
    font-size: 0.95rem;
  }

  .topic-card-arrow {
    top: 1.4rem;
    right: 1.2rem;
    width: 1.8rem;
    height: 1.8rem;
  }

  .about-podcast-heading p {
    font-size: 1rem;
  }

  .about-slider-shell::before,
  .about-slider-shell::after {
    width: 2.5rem;
  }

  .about-card {
    flex-basis: 85vw;
    min-height: 15.5rem;
    padding: 1.5rem;
  }

  .about-card h3 {
    margin-top: 1.25rem;
    font-size: 1.35rem;
  }

  .platform-cta-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .platform-cta-icon {
    flex-basis: auto;
  }

  .platform-cta-content {
    max-width: 100%;
  }

  .platform-cta-content h3 {
    font-size: clamp(1.4rem, 6.9vw, 1.9rem);
  }

  .platform-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .top-episodes-heading h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.4rem);
  }

  .top-episode-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .top-episode-title {
    font-size: 1.3rem;
  }

  .top-episode-description {
    font-size: 1rem;
  }

  .hosts-feature-section {
    padding-bottom: 2rem;
  }

  .hosts-feature-container {
    gap: 2.5rem;
  }

  .host-feature-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .host-feature-card h3 {
    font-size: 1.75rem;
  }

  .host-feature-role {
    font-size: 1rem;
  }

  .host-feature-body {
    margin-left: 0;
  }

  .guest-cta-section {
    padding: 2.5rem 0;
  }

  .contact-form-card {
    border-radius: 24px;
    padding: 1.5rem;
  }

  .contact-form-card > img {
    width: 5.8rem;
  }

  .contact-form-card h2 {
    margin: 1.25rem 0 1.5rem;
  }

  .contact-form label,
  .contact-consent span {
    font-size: 1.05rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .guest-cta-wrap {
    padding: 2rem 1.25rem 1.5rem;
  }

  .guest-cta-copy {
    max-width: 100%;
  }

  .guest-cta-copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .guest-cta-copy p {
    font-size: 1rem;
  }

  .guest-cta-copy .button {
    margin-top: 0.75rem;
  }

  .guest-cta-media {
    position: static;
    width: 100%;
    max-width: 23rem;
    margin: 1rem auto 0;
  }

  .footer-v2-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-v2-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-v2-actions .button {
    width: auto;
    flex: 0 1 auto;
  }

  .footer-v2-socials {
    width: 100%;
    justify-content: center;
  }

  .footer-v2-bottom {
    justify-content: center;
    text-align: center;
  }

  .cookie-banner {
    width: min(calc(100% - 1rem), 760px);
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-banner-actions .button {
    width: 100%;
    flex: 1 1 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 960px) and (min-width: 641px) {
  .hero-copy {
    width: 60%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 0 80px;
  }

  .hero-description {
    max-width: 100%;
  }
}

.admin-main {
  padding: 8.5rem 0 4rem;
}

.admin-section {
  display: grid;
  gap: 1.25rem;
}

.admin-form-card,
.admin-episode-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e6e6e6;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(18, 20, 24, 0.06);
}

.admin-form-card form,
.admin-edit-form {
  display: grid;
  gap: 0.8rem;
}

.admin-form-card label,
.admin-edit-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #111;
}

.admin-form-card input,
.admin-form-card textarea,
.admin-edit-form input,
.admin-edit-form textarea {
  border: 1px solid #d3d3d3;
  border-radius: 0.65rem;
  padding: 0.55rem 0.7rem;
  font: inherit;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.admin-episodes-list {
  display: grid;
  gap: 0.9rem;
}

.admin-episode-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.admin-actions-row,
.admin-dashboard-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}

.admin-feedback {
  margin: 0;
}

.admin-feedback.is-error {
  color: #b42318;
}

@media (max-width: 800px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero:not(.episodes-page-hero):not(.contact-page-hero):not(.error-page-hero) .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero:not(.episodes-page-hero):not(.contact-page-hero):not(.error-page-hero) .hero-actions .button {
    width: auto;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.3rem !important;
    line-height: 1.08;
  }

  h2 {
    font-size: 2rem !important;
    line-height: 1.12;
  }

  .footer-v2-top {
    align-items: center;
    text-align: center;
  }

  .footer-v2-brand a {
    display: inline-flex;
    justify-content: center;
  }

  .footer-v2-right {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
  }

  .footer-v2-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  .footer-v2-actions .button {
    margin: 0;
  }

  .footer-v2-socials {
    width: 100%;
    justify-content: center;
    margin-top: 0.2rem;
  }

  .footer-v2-bottom {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }
}

.admin-feedback.is-success {
  color: #067647;
}

.is-hidden {
  display: none !important;
}
