/* ============================================================
   PODCAST / DIALOGUE PAGE  — dark theme
   Colours pulled from the site theme:
     --primary  #FF6701   (orange)
     --secondary #171749  (deep navy)
   ============================================================ */

.podcast-main {
  --pc-bg: #0a0d1a;
  --pc-bg-2: #0d1326;
  --pc-panel: #111931;
  --pc-panel-2: #141c3a;
  --pc-border: rgba(255, 255, 255, 0.08);
  --pc-border-soft: rgba(255, 255, 255, 0.05);
  --pc-text: #e8ebf5;
  --pc-muted: #9aa3bd;
  --pc-muted-2: #79809a;
  background: var(--pc-bg);
  color: var(--pc-text);
  position: relative;
  overflow: hidden;
}

.podcast-main p {
  color: var(--pc-muted);
  opacity: 1;
}

/* Generic section padding for the dark page */
.podcast-main .pc-section {
  padding: 5.5rem 0;
}

/* Eyebrow label — "— DIALOGUE" */
.pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.pc-eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

/* Section headings */
.pc-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.9rem;
  font-family: Helvetica, Arial, sans-serif;
}
.pc-sub {
  font-size: 1.1rem;
  color: var(--pc-muted);
  max-width: 640px;
  margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.pc-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background:
    radial-gradient(1200px 600px at 78% 18%, rgba(41, 41, 87, 0.55), transparent 60%),
    radial-gradient(900px 500px at 12% 90%, rgba(255, 103, 1, 0.06), transparent 60%),
    linear-gradient(180deg, #0b0f20 0%, #0a0d1a 100%);
}

.pc-hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 1.6rem;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
}
.pc-hero-title .accent {
  background: linear-gradient(90deg, #ff6701 0%, #ff9142 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff6701;
}
.pc-hero-lead {
  font-size: 1.15rem;
  color: #aab2cc;
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 2.6rem;
}

/* Hero stats */
.pc-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.pc-stat-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.pc-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pc-muted-2);
  margin-top: 0.35rem;
}

/* Hero visual — decorative equaliser card */
.pc-hero-visual {
  background: linear-gradient(160deg, rgba(28, 35, 62, 0.6), rgba(15, 20, 40, 0.6));
  border: 1px solid var(--pc-border);
  border-radius: 24px;
  padding: 2.5rem;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pc-bar {
  width: clamp(26px, 4.5%, 60px);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #3a4468, #232a45);
  animation: pcBar 2.6s ease-in-out infinite;
}
.pc-bar.orange {
  background: linear-gradient(180deg, #ff8c42, #ff6701);
}
@keyframes pcBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.82); }
}

/* ============================================================
   FEATURED EPISODE
   ============================================================ */
.pc-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--pc-border);
  background: var(--pc-panel);
  margin-top: 2.8rem;
}

/* Thumbnail side */
.pc-thumb {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 22px),
    linear-gradient(150deg, #3a2540 0%, #1c2140 55%, #141830 100%);
}
/* Real YouTube thumbnail image */
.pc-thumb { isolation: isolate; }
.pc-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* subtle scrim so the play button pops and the card blends with the dark theme */
.pc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(10, 13, 26, 0.15), rgba(10, 13, 26, 0.35) 75%),
    linear-gradient(to top, rgba(10, 13, 26, 0.55) 0%, rgba(10, 13, 26, 0) 40%);
  transition: background 0.25s ease;
}
.pc-thumb:hover::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(10, 13, 26, 0.05), rgba(10, 13, 26, 0.25) 75%),
    linear-gradient(to top, rgba(10, 13, 26, 0.5) 0%, rgba(10, 13, 26, 0) 40%);
}

/* readability scrim behind the bottom title/meta */
.pc-thumb-meta {
  position: relative;
  z-index: 2;
}
.pc-play { position: relative; z-index: 2; }
.pc-duration { z-index: 2; }
.pc-thumb.blue {
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 20px),
    linear-gradient(150deg, #1f3b6e 0%, #1a2a52 60%, #141d38 100%);
}
.pc-thumb-meta .kicker {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.pc-thumb-meta .thumb-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
  max-width: 15rem;
}

/* Play button — centered in the free space above the bottom text
   (margin:auto inside the column flex), so it never overlaps the title */
.pc-play {
  margin: auto;
  flex: none;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 103, 1, 0.55), 0 8px 30px rgba(255, 103, 1, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pc-play i { font-size: 2rem; margin-left: 4px; }
.pc-play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(255, 103, 1, 0.12), 0 8px 30px rgba(255, 103, 1, 0.5);
}
.pc-play.sm { width: 58px; height: 58px; }
.pc-play.sm i { font-size: 1.6rem; }

/* Duration badge */
.pc-duration {
  position: absolute;
  bottom: 1.1rem;
  right: 1.1rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

/* Info side */
.pc-featured-info {
  padding: 2.6rem;
  background: var(--pc-panel-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pc-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  color: #ffb27f;
  background: rgba(255, 103, 1, 0.12);
  border: 1px solid rgba(255, 103, 1, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.pc-featured-info h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.pc-featured-info .desc {
  color: var(--pc-muted);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}
.pc-meta {
  display: flex;
  gap: 1.6rem;
  color: var(--pc-muted-2);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

/* Outlined "Watch on YouTube" button */
.pc-btn-ghost {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.pc-btn-ghost:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.pc-btn-ghost i { font-size: 1.1rem; }

/* ============================================================
   MORE FROM THE CHANNEL
   ============================================================ */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.pc-card {
  border: 1px solid var(--pc-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--pc-panel);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 103, 1, 0.35);
}
.pc-card .pc-thumb {
  min-height: 190px;
  padding: 1.2rem;
}
.pc-card .pc-thumb-meta .thumb-title { font-size: 1.2rem; }
.pc-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.pc-card-body .pc-pill { margin-bottom: 1rem; }
.pc-card-body h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
}
.pc-card-body .desc {
  color: var(--pc-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.pc-card-body .pc-meta {
  justify-content: space-between;
  margin-bottom: 0;
  gap: 0;
}

/* Placeholder (coming-soon) cards */
.pc-card.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.015);
}
.pc-ph-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 103, 1, 0.12);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.pc-card.placeholder h4 {
  color: #d6dae8;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}
.pc-card.placeholder p {
  color: var(--pc-muted-2);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   NEVER MISS AN EPISODE — CTA band
   ============================================================ */
.pc-cta {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 103, 1, 0.25);
  background:
    radial-gradient(700px 400px at 100% 50%, rgba(255, 103, 1, 0.28), transparent 65%),
    linear-gradient(120deg, #2a1420 0%, #1a1330 55%, #141a34 100%);
}
.pc-cta h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2.1rem;
  margin: 0 0 0.6rem;
}
.pc-cta p {
  color: #cdd2e4;
  margin: 0;
  max-width: 40rem;
}
.pc-cta .primary-btn {
  white-space: nowrap;
  font-size: 1rem;
  padding: 0.7rem 1.4rem !important;
}

/* Small "Watch ↗" link inside card meta */
.pc-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffb27f;
  font-weight: 600;
  transition: color 0.2s ease;
}
.pc-meta-link:hover { color: var(--primary); }
.pc-meta-link i { font-size: 1rem; }

/* ============================================================
   VIDEO LIGHTBOX
   ============================================================ */
.pc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.pc-lightbox.open { display: flex; }
.pc-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 14, 0.85);
  backdrop-filter: blur(6px);
}
.pc-lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}
.pc-lightbox-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #000;
}
.pc-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pc-lightbox-close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.pc-lightbox-close:hover { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .pc-hero { padding: 9rem 0 3.5rem; }
  .pc-hero-title { font-size: 3.2rem; }
  .pc-title { font-size: 2.1rem; }
  .pc-hero-visual { height: 240px; margin-top: 2.5rem; }
  .pc-featured-card { grid-template-columns: 1fr; }
  .pc-grid { grid-template-columns: repeat(2, 1fr); }
  /* Once stacked, show thumbnails at their natural 16:9 so the YouTube
     image isn't cropped to a near-square. Selectors are kept specific enough
     to beat the base `.pc-card .pc-thumb { min-height }` rule. */
  .pc-thumb,
  .pc-featured-card .pc-thumb,
  .pc-card .pc-thumb { min-height: 0; aspect-ratio: 16 / 9; }
}

@media (max-width: 767px) {
  .podcast-main .pc-section { padding: 3.5rem 0; }
  .pc-hero { padding: 8rem 0 3rem; }
  .pc-hero-title { font-size: 2.5rem; }
  .pc-hero-lead { font-size: 1.05rem; }
  .pc-stats { gap: 1.8rem; }
  .pc-title { font-size: 1.9rem; }
  .pc-featured-info { padding: 1.8rem; }
  .pc-featured-info h3 { font-size: 1.45rem; }
  .pc-grid { grid-template-columns: 1fr; }
  .pc-cta { padding: 2.2rem 1.8rem; }
  .pc-cta h2 { font-size: 1.7rem; }
  .pc-hero-visual { padding: 1.5rem; gap: 8px; }
}
