/* ================================================================
   podcasts.css — Podcast Appearances page styles (YOI)
   ================================================================ */
body { background: #0A0A0A; color: #F5F0E8; font-family: 'Inter', sans-serif; }

/* Hero */
.pod-hero {
  padding: 120px 24px 80px;
  text-align: center;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.pod-hero .eyebrow { margin-bottom: 16px; }
.pod-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  color: #F5F0E8;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.pod-hero p {
  font-size: 18px;
  color: rgba(245,240,232,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.pod-hero p a { color: #C9A84C; text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4); }
.pod-hero p a:hover { border-bottom-color: #C9A84C; }

/* Main content */
.pod-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Section headers */
.pod-section {
  margin-bottom: 64px;
}
.pod-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: #C9A84C;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  letter-spacing: -0.01em;
}
.pod-section-intro {
  font-size: 16px;
  color: rgba(245,240,232,0.55);
  margin-bottom: 32px;
  margin-top: 8px;
  font-style: italic;
}

/* Episode card */
.ep-card {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}
.ep-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(245,240,232,0.05);
}
.ep-card-left { min-width: 0; }
.ep-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  color: #F5F0E8;
  line-height: 1.3;
  margin-bottom: 6px;
}
.ep-meta {
  font-size: 13px;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.ep-meta .year {
  color: #C9A84C;
  font-weight: 500;
}
.ep-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}
.ep-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.ep-link.apple {
  background: rgba(201,168,76,0.1);
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.25);
}
.ep-link.apple:hover {
  background: rgba(201,168,76,0.2);
  border-color: #C9A84C;
}
.ep-link.spotify {
  background: rgba(30,215,96,0.08);
  color: #1ED760;
  border: 1px solid rgba(30,215,96,0.2);
}
.ep-link.spotify:hover {
  background: rgba(30,215,96,0.15);
  border-color: #1ED760;
}
.ep-link.youtube {
  background: rgba(255,70,70,0.08);
  color: #FF4646;
  border: 1px solid rgba(255,70,70,0.2);
}
.ep-link.youtube:hover {
  background: rgba(255,70,70,0.15);
  border-color: #FF4646;
}
.ep-link.other {
  background: rgba(245,240,232,0.05);
  color: rgba(245,240,232,0.6);
  border: 1px solid rgba(245,240,232,0.15);
}
.ep-link.other:hover {
  background: rgba(245,240,232,0.1);
  color: #F5F0E8;
  border-color: rgba(245,240,232,0.3);
}
.ep-no-link {
  font-size: 12px;
  color: rgba(245,240,232,0.25);
  font-style: italic;
  margin-top: 8px;
}

/* CTA section */
.pod-cta {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 56px 40px;
  text-align: center;
  margin-top: 72px;
}
.pod-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: #F5F0E8;
  margin-bottom: 12px;
}
.pod-cta p {
  font-size: 17px;
  color: rgba(245,240,232,0.6);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.pod-cta-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.pod-cta-links a {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pod-cta-links .btn-gold {
  background: #C9A84C;
  color: #0A0A0A;
}
.pod-cta-links .btn-gold:hover {
  background: #E8C878;
  transform: translateY(-1px);
}
.pod-cta-links .btn-outline {
  border: 1px solid rgba(245,240,232,0.3);
  color: #F5F0E8;
}
.pod-cta-links .btn-outline:hover {
  border-color: #F5F0E8;
  background: rgba(245,240,232,0.05);
}

/* Related content links */
.pod-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.pod-related h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(245,240,232,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.pod-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pod-related-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 20px;
  transition: all 0.2s ease;
}
.pod-related-links a:hover {
  color: #C9A84C;
  border-color: rgba(201,168,76,0.3);
}

/* Footer */
.pod-footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 48px 24px 40px;
  text-align: center;
}
.pod-footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #C9A84C;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.pod-footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pod-footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.pod-footer-links a:hover { color: #C9A84C; }
.pod-footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(245,240,232,0.2);
}
.pod-footer-family {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(245,240,232,0.25);
  margin-top: 8px;
}
.pod-footer-family a {
  color: rgba(201,168,76,0.5);
  text-decoration: none;
}
.pod-footer-family a:hover { color: #C9A84C; }

/* Responsive */
@media (max-width: 767px) {
  .pod-hero { padding: 100px 20px 60px; }
  .pod-main { padding: 40px 16px 60px; }
  .ep-card {
    grid-template-columns: 1fr;
  }
  .pod-cta { padding: 40px 24px; }
  .pod-footer-links { gap: 16px; }
}
