/* ══════════════════════════════════════════════════
   PODCAST RETRAITE — Compatible blue-theme
   Utilise les variables CSS de blue-theme.css
   Structure miroir de fiche-dimanche.css
══════════════════════════════════════════════════ */

/* ── BACK NAV ─────────────────────────────────── */
.pod-back-nav {
  padding: 20px 0 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.pod-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); text-decoration: none;
  font-weight: 500; font-size: 14px;
  transition: color .3s, gap .3s;
}
.pod-back-link:hover { color: var(--gold); gap: 12px; }

/* ── HERO ─────────────────────────────────────── */
.pod-hero {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 40px;
}
.pod-hero-left {}
.pod-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--gold); margin-bottom: 25px;
}
.pod-hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300; line-height: 1.2;
  color: var(--ink); margin-bottom: 15px;
  transition: color .45s;
}
.pod-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300; font-style: italic;
  color: var(--ink-soft); margin-bottom: 24px;
  transition: color .45s;
}
.pod-hero-description {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-soft); transition: color .45s;
}
.pod-hero-description p { margin-bottom: 12px; }
.pod-hero-description strong { color: var(--gold); }
.pod-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2);
  padding: 10px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft); margin-top: 16px;
  transition: color .45s, border-color .45s;
}
.pod-hero-tag i { color: var(--gold); }
.pod-hero-promise {
  background: rgba(201,168,76,.08);
  border-left: 4px solid var(--gold);
  padding: 16px 20px; border-radius: 0 12px 12px 0;
  margin-top: 22px;
}
.pod-hero-promise p {
  margin: 0; font-weight: 500; font-size: 14px; color: var(--ink);
  transition: color .45s;
}
.pod-hero-promise i { color: var(--gold); margin-right: 8px; }

/* Hero right panel — lecteur Spotify */
.pod-hero-right {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: background .45s, border-color .45s;
}
.pod-hero-right-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--ink-muted); margin-bottom: 16px;
  transition: color .45s;
}
.pod-audio-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--gold); margin-bottom: 14px;
}
.pod-audio-label i { color: var(--gold); }
.pod-audio-wrapper iframe {
  display: block; width: 100%;
  border-radius: 12px; border: none;
}

/* ── MAIN CONTAINER ───────────────────────────── */
.pod-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 60px;
}
.pod-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 32px); font-weight: 300;
  color: var(--ink); margin-bottom: 40px; text-align: center;
  transition: color .45s;
}

/* ── TIMELINE ─────────────────────────────────── */
.pod-timeline {
  position: relative; padding-left: 40px;
}
.pod-timeline::before {
  content: ''; position: absolute;
  left: 12px; top: 30px; bottom: 30px;
  width: 3px; background: var(--border);
  border-radius: 3px; transition: background .45s;
}
.pod-timeline-item {
  position: relative; margin-bottom: 16px;
}
.pod-timeline-item::before {
  content: ''; position: absolute;
  left: -40px; top: 28px;
  width: 24px; height: 24px;
  background: var(--surface); border: 3px solid var(--border);
  border-radius: 50%; z-index: 2;
  transition: all .3s;
}
.pod-timeline-item.active::before {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(201,168,76,.2);
}

/* ── ACCORDION CARDS ──────────────────────────── */
.pod-accordion-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all .3s;
}
.pod-accordion-card:hover { border-color: rgba(201,168,76,.3); }
.pod-timeline-item.active .pod-accordion-card { border-color: var(--gold); }

.pod-accordion-header {
  padding: 22px 28px; cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  color: var(--ink); transition: background .3s;
}
.pod-accordion-header:hover { background: var(--bg-2); }

.pod-accordion-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pod-accordion-icon i { font-size: 20px; color: var(--bg); }

.pod-accordion-header-content { flex: 1; }
.pod-accordion-header-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  margin-bottom: 6px; color: var(--ink); line-height: 1.4;
  transition: color .45s;
}
.pod-accordion-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink-muted);
  transition: color .45s;
}
.pod-accordion-meta span {
  display: flex; align-items: center; gap: 6px;
}
.pod-accordion-meta .badge {
  background: rgba(201,168,76,.1); color: var(--gold);
  padding: 4px 12px; border-radius: 100px;
  font-weight: 500; font-size: 12px;
}

.pod-accordion-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s;
}
.pod-accordion-toggle i {
  font-size: 12px; color: var(--ink-muted);
  transition: transform .3s, color .3s;
}
.pod-timeline-item.active .pod-accordion-toggle {
  background: var(--gold); border-color: var(--gold);
}
.pod-timeline-item.active .pod-accordion-toggle i {
  color: var(--bg); transform: rotate(180deg);
}

.pod-accordion-content {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.pod-timeline-item.active .pod-accordion-content {
  max-height: 15000px;
}

.pod-accordion-body { padding: 0 28px 28px; }
.pod-accordion-divider {
  height: 1px; background: var(--border);
  margin-bottom: 24px; transition: background .45s;
}

/* ── ARTICLE CONTENT ──────────────────────────── */
.pod-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  margin: 28px 0 12px; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
}
.pod-content h4:first-child { margin-top: 0; }
.pod-content h4 i { color: var(--gold); }

.pod-content h5 {
  font-size: 15px; font-weight: 600;
  margin: 18px 0 8px; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  transition: color .45s;
}
.pod-content h5 i { color: var(--gold); font-size: 14px; }

.pod-content p {
  font-size: 15px; line-height: 1.8;
  margin-bottom: 12px; color: var(--ink-soft);
  transition: color .45s;
}
.pod-content strong { color: var(--ink); transition: color .45s; }
.pod-content a { color: var(--gold); text-decoration: none; }
.pod-content a:hover { text-decoration: underline; }

.pod-content ul {
  margin: 14px 0; padding-left: 0; list-style: none;
}
.pod-content ul li {
  padding: 8px 0 8px 28px; position: relative;
  line-height: 1.7; color: var(--ink-soft);
  font-size: 15px; transition: color .45s;
}
.pod-content ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-weight: bold;
}
.pod-content ul li strong { color: var(--ink); }

.pod-content ol {
  margin: 14px 0; padding-left: 28px;
}
.pod-content ol li {
  padding: 6px 0; line-height: 1.7;
  color: var(--ink-soft); font-size: 15px;
  transition: color .45s;
}

/* ── INFO BOXES ───────────────────────────────── */
.pod-info-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin: 22px 0;
  border-left: 4px solid var(--gold);
  transition: background .45s, border-color .45s;
}
.pod-info-box.warning { border-left-color: #f39c12; }
.pod-info-box.important { border-left-color: #e74c3c; }
.pod-info-box.success { border-left-color: #27ae60; }
.pod-info-box.neutral { border-left-color: var(--ink-muted); }
.pod-info-box.example { border-left-color: #9b59b6; }

.pod-info-box-title {
  font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 15px;
  transition: color .45s;
}
.pod-info-box-title i { color: var(--gold); }
.pod-info-box.warning .pod-info-box-title i { color: #f39c12; }
.pod-info-box.important .pod-info-box-title i { color: #e74c3c; }
.pod-info-box.success .pod-info-box-title i { color: #27ae60; }
.pod-info-box.example .pod-info-box-title i { color: #9b59b6; }

.pod-info-box p {
  margin: 0; font-size: 14px; color: var(--ink-soft);
  line-height: 1.7; transition: color .45s;
}
.pod-info-box p strong { color: var(--ink); }

/* ── PRINCIPE INLINE ──────────────────────────── */
.pod-principe {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px; padding: 20px 24px;
  margin: 28px 0 0; text-align: center;
}
.pod-principe p {
  margin: 0; font-size: 15px; color: var(--ink);
  transition: color .45s;
}
.pod-principe strong { color: var(--gold); font-size: 16px; }
.pod-principe a { color: var(--gold); }

/* ── BLOC NAV (prev/next) ─────────────────────── */
.pod-bloc-nav {
  display: flex; justify-content: space-between;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 16px; flex-wrap: wrap;
  transition: border-color .45s;
}
.pod-bloc-nav-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-soft); text-decoration: none;
  padding: 16px 22px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  transition: all .3s;
}
.pod-bloc-nav-item:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.pod-bloc-nav-item.next { margin-left: auto; }
.pod-bloc-nav-item span {
  font-size: 12px; color: var(--ink-muted);
  transition: color .45s;
}
.pod-bloc-nav-item strong {
  display: block; font-size: 14px; color: var(--ink);
  transition: color .45s;
}

/* ── CTA SECTION ──────────────────────────────── */
.pod-cta {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px 40px;
  text-align: center; margin-top: 48px;
  transition: background .45s, border-color .45s;
}
.pod-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 300;
  color: var(--ink); margin-bottom: 12px;
  transition: color .45s;
}
.pod-cta p {
  font-size: 15px; font-weight: 300; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 24px;
  transition: color .45s;
}
.pod-cta-buttons {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.pod-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 2px;
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all .25s;
}
.pod-cta-btn.primary {
  background: var(--gold); color: var(--bg);
  border: 1px solid var(--gold);
}
.pod-cta-btn.primary:hover { opacity: .9; }
.pod-cta-btn.secondary {
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--border);
}
.pod-cta-btn.secondary:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .pod-hero { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .pod-hero-left h1 { font-size: clamp(24px, 6vw, 32px); }
  .pod-hero-right { padding: 22px; }
  .pod-timeline { padding-left: 30px; }
  .pod-timeline::before { left: 8px; }
  .pod-timeline-item::before { left: -30px; width: 20px; height: 20px; }
  .pod-accordion-header { padding: 18px 20px; flex-wrap: wrap; }
  .pod-accordion-body { padding: 0 20px 24px; }
  .pod-accordion-icon { width: 44px; height: 44px; }
  .pod-cta { padding: 32px 20px; }
  .pod-bloc-nav { flex-direction: column; }
  .pod-bloc-nav-item.next { margin-left: 0; }
}
</content>
</invoke>