/* ═══════════════════════════════════════════════════════════
   PODCAST — Dedicated Stylesheet
   ═══════════════════════════════════════════════════════════
   Covers:
     • Show Hero
     • Listen On Bar
     • Description Banner
     • Featured Episode
     • Season Filter
     • Episode Rows (show page)
     • Show Cards (archive hub)
     • Latest Episode Cards (archive hub)
     • Single Episode
     • Pagination
     • Shared Buttons
   ═══════════════════════════════════════════════════════════ */


/* ──────────────────────────────────
   Shared / Utility
   ────────────────────────────────── */
.podcast-section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy, #080c18);
}
.podcast-section-heading i {
  color: var(--gold, #c9a227);
  font-size: 1.1rem;
}

/* Podcast Buttons */
.podcast-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.podcast-btn--primary {
  background: var(--gold, #c9a227);
  color: #fff;
  border-color: var(--gold, #c9a227);
}
.podcast-btn--primary:hover {
  background: #b8921f;
  border-color: #b8921f;
}
.podcast-btn--outline {
  background: transparent;
  color: var(--navy, #080c18);
  border-color: var(--body-border, #e2e2ea);
}
.podcast-btn--outline:hover {
  border-color: var(--navy, #080c18);
  color: var(--navy, #080c18);
}
.podcast-btn--youtube {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.podcast-btn--youtube:hover {
  background: #cc0000;
  border-color: #cc0000;
}


/* ──────────────────────────────────
   Show Hero
   ────────────────────────────────── */
.podcast-show-hero {
  background: var(--navy, #080c18);
  padding: 64px 0 72px;
}
.podcast-show-hero-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.podcast-show-hero-cover img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.podcast-show-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--show-accent, #c9a227);
  margin-bottom: 12px;
}
.podcast-show-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 12px;
}
.podcast-show-hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
  max-width: 560px;
  line-height: 1.5;
}
.podcast-show-hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.podcast-show-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.podcast-show-hero-stat i {
  color: var(--show-accent, #c9a227);
}
.podcast-show-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--show-accent, #c9a227);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.podcast-show-hero-cta:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
}


/* ──────────────────────────────────
   Listen On Bar
   ────────────────────────────────── */
.podcast-listen-on {
  background: var(--navy-mid, #0d1326);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.podcast-listen-on-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.podcast-listen-on-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.podcast-listen-on-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.podcast-listen-on-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.04);
}
.podcast-listen-on-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}


/* ──────────────────────────────────
   Description Banner
   ────────────────────────────────── */
.podcast-desc-banner {
  background: linear-gradient(135deg, var(--blue, #1c3a8a) 0%, var(--blue-bright, #2655c0) 100%);
  padding: 56px 0;
}
.podcast-desc-banner-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.75;
}
.podcast-desc-banner-content p {
  margin: 0 0 1em;
}
.podcast-desc-banner-content p:last-child {
  margin-bottom: 0;
}


/* ──────────────────────────────────
   Featured Episode
   ────────────────────────────────── */
.podcast-featured {
  padding: 56px 0 48px;
}
.podcast-featured-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  background: #fff;
  border: 1px solid var(--card-border, #e2e2ea);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.podcast-featured-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.podcast-featured-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--card-bg, #f7f7fa);
}
.podcast-featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.podcast-featured-card:hover .podcast-featured-cover img {
  transform: scale(1.03);
}
.podcast-featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
.podcast-featured-card:hover .podcast-featured-play {
  background: var(--gold, #c9a227);
  transform: translate(-50%, -50%) scale(1.08);
}
.podcast-featured-body {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.podcast-featured-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--body-muted, #5a5a72);
  margin-bottom: 10px;
}
.podcast-featured-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
}
.podcast-featured-title a {
  color: var(--navy, #080c18);
  text-decoration: none;
  transition: color 0.2s;
}
.podcast-featured-title a:hover {
  color: var(--blue-bright, #2655c0);
}
.podcast-featured-excerpt {
  font-size: 0.95rem;
  color: var(--body-muted, #5a5a72);
  line-height: 1.6;
  margin: 0 0 20px;
}
.podcast-featured-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ──────────────────────────────────
   Season Filter
   ────────────────────────────────── */
.podcast-season-filter {
  padding: 24px 0 0;
}
.podcast-season-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.podcast-season-pill {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--card-bg, #f7f7fa);
  color: var(--body-color, #1a1a2e);
  border: 1px solid var(--body-border, #e2e2ea);
  cursor: pointer;
  transition: all 0.2s ease;
}
.podcast-season-pill:hover {
  background: #eaeaf0;
  border-color: #ccc;
}
.podcast-season-pill.active {
  background: var(--navy, #080c18);
  color: #fff;
  border-color: var(--navy, #080c18);
}

/* Mobile dropdown — hidden on desktop */
.podcast-season-dropdown {
  display: none;
}
.podcast-season-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--body-border, #e2e2ea);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--body-color, #1a1a2e);
  background: #fff;
  cursor: pointer;
}

@media (max-width: 600px) {
  .podcast-season-pills {
    display: none;
  }
  .podcast-season-dropdown {
    display: block;
  }
}


/* ──────────────────────────────────
   Episode Rows (Show Page)
   ────────────────────────────────── */
.podcast-episodes-section {
  padding: 48px 0 64px;
}
.podcast-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.podcast-ep-row {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--card-border, #e2e2ea);
  transition: all 0.2s ease;
}
.podcast-ep-row:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: #ccc;
}
.podcast-ep-row.hidden {
  display: none;
}
.podcast-ep-row-link {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}
.podcast-ep-row-cover {
  position: relative;
  width: 140px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg, #f7f7fa);
  flex-shrink: 0;
}
.podcast-ep-row-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.podcast-ep-row:hover .podcast-ep-row-cover img {
  transform: scale(1.04);
}
.podcast-ep-row-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.podcast-ep-row:hover .podcast-ep-row-play {
  opacity: 1;
}
.podcast-ep-row-body {
  min-width: 0;
}
.podcast-ep-row-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--body-muted, #5a5a72);
  margin-bottom: 4px;
}
.podcast-ep-row-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--navy, #080c18);
}
.podcast-ep-row:hover .podcast-ep-row-title {
  color: var(--blue-bright, #2655c0);
}
.podcast-ep-row-excerpt {
  font-size: 0.85rem;
  color: var(--body-muted, #5a5a72);
  line-height: 1.5;
  margin: 0;
}
.podcast-ep-row-arrow {
  color: var(--body-muted, #5a5a72);
  font-size: 0.9rem;
  padding-right: 8px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.podcast-ep-row:hover .podcast-ep-row-arrow {
  color: var(--blue-bright, #2655c0);
  transform: translateX(4px);
}

.podcast-no-episodes {
  text-align: center;
  color: var(--body-muted, #5a5a72);
  padding: 60px 0;
  font-size: 1.05rem;
}


/* ──────────────────────────────────
   Show Cards (Archive Hub /podcast/)
   ────────────────────────────────── */
.podcast-shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
  padding-top: 48px;
}
.podcast-show-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--card-border, #e2e2ea);
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.podcast-show-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: var(--show-accent, #c9a227);
}
.podcast-show-card-cover {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg, #f7f7fa);
  flex-shrink: 0;
}
.podcast-show-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast-show-card-cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--body-muted, #5a5a72);
}
.podcast-show-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--navy, #080c18);
}
.podcast-show-card:hover .podcast-show-card-title {
  color: var(--blue-bright, #2655c0);
}
.podcast-show-card-tagline {
  font-size: 0.9rem;
  color: var(--body-muted, #5a5a72);
  line-height: 1.5;
  margin: 0 0 12px;
}
.podcast-show-card-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--show-accent, #c9a227);
  margin-bottom: 10px;
}
.podcast-show-card-platforms {
  display: flex;
  gap: 10px;
  align-items: center;
}
.podcast-show-card-platforms i {
  font-size: 1.1rem;
  color: var(--body-muted, #5a5a72);
  transition: color 0.2s ease;
}
.podcast-show-card:hover .podcast-show-card-platforms i {
  color: var(--show-accent, #c9a227);
}


/* ──────────────────────────────────
   Latest Episode Cards (Archive Hub)
   ────────────────────────────────── */
.podcast-latest-section {
  padding: 16px 0 64px;
}
.podcast-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.podcast-latest-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--card-border, #e2e2ea);
  transition: box-shadow 0.2s, transform 0.2s;
}
.podcast-latest-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.podcast-latest-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.podcast-latest-card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--card-bg, #f7f7fa);
}
.podcast-latest-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.podcast-latest-card:hover .podcast-latest-card-cover img {
  transform: scale(1.04);
}
.podcast-play-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  backdrop-filter: blur(4px);
}
.podcast-latest-card-body {
  padding: 20px;
}
.podcast-latest-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.podcast-latest-card-show {
  color: var(--blue-bright, #2655c0);
}
.podcast-latest-card-meta span {
  color: var(--body-muted, #5a5a72);
}
.podcast-latest-card-meta span + span::before {
  content: '\00B7';
  margin-right: 8px;
  color: #ccc;
}
.podcast-latest-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--navy, #080c18);
}
.podcast-latest-card:hover .podcast-latest-card-title {
  color: var(--blue-bright, #2655c0);
}


/* ──────────────────────────────────
   Single Episode Hero
   ────────────────────────────────── */
.podcast-episode-hero {
  background: var(--navy, #080c18);
  padding: 48px 0 56px;
}
.podcast-episode-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.podcast-episode-hero-showcover img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.podcast-episode-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.podcast-episode-hero-eyebrow a {
  color: var(--show-accent, #c9a227);
  text-decoration: none;
  transition: color 0.2s;
}
.podcast-episode-hero-eyebrow a:hover {
  color: #fff;
}
.podcast-episode-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}


/* ──────────────────────────────────
   Single Episode Content
   ────────────────────────────────── */
.podcast-episode-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 0 32px;
}
.podcast-video-wrap {
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}
.podcast-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
}
.podcast-cover-wrap {
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}
.podcast-cover-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Listen-on bar inside single episode */
.podcast-episode-content .podcast-listen-on {
  margin: 0 -9999px 32px;
  padding: 16px 9999px;
  background: var(--navy-mid, #0d1326);
}

.podcast-episode-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.podcast-episode-description p {
  margin-bottom: 1.4em;
}
.podcast-episode-description p:last-child {
  margin-bottom: 0;
}
.podcast-episode-external {
  margin-bottom: 40px;
}


/* ──────────────────────────────────
   Episode Navigation
   ────────────────────────────────── */
.podcast-episode-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 0 64px;
  border-top: 1px solid var(--body-border, #e2e2ea);
}
.podcast-episode-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--card-border, #e2e2ea);
  transition: all 0.2s ease;
}
.podcast-episode-nav-link:hover {
  border-color: var(--blue-bright, #2655c0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.podcast-episode-nav-next {
  text-align: right;
}
.podcast-episode-nav-dir {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--body-muted, #5a5a72);
}
.podcast-episode-nav-link:hover .podcast-episode-nav-dir {
  color: var(--blue-bright, #2655c0);
}
.podcast-episode-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy, #080c18);
  line-height: 1.3;
}


/* ──────────────────────────────────
   Pagination
   ────────────────────────────────── */
.podcast-pagination {
  padding: 32px 0 0;
  display: flex;
  justify-content: center;
}
.podcast-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.podcast-pagination .page-numbers li a,
.podcast-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--body-border, #e2e2ea);
  color: var(--body-color, #1a1a2e);
  transition: all 0.2s ease;
}
.podcast-pagination .page-numbers li a:hover {
  background: var(--navy, #080c18);
  color: #fff;
  border-color: var(--navy, #080c18);
}
.podcast-pagination .page-numbers li span.current {
  background: var(--navy, #080c18);
  color: #fff;
  border-color: var(--navy, #080c18);
}


/* ──────────────────────────────────
   Responsive
   ────────────────────────────────── */
@media (max-width: 900px) {
  /* Show Hero */
  .podcast-show-hero-inner {
    grid-template-columns: 180px 1fr;
    gap: 32px;
  }
  .podcast-show-hero-cover img {
    width: 180px;
    height: 180px;
  }
  .podcast-show-hero-title {
    font-size: 2.2rem;
  }

  /* Featured Episode */
  .podcast-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .podcast-featured-body {
    padding: 24px;
  }

  /* Episode Row */
  .podcast-ep-row-link {
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
  }
  .podcast-ep-row-cover {
    width: 100px;
  }
  .podcast-ep-row-excerpt {
    display: none;
  }

  /* Latest Grid */
  .podcast-latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Show Cards */
  .podcast-shows-grid {
    grid-template-columns: 1fr;
  }
  .podcast-show-card {
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 20px;
  }
  .podcast-show-card-cover {
    width: 140px;
    height: 140px;
  }

  /* Single Episode Hero */
  .podcast-episode-hero-title {
    font-size: 1.8rem;
  }

  /* Episode Nav */
  .podcast-episode-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .podcast-episode-nav-next {
    text-align: left;
  }
}

@media (max-width: 560px) {
  /* Show Hero */
  .podcast-show-hero {
    padding: 40px 0 56px;
  }
  .podcast-show-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .podcast-show-hero-cover {
    display: flex;
    justify-content: center;
  }
  .podcast-show-hero-cover img {
    width: 160px;
    height: 160px;
  }
  .podcast-show-hero-title {
    font-size: 2rem;
  }
  .podcast-show-hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .podcast-show-hero-stats {
    justify-content: center;
  }

  /* Episode Row */
  .podcast-ep-row-link {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .podcast-ep-row-cover {
    width: 100%;
  }
  .podcast-ep-row-arrow {
    display: none;
  }

  /* Latest Grid */
  .podcast-latest-grid {
    grid-template-columns: 1fr;
  }

  /* Single Hero */
  .podcast-episode-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .podcast-episode-hero-title {
    font-size: 1.6rem;
  }

  /* Listen On */
  .podcast-listen-on-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .podcast-listen-on-links {
    gap: 4px;
  }
}
