/*
  Castcore — polished show.css (directory + single-show + reset).
  Inherits --pc-* tokens from the Castcore SPA design system. Designed
  to feel quiet and weighty: hairline rules, generous whitespace,
  type-driven hierarchy, one tuned shadow per surface.

  Sections:
    1. Tokens + reset
    2. Top nav  (.cc-nav)
    3. Directory hero + featured + grid  (.dir, .dir-hero, .dir-feat, .dir-grid)
    4. Single show page  (.show)
    5. Footer  (.cc-foot)
*/

/* ── 1. Tokens + reset ─────────────────────────────────────── */

:root {
  color-scheme: light dark;

  --pc-bg: #ffffff;
  --pc-bg-elev: #ffffff;
  --pc-bg-sunken: #f5f5f7;
  --pc-bg-hover: rgba(0, 0, 0, 0.04);
  --pc-bg-active: rgba(0, 0, 0, 0.07);

  --pc-fg: #1d1d1f;
  --pc-fg-2: #424245;
  --pc-fg-muted: #6e6e73;
  --pc-fg-faint: #a1a1a6;
  --pc-fg-on-accent: #ffffff;

  --pc-rule: #d2d2d7;
  --pc-rule-soft: #ebebef;
  --pc-rule-hair: #f2f2f4;

  --pc-focus-ring: rgba(0, 110, 219, 0.35);
  --pc-accent: #006edb;
  --pc-accent-hover: #1f7ee0;
  --pc-accent-soft: rgba(0, 110, 219, 0.10);

  --pc-brand-1: #5a44c4;
  --pc-brand-2: #3a2a82;
  --pc-brand-deep: #1a0f3d;

  --pc-amber: #b87300;
  --pc-amber-soft: #fff1d6;

  --pc-font: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, sans-serif;
  --pc-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --pc-r-input: 6px;
  --pc-r-panel: 10px;
  --pc-r-tile: 14px;
  --pc-r-pill: 980px;

  --pc-shadow-tile:
    0 1px 2px rgba(15, 17, 26, 0.06),
    0 12px 30px -12px rgba(15, 17, 26, 0.16);
  --pc-shadow-tile-hover:
    0 1px 2px rgba(15, 17, 26, 0.08),
    0 24px 56px -16px rgba(15, 17, 26, 0.24);
  --pc-shadow-tile-feat:
    0 1px 2px rgba(15, 17, 26, 0.05),
    0 36px 96px -28px rgba(15, 17, 26, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root {
    --pc-bg: #000000;
    --pc-bg-elev: #1c1c1e;
    --pc-bg-sunken: #161618;
    --pc-bg-hover: rgba(255, 255, 255, 0.06);
    --pc-bg-active: rgba(255, 255, 255, 0.10);

    --pc-fg: #f5f5f7;
    --pc-fg-2: #d6d6d9;
    --pc-fg-muted: #a1a1a6;
    --pc-fg-faint: #6e6e73;

    --pc-rule: #2a2a2c;
    --pc-rule-soft: #1f1f21;
    --pc-rule-hair: #161618;

    --pc-focus-ring: rgba(76, 165, 254, 0.4);
    --pc-accent: #4ca5fe;
    --pc-accent-hover: #6cb5fe;
    --pc-accent-soft: rgba(76, 165, 254, 0.16);

    --pc-amber: #ff9f0a;
    --pc-amber-soft: rgba(255, 159, 10, 0.16);

    --pc-shadow-tile:
      0 1px 0 rgba(255, 255, 255, 0.04),
      0 16px 40px -12px rgba(0, 0, 0, 0.55);
    --pc-shadow-tile-hover:
      0 1px 0 rgba(255, 255, 255, 0.05),
      0 24px 56px -14px rgba(0, 0, 0, 0.7);
    --pc-shadow-tile-feat:
      0 1px 0 rgba(255, 255, 255, 0.04),
      0 36px 96px -28px rgba(0, 0, 0, 0.7);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
html {
  background: var(--pc-bg);
  color: var(--pc-fg);
  font-family: var(--pc-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
body {
  /* Subtle vertical gradient — the page itself feels like polished
     stone, slightly lighter at top, slightly cooler below. */
  background:
    radial-gradient(120% 60% at 50% -10%,
      color-mix(in srgb, var(--pc-brand-1) 6%, var(--pc-bg)) 0%,
      var(--pc-bg) 60%);
  min-height: 100vh;
}
@media (prefers-color-scheme: dark) {
  body {
    background:
      radial-gradient(120% 60% at 50% -10%,
        color-mix(in srgb, var(--pc-brand-1) 16%, var(--pc-bg)) 0%,
        var(--pc-bg) 60%);
  }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

::selection { background: var(--pc-accent-soft); color: var(--pc-fg); }

/* ── 2. Top nav ────────────────────────────────────────────── */

.cc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: color-mix(in srgb, var(--pc-bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--pc-rule-soft);
}
.cc-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pc-fg);
  letter-spacing: -0.01em;
  font-weight: 600;
  font-size: 15px;
}
.cc-nav__mark {
  width: 22px; height: 22px;
  color: var(--pc-brand-1);
  flex: 0 0 auto;
}
.cc-nav__mark svg { width: 100%; height: 100%; display: block; }
.cc-nav__sep {
  color: var(--pc-fg-faint);
  font-weight: 400;
  margin: 0 -2px;
}
.cc-nav__crumb {
  color: var(--pc-fg-muted);
  font-weight: 500;
}
.cc-nav__spacer { flex: 1 1 auto; }
.cc-nav__count {
  font-family: var(--pc-font-mono);
  font-size: 11.5px;
  color: var(--pc-fg-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* ── 3. Directory ─────────────────────────────────────────── */

.dir {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.dir-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 56px;
}
.dir-hero__kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pc-brand-1);
}
@media (prefers-color-scheme: dark) {
  .dir-hero__kicker { color: #9a86e8; }
}
.dir-hero__title {
  margin: 0;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--pc-fg);
  text-wrap: balance;
  max-width: 16ch;
}
.dir-hero__sub {
  margin: 6px 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--pc-fg-muted);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ── Featured spotlight ─────────────────────────────────── */

.dir-feat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 72px;
  align-items: center;
}
@media (min-width: 800px) {
  .dir-feat {
    grid-template-columns: minmax(280px, 1fr) 1.1fr;
    gap: 48px;
  }
}

.dir-feat__art {
  position: relative;
  border-radius: var(--pc-r-tile);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--pc-bg-sunken);
  box-shadow: var(--pc-shadow-tile-feat);
  isolation: isolate;
}
.dir-feat__art::after {
  /* Subtle inner sheen so the cover reads as a physical object,
     not a pasted photo. */
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08),
              inset 0 0 0 1px rgba(0,0,0,0.06);
  border-radius: inherit;
  pointer-events: none;
}
.dir-feat__art img {
  width: 100%; height: 100%; object-fit: cover;
}

.dir-feat__body { min-width: 0; }
.dir-feat__kicker {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pc-fg-muted);
  margin-bottom: 14px;
}
.dir-feat__kicker .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pc-brand-1);
  vertical-align: middle;
  margin: -2px 8px 0;
  animation: cc-pulse 2.4s ease-in-out infinite;
}
@keyframes cc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
.dir-feat__title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--pc-fg);
  text-wrap: pretty;
}
.dir-feat__author {
  margin: 12px 0 0;
  font-size: 14.5px;
  color: var(--pc-fg-2);
}
.dir-feat__author a { color: var(--pc-fg-2); }
.dir-feat__author a:hover { color: var(--pc-fg); }
.dir-feat__desc {
  margin: 18px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--pc-fg-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.dir-feat__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 18px 10px 16px;
  border-radius: var(--pc-r-pill);
  background: var(--pc-fg);
  color: var(--pc-bg);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.12s, background 0.12s;
}
.dir-feat__cta svg { width: 12px; height: 12px; fill: currentColor; transform: translateX(1px); }
.dir-feat__cta:hover { transform: translateY(-1px); }

/* ── Grid of all shows ──────────────────────────────────── */

.dir-section {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pc-rule-soft);
}
.dir-section__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--pc-fg);
}
.dir-section__meta {
  font-family: var(--pc-font-mono);
  font-size: 11.5px;
  color: var(--pc-fg-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.dir-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}
@media (min-width: 560px) {
  .dir-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
}
@media (min-width: 880px) {
  .dir-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1180px) {
  .dir-grid { grid-template-columns: repeat(5, 1fr); }
}

.dir-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dir-card__link {
  display: block;
  color: inherit;
}
.dir-card__art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--pc-r-tile);
  overflow: hidden;
  background: var(--pc-bg-sunken);
  box-shadow: var(--pc-shadow-tile);
  transition: transform 0.18s cubic-bezier(.4,0,.2,1),
              box-shadow 0.18s;
  isolation: isolate;
}
.dir-card__art::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(0,0,0,0.05);
  pointer-events: none;
}
.dir-card__art img {
  width: 100%; height: 100%; object-fit: cover;
}
.dir-card__link:hover .dir-card__art {
  transform: translateY(-3px);
  box-shadow: var(--pc-shadow-tile-hover);
}
.dir-card__link:focus-visible {
  outline: none;
}
.dir-card__link:focus-visible .dir-card__art {
  box-shadow:
    var(--pc-shadow-tile),
    0 0 0 3px var(--pc-bg),
    0 0 0 5px var(--pc-focus-ring);
}

.dir-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 2px;
}
.dir-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--pc-fg);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dir-card__author {
  margin: 0;
  font-size: 12.5px;
  color: var(--pc-fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dir-empty {
  margin: 80px 0;
  text-align: center;
  color: var(--pc-fg-muted);
  font-size: 15px;
  font-style: italic;
}

/* Placeholder art tile when a show has no artwork_url. */
.dir-card__art--placeholder,
.dir-feat__art--placeholder {
  background:
    radial-gradient(120% 120% at 18% 10%,
      var(--pc-brand-1) 0%, var(--pc-brand-2) 55%, var(--pc-brand-deep) 100%);
}
.dir-card__art--placeholder svg,
.dir-feat__art--placeholder svg {
  width: 38%; height: 38%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #f5f3ee;
  opacity: 0.92;
}

/* ── 4. Single show page ───────────────────────────────────
   Carries the same vocabulary into the per-show layout. */

.show {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 24px 140px;
}

.show__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 36px;
}
@media (min-width: 720px) {
  .show__header { grid-template-columns: 260px 1fr; gap: 36px; }
}

.show__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--pc-r-tile);
  background: var(--pc-bg-sunken);
  object-fit: cover;
  box-shadow: var(--pc-shadow-tile);
}

.show__kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pc-brand-1);
  margin-bottom: 10px;
}
.show__title {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: pretty;
}
.show__author {
  margin: 12px 0 0;
  color: var(--pc-fg-2);
  font-size: 15.5px;
}
.show__category {
  margin: 10px 0 0;
  color: var(--pc-fg-muted);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.show__listen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.show__btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--pc-r-pill);
  background: var(--pc-bg-sunken);
  color: var(--pc-fg);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--pc-rule-soft);
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.show__btn:hover {
  background: var(--pc-bg-active);
  border-color: var(--pc-rule);
}
.show__btn--apple:hover { color: #ff5e9c; }
.show__btn--spotify:hover { color: #1ed760; }

.show__description {
  margin: 0 0 40px;
  color: var(--pc-fg-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
  text-wrap: pretty;
}
.show__description p { margin: 0 0 14px; }
.show__description p:last-child { margin-bottom: 0; }

.episodes__heading {
  margin: 0 0 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pc-rule-soft);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.episodes__empty {
  color: var(--pc-fg-muted);
  font-style: italic;
  padding: 24px 0;
}
.episodes__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.episode {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--pc-rule-soft);
  align-items: start;
}
.episode:last-child { border-bottom: none; }
@media (min-width: 720px) {
  .episode { grid-template-columns: 88px 1fr auto; gap: 22px; }
}

.episode__art {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--pc-bg-sunken);
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
@media (min-width: 720px) {
  .episode__art { width: 88px; height: 88px; border-radius: 12px; }
}

.episode__title {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.32;
}
.episode__meta {
  margin: 0 0 8px;
  color: var(--pc-fg-muted);
  font-size: 12.5px;
  font-family: var(--pc-font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.episode__dot { margin: 0 6px; opacity: 0.5; }
.episode__desc {
  margin: 0;
  color: var(--pc-fg-2);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: pretty;
}

.episode__chapters {
  margin-top: 8px;
}
.episode__chapters > summary {
  color: var(--pc-fg-muted);
  font-size: 12.5px;
  font-family: var(--pc-font-mono);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
.episode__chapters > summary::-webkit-details-marker { display: none; }
.episode__chapters > summary::before {
  content: '›';
  display: inline-block;
  transition: transform 0.15s;
  opacity: 0.45;
}
.episode__chapters[open] > summary::before { transform: rotate(90deg); }
.chapters__list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chapters__list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.ch__time {
  color: var(--pc-fg-muted);
  font-family: var(--pc-font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  flex-shrink: 0;
}
.ch__title {
  color: var(--pc-fg-2);
  font-size: 13px;
}

.episode__play {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--pc-rule);
  background: var(--pc-bg);
  color: var(--pc-fg);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.12s, background 0.12s, border-color 0.12s, color 0.12s;
}
.episode__play:hover {
  background: var(--pc-fg);
  color: var(--pc-bg);
  border-color: var(--pc-fg);
  transform: scale(1.05);
}
.episode__play:active { transform: scale(0.97); }
.episode__play svg { width: 12px; height: 12px; fill: currentColor; transform: translateX(1px); }
.episode__play:focus-visible {
  outline: 2px solid var(--pc-accent);
  outline-offset: 3px;
}

/* ── 5. Footer ────────────────────────────────────────────── */

.cc-foot {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--pc-rule-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--pc-fg-muted);
}
.cc-foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.cc-foot__mark {
  width: 14px; height: 14px;
  color: var(--pc-fg-faint);
}
.cc-foot a:hover { color: var(--pc-fg); }
.cc-foot__links { display: flex; gap: 18px; }

/* ── Breadcrumb: linked ancestor crumbs + current crumb ────── */
.cc-nav__crumb a {
  color: var(--pc-fg-muted);
  transition: color 0.12s;
}
.cc-nav__crumb a:hover { color: var(--pc-fg); }
.cc-nav__crumb--current {
  color: var(--pc-fg);
  font-weight: 600;
  max-width: 42ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Listen row buttons carry leading icons ────────────────── */
.show__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.show__btn svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

/* ── 6. Per-episode page  (.ep-page) ───────────────────────── */

.ep-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.ep-page__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}
@media (max-width: 520px) {
  .ep-page__header { grid-template-columns: auto 1fr; }
  .ep-page__play   { grid-column: 2; justify-self: start; margin-top: 12px; }
}

.ep-page__art {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--pc-bg-sunken);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .ep-page__art { width: 120px; height: 120px; border-radius: 18px; }
}

.ep-page__meta { min-width: 0; }

.ep-page__show {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--pc-fg-muted);
}
.ep-page__show a {
  color: inherit;
  text-decoration: none;
}
.ep-page__show a:hover { text-decoration: underline; }

.ep-page__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: pretty;
}
@media (min-width: 600px) {
  .ep-page__title { font-size: 26px; }
}

.ep-page__play {
  width: 48px;
  height: 48px;
  align-self: start;
  margin-top: 4px;
}
.ep-page__play svg { width: 14px; height: 14px; }

.ep-page__chapters {
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--pc-bg-sunken);
  border-radius: 12px;
}
.ep-page__chapters > summary {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.ep-page__chapters .chapters__list {
  margin-top: 12px;
}
.ep-page__chapters .chapters__list li {
  padding: 5px 0;
  border-top: 1px solid var(--pc-rule-soft);
}
.ep-page__chapters .chapters__list li:first-child { border-top: none; }

.ep-page__desc {
  color: var(--pc-fg-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.ep-page__desc p { margin: 0 0 1em; }
.ep-page__desc p:last-child { margin-bottom: 0; }

.ep-page__subscribe {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--pc-rule-soft);
}
