/* ========================================
   Podcasts Page
   Alternating dark/light sections with torn-paper edges
   ======================================== */

/* ── Hero (dark) ── */
.pod-hero {
  position: relative;
  background: var(--dark);
  padding: clamp(120px, 15vw, 220px) var(--pad) clamp(80px, 10vw, 140px);
  text-align: center;
  overflow: hidden;
}
.pod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(194,90,48,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(212,168,71,.1) 0%, transparent 50%);
  pointer-events: none;
}
.pod-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.pod-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 16px;
}
.pod-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.pod-hero__desc {
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.3vw, 1.15rem);
  color: var(--grey);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Sections ── */
.pod-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--pad) clamp(60px, 8vw, 100px);
}
.pod-section--dark {
  background: var(--dark);
}
.pod-section--light {
  background: var(--warm);
}

/* ── Torn paper edges using inspiration assets ── */
.pod-tear {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(30px, 4vw, 60px);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 2;
}
/* Dark section — dark torn edge at bottom, ripping into the light section below */
.pod-tear--dark {
  background-image: url('../images/tears/tear-dark.png');
}
/* Light section — light torn edge at bottom, ripping into the dark section below */
.pod-tear--light {
  background-image: url('../images/tears/tear-light.png');
}

/* ── Row layout ── */
.pod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.pod-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.pod-row--flip {
  direction: rtl;
}
.pod-row--flip > * {
  direction: ltr;
}

/* ── Image placeholder ── */
.pod-row__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}
.pod-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.pod-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pod-section--dark .pod-placeholder {
  background: var(--black);
  border: 2px solid rgba(255,255,255,.06);
}
.pod-section--light .pod-placeholder {
  background: rgba(0,0,0,.06);
  border: 2px solid rgba(0,0,0,.08);
}
.pod-placeholder::after {
  content: 'Podcast Cover';
  position: absolute;
  bottom: 16px;
  font-family: var(--body);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pod-section--dark .pod-placeholder::after { color: var(--grey); }
.pod-section--light .pod-placeholder::after { color: var(--warm-muted); }
.pod-placeholder__icon {
  font-size: 3rem;
}
.pod-section--dark .pod-placeholder__icon { color: rgba(255,255,255,.08); }
.pod-section--light .pod-placeholder__icon { color: rgba(0,0,0,.08); }

/* ── Info text ── */
.pod-row__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pod-row__date {
  font-family: var(--body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
}
.pod-row__info h2 {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}
.pod-section--dark .pod-row__info h2 { color: var(--white); }
.pod-section--light .pod-row__info h2 { color: var(--black); }

.pod-row__info h3 {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.2vw, 1.1rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
}
.pod-row__info p {
  font-family: var(--serif);
  font-size: clamp(.85rem, 1.1vw, 1rem);
  line-height: 1.8;
}
.pod-section--dark .pod-row__info p { color: var(--grey); }
.pod-section--light .pod-row__info p { color: var(--warm-muted); }

/* ── Links ── */
.pod-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pod-link {
  display: inline-block;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--orange);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background .3s;
}
.pod-link:hover {
  background: var(--orange-hi);
}
.pod-link--alt {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.pod-link--alt:hover {
  background: var(--orange);
  color: var(--white);
}

/* ── CTA (dark) ── */
.pod-cta {
  position: relative;
  background: var(--warm);
  padding: clamp(100px, 12vw, 180px) var(--pad);
  text-align: center;
}
.pod-cta__inner {
  position: relative;
  z-index: 1;
}
.pod-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}
.pod-cta p {
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
  color: var(--warm-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pod-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pod-row--flip {
    direction: ltr;
  }
  .pod-row__img {
    aspect-ratio: 16/9;
  }
}
