/* ================================================================
   podcasts.css — Podcasts page styles (LAW)
   Light design: ivory bg, teal + gold accents, Inter font, dark text
   ================================================================ */

/* Hero */
.pod-hero {
  background: var(--ivory);
  padding: 120px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.pod-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.pod-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}
.pod-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.pod-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 16px;
  font-weight: 300;
}
.pod-hero p a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.pod-hero p a:hover { color: var(--teal-dark); }
.pod-hero p em { font-style: italic; color: var(--dark); }
.pod-hero-rule {
  width: 56px;
  height: 2px;
  background: var(--teal);
  margin-top: 40px;
}

/* Main */
.pod-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 48px 80px;
  background: var(--ivory);
}

/* Topic section */
.pod-cluster {
  margin-bottom: 64px;
}
.pod-cluster-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--teal);
}
.pod-cluster-intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #888;
  font-style: italic;
  margin-bottom: 24px;
  margin-top: 8px;
}

/* Episode card */
.ep-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ep-card:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(42,150,136,0.08);
}
.ep-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 6px;
}
.ep-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}
.ep-meta .year {
  color: var(--gold);
  font-weight: 500;
}
.ep-meta .together-note {
  color: var(--teal);
  font-style: italic;
}
.ep-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.ep-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  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(42,150,136,0.07);
  color: var(--teal-dark);
  border: 1px solid rgba(42,150,136,0.2);
}
.ep-link.apple:hover {
  background: rgba(42,150,136,0.15);
  border-color: var(--teal);
  color: var(--teal);
}
.ep-link.spotify {
  background: rgba(30,215,96,0.07);
  color: #1a7a40;
  border: 1px solid rgba(30,215,96,0.2);
}
.ep-link.spotify:hover {
  background: rgba(30,215,96,0.14);
  border-color: #2db355;
}
.ep-link.youtube {
  background: rgba(200,50,50,0.06);
  color: #b03030;
  border: 1px solid rgba(200,50,50,0.15);
}
.ep-link.youtube:hover {
  background: rgba(200,50,50,0.12);
  border-color: #c84040;
}
.ep-link.other {
  background: rgba(42,150,136,0.05);
  color: #666;
  border: 1px solid rgba(0,0,0,0.1);
}
.ep-link.other:hover {
  background: rgba(42,150,136,0.1);
  color: var(--teal-dark);
}
.ep-no-link {
  font-size: 12px;
  color: #aaa;
  font-style: italic;
  margin-top: 8px;
}

/* CTA */
.pod-cta {
  background: var(--teal-dark);
  border-radius: 10px;
  padding: 56px 40px;
  text-align: center;
  margin-top: 72px;
}
.pod-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--ivory);
  margin-bottom: 12px;
}
.pod-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(250,248,243,0.7);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 300;
}
.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: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pod-cta-links .btn-primary {
  background: var(--gold);
  color: var(--teal-dark);
}
.pod-cta-links .btn-primary:hover {
  background: #dfc060;
  transform: translateY(-1px);
}
.pod-cta-links .btn-ghost {
  border: 1px solid rgba(250,248,243,0.35);
  color: var(--ivory);
}
.pod-cta-links .btn-ghost:hover {
  border-color: var(--ivory);
  background: rgba(250,248,243,0.08);
}

/* Footer */
.pod-footer {
  background: var(--footer-bg);
  padding: 48px 48px 40px;
  text-align: center;
}
.pod-footer-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.pod-footer-links {
  display: flex;
  gap: 20px;
  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(250,248,243,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.pod-footer-links a:hover { color: var(--gold); }
.pod-footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(250,248,243,0.25);
}
.pod-footer-family {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(250,248,243,0.3);
  margin-top: 8px;
}
.pod-footer-family a {
  color: rgba(201,168,76,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.pod-footer-family a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 768px) {
  .pod-hero { padding: 100px 20px 60px; }
  .pod-main { padding: 40px 20px 60px; }
  .pod-cta { padding: 40px 20px; }
  .pod-footer { padding: 40px 20px 32px; }
  .pod-footer-links { gap: 14px; }
}
