:root {
  --crimson: #8b1e2d;
  --midnight: #0b0b0d;
  --gold: #d4af37;
  --ivory: #f5f1e8;
  --steel: #6d7075;
  --arena-blue: #2b6fff;
  --panel: rgba(18, 18, 22, 0.84);
  --panel-soft: rgba(245, 241, 232, 0.08);
  --line: rgba(245, 241, 232, 0.12);
  --text: #f7f2ea;
  --muted: #c5bfb5;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(139, 30, 45, 0.34), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(43, 111, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #151516 0%, #0b0b0d 42%, #131416 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
audio {
  font: inherit;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.texture-noise {
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.texture-mat {
  opacity: 0.14;
  z-index: -3;
  background:
    linear-gradient(transparent 0 96%, rgba(255, 255, 255, 0.08) 96% 100%),
    linear-gradient(90deg, transparent 0 96%, rgba(255, 255, 255, 0.05) 96% 100%);
  background-size: 100% 72px, 72px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 82%);
}

.shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 10, 0.78);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.82), transparent 42%),
    linear-gradient(135deg, rgba(139, 30, 45, 0.94), rgba(11, 11, 13, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: inset 0 0 0 1px rgba(245, 241, 232, 0.06);
  font: 400 1.45rem/1 "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
.brand-copy span {
  text-transform: uppercase;
}

.brand-copy strong {
  font: 400 1.45rem/1 "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

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

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-solid {
  color: #120b0c;
  background: linear-gradient(135deg, var(--gold), #f2d987 52%, #e4b34c 100%);
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.22);
}

.button-outline {
  color: var(--ivory);
  border: 1px solid rgba(245, 241, 232, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  padding: 72px 0 48px;
  align-items: center;
}

.subpage-main {
  padding-bottom: 72px;
}

.subpage-hero {
  padding: 72px 0 24px;
}

.subpage-hero h1 {
  max-width: 900px;
}

.subpage-hero .hero-lead {
  max-width: 900px;
}

.episode-hero {
  padding-bottom: 18px;
}

.episode-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
}

.episode-primary,
.episode-sidebar {
  min-height: 100%;
}

.episode-detail-art {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.episode-detail-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-notes-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.notes-content p,
.notes-content li {
  color: var(--muted);
  line-height: 1.65;
}

.notes-content a {
  color: #f0d07b;
}

.notes-content p + p,
.notes-content ul + p,
.notes-content p + ul {
  margin-top: 14px;
}

.eyebrow,
.mini-label,
.social-platform,
.type-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.eyebrow,
.mini-label,
.type-label {
  color: #e7c872;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.type-display .type-demo {
  font-family: "Bebas Neue", sans-serif;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.hero-lead,
.section-heading p,
.featured-summary,
.feature-card p,
.editorial-card p,
.social-card p,
.episode-copy p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.hero-meta,
.featured-meta,
.episode-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-meta span,
.featured-meta span,
.episode-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f5e4c0;
  font-size: 0.86rem;
  line-height: 1;
}

.pull-quote {
  margin-top: 34px;
  max-width: 540px;
  padding: 22px 24px 20px;
  border-left: 4px solid var(--crimson);
  border-radius: 0 20px 20px 0;
  background:
    linear-gradient(90deg, rgba(139, 30, 45, 0.22), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.pull-quote::after,
.search-panel::before,
.episodes-grid::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(43, 111, 255, 0.15), rgba(212, 175, 55, 0.9));
  opacity: 0.75;
}

.quote-script {
  margin-bottom: 8px;
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--ivory);
}

.quote-source {
  margin: 0;
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.spotlight-card {
  position: relative;
  padding: 24px;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(245, 241, 232, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(43, 111, 255, 0.18);
  transform: scale(1.2);
  pointer-events: none;
}

.spotlight-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #151516;
}

.spotlight-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.05), rgba(11, 11, 13, 0.72)),
    radial-gradient(circle at center, transparent 42%, rgba(11, 11, 13, 0.35) 100%);
}

#hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.featured-episode {
  position: relative;
  padding: 2px 2px 4px;
}

.featured-episode h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.featured-player,
#featured-player,
.episode audio {
  width: 100%;
  min-height: 42px;
  accent-color: var(--crimson);
}

.feature-band,
.community-section,
.cta-section {
  position: relative;
}

.feature-band {
  padding: 70px 0;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.03), rgba(245, 241, 232, 0.01)),
    linear-gradient(90deg, rgba(43, 111, 255, 0.08), rgba(139, 30, 45, 0.14), rgba(212, 175, 55, 0.08));
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.split-heading.compact {
  margin-bottom: 18px;
}

.section-note,
.results-count {
  color: #ead7ac;
  font-size: 0.98rem;
}

.feature-grid,
.about-grid,
.faq-grid,
.social-grid,
.editorial-grid {
  display: grid;
  gap: 18px;
}

.about-section,
.faq-section {
  padding: 76px 0 0;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.facts-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 18px;
}

.about-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card h3,
.about-card h3 {
  margin-bottom: 10px;
}

.faq-card p,
.about-card p {
  margin-bottom: 0;
}

.faq-card a {
  color: #f0d07b;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.facts-table th,
.facts-table td {
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.facts-table th {
  width: 34%;
  color: #f0d07b;
  font-weight: 700;
}

.check-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li + li {
  margin-top: 10px;
}

.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0 0;
}

.section-links a {
  color: #f0d07b;
  font-weight: 700;
  text-decoration: none;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.search-panel,
.episode-card,
.social-card,
.palette-panel,
.type-panel,
.editorial-card,
.cta-panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.feature-card,
.social-card,
.palette-panel,
.type-panel,
.editorial-card {
  padding: 24px;
}

.icon-badge {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(245, 241, 232, 0.06);
  color: #f1d484;
}

.icon-badge svg,
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.episodes-section {
  padding: 76px 0;
}

.noscript-note {
  display: block;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.search-panel {
  padding: 26px 24px 22px;
  margin-bottom: 24px;
  overflow: hidden;
}

.search-panel label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

#episode-search {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(245, 241, 232, 0.15);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}

#episode-search::placeholder {
  color: rgba(245, 241, 232, 0.42);
}

#episode-search:focus {
  outline: 2px solid rgba(43, 111, 255, 0.45);
  outline-offset: 2px;
}

.subsection-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.episodes-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 16px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.pagination[hidden] {
  display: none;
}

.pagination-link {
  min-width: 44px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pagination-link:hover:not(:disabled),
.pagination-link:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.5);
}

.pagination-link.is-active {
  color: #120b0c;
  background: linear-gradient(135deg, var(--gold), #f2d987 52%, #e4b34c 100%);
  border-color: rgba(212, 175, 55, 0.8);
}

.pagination-link:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.episode-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  overflow: hidden;
}

.episode-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 30, 45, 0.42), rgba(11, 11, 13, 0.58)),
    #19191c;
}

.episode-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.episode-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 13, 0.84));
}

.episode-number {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.78);
  border: 1px solid rgba(245, 241, 232, 0.14);
  font: 400 0.95rem/1 "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.episode-copy {
  display: flex;
  flex-direction: column;
}

.episode-copy h3 {
  font-size: 1.34rem;
  line-height: 1.1;
}

.episode-summary {
  margin-bottom: 14px;
}

.episode-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.episode-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.episode-link.primary {
  background: linear-gradient(135deg, rgba(139, 30, 45, 0.92), rgba(93, 16, 30, 0.96));
  border-color: rgba(139, 30, 45, 0.96);
}

.state-panel {
  padding: 30px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.community-section {
  padding: 76px 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.1), rgba(11, 11, 13, 0.54)),
    radial-gradient(circle at 20% 20%, rgba(43, 111, 255, 0.12), transparent 30%);
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-card strong {
  font-size: 1.5rem;
}

.social-card a {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  color: var(--ivory);
  font-weight: 700;
}

.identity-section {
  padding: 76px 0;
}

.identity-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  margin-bottom: 18px;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.swatch {
  min-height: 168px;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.swatch span,
.swatch strong {
  display: block;
}

.swatch span {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.swatch strong {
  margin: 6px 0 4px;
  font-size: 1.1rem;
}

.swatch p {
  margin: 0;
  font-size: 0.92rem;
}

.swatch-crimson {
  background: #8b1e2d;
}

.swatch-black {
  background: #0b0b0d;
}

.swatch-gold {
  background: #d4af37;
  color: #1a1510;
}

.swatch-ivory {
  background: #f5f1e8;
  color: #1c1a18;
}

.swatch-steel {
  background: #6d7075;
}

.swatch-blue {
  background: #2b6fff;
}

.type-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.type-sample {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 241, 232, 0.08);
}

.type-demo {
  margin-bottom: 8px;
}

.type-display .type-demo {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.type-body .type-demo {
  font-size: 1.14rem;
  line-height: 1.6;
}

.type-accent .type-demo {
  font-family: "Caveat", cursive;
  font-size: 2.4rem;
  line-height: 1;
}

.type-note {
  margin: 0;
  color: var(--muted);
}

.type-body-copy {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
}

.contact-layout .contact-panel {
  min-height: 100%;
}

.contact-panel .button {
  width: fit-content;
  margin-top: 12px;
}

.steps-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.steps-list li + li {
  margin-top: 10px;
}

.editorial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card {
  background:
    linear-gradient(180deg, rgba(139, 30, 45, 0.2), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.cta-section {
  padding: 0 0 88px;
}

.cta-panel {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 62%);
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  background: rgba(7, 7, 9, 0.92);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 0 28px;
}

.footer-title {
  margin-bottom: 4px;
  color: var(--ivory);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-copy {
  margin: 0;
}

.footer-link {
  text-decoration: none;
  color: #eac96d;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    justify-content: start;
  }

  .hero,
  .episode-layout,
  .identity-layout,
  .about-grid,
  .facts-layout,
  .faq-grid,
  .episode-notes-grid,
  .editorial-grid,
  .feature-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100vw - 24px, 1180px);
  }

  .hero {
    padding-top: 42px;
  }

  .header-actions,
  .hero-actions,
  .split-heading,
  .footer-inner,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .episode-card {
    grid-template-columns: 1fr;
  }

  .swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .brand {
    align-items: flex-start;
  }

  .main-nav {
    gap: 12px;
  }

  .button,
  .episode-link {
    width: 100%;
  }

  .swatch-grid {
    grid-template-columns: 1fr;
  }
}
