/* =============================================================
   Podcast page — Monceau Investissement Conseil
   Hérite de style.css et blog.css, ajoute les styles spécifiques
   ============================================================= */

/* HERO PODCAST */
.podcast-hero {
  padding: 60px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.podcast-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.podcast-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.podcast-hero h1 em {
  font-style: italic;
  color: var(--text-muted);
}
.podcast-hero-tagline {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}
.podcast-hero-tagline strong {
  color: var(--text);
  font-weight: 600;
}
.podcast-hero-tagline em {
  font-style: italic;
}

/* PLATEFORMES D'ÉCOUTE */
.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.podcast-platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.podcast-platform:hover {
  background: rgba(245, 245, 240, 0.08);
  border-color: var(--text);
  transform: translateY(-1px);
}
.podcast-platform svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* SECTIONS */
.podcast-section {
  margin-bottom: 80px;
}
.podcast-section .section-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 32px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.podcast-section .section-title em {
  font-style: italic;
  color: var(--text-muted);
}
.podcast-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 780px;
}
.podcast-section p strong {
  color: var(--text);
  font-weight: 600;
}
.podcast-section p em {
  font-style: italic;
  color: var(--text);
}

/* CALLOUT */
.podcast-section .callout {
  background: rgba(245, 245, 240, 0.03);
  border-left: 2px solid var(--text-muted);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 4px;
  max-width: 780px;
}
.podcast-section .callout-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 600;
}
.podcast-section .callout p {
  margin-bottom: 0;
  font-size: 16px;
}

/* GRILLE DES SUJETS */
.podcast-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.podcast-topic {
  padding: 28px 26px;
  background: rgba(245, 245, 240, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.podcast-topic:hover {
  background: rgba(245, 245, 240, 0.05);
  border-color: var(--border-strong);
}
.podcast-topic h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--text);
}
.podcast-topic p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* PRÉSENTATION DES HÔTES */
.podcast-hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}
.podcast-host {
  padding: 32px;
  background: rgba(245, 245, 240, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.podcast-host h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.podcast-host-role {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px !important;
  font-weight: 500;
}
.podcast-host p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: none;
}
.podcast-host a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.podcast-host a:hover {
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .podcast-hero {
    padding: 36px 0 40px;
    margin-bottom: 48px;
  }
  .podcast-hero h1 {
    font-size: clamp(32px, 8vw, 48px);
  }
  .podcast-hero-tagline {
    font-size: 16px;
  }
  .podcast-platforms {
    gap: 8px;
  }
  .podcast-platform {
    padding: 9px 16px;
    font-size: 13px;
  }
  .podcast-section {
    margin-bottom: 56px;
  }
  .podcast-section p {
    font-size: 15px;
  }
  .podcast-hosts {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .podcast-host {
    padding: 24px;
  }
  .podcast-host h3 {
    font-size: 22px;
  }
  .podcast-topics-grid {
    grid-template-columns: 1fr;
  }
  .podcast-topic {
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  .podcast-platforms {
    flex-direction: column;
    align-items: stretch;
  }
  .podcast-platform {
    justify-content: center;
  }
}
