/* ============================================
   Page Préparation entrée en centre de formation — preparation.css
   ============================================ */

.page-hero {
  background: linear-gradient(180deg, var(--warm) 0%, var(--bg-page) 100%);
  padding: 60px 0 40px;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero-intro {
  color: var(--text-body);
  line-height: 1.7;
}

.page-hero-intro p {
  margin-bottom: 1rem;
}

.page-hero-intro p:last-child {
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--primary-light);
}

.breadcrumb-sep {
  margin: 0 0.5rem;
}

/* --- Timeline --- */
.timeline-section .section-title {
  margin-bottom: 1.5rem;
}

.timeline-intro {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.timeline-section {
  background: var(--warm-light);
}

.timeline {
  max-width: 720px;
  margin: 0;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline-content {
  padding-top: 0.25rem;
}

.timeline-content h3 {
  margin-bottom: 0.25rem;
}

.timeline-content p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Encadré "Je ne rédige pas" (mise en évidence clignotante) --- */
.section-ne-redige-pas {
  background: linear-gradient(180deg, rgba(232, 213, 163, 0.35) 0%, var(--warm-light) 100%);
}

.encadre-ne-redige-pas {
  position: relative;
  background: var(--bg-page);
  border: 3px solid var(--primary);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  animation: encadre-pulse 2s infinite;
  box-shadow: 0 4px 20px rgba(101, 84, 52, 0.15);
}

@keyframes encadre-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(27, 54, 93, 0.35), 0 4px 20px rgba(27, 54, 93, 0.12);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(27, 54, 93, 0), 0 4px 20px rgba(27, 54, 93, 0.12);
  }
}

.encadre-ne-redige-pas p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.encadre-ne-redige-pas strong {
  color: var(--primary);
}

/* --- Encadré durée --- */
.encadre-duree {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  text-align: center;
}

.encadre-duree p,
.encadre-duree-text {
  margin: 0;
  color: var(--text-dark);
}

.cta-section {
  text-align: center;
}
