/* =============================================================
   Fonctionnement — styles spécifiques.
   ----------------------------------------------------------------
   Page structurée en 3 sections via .page-frame (cf. site.css §6.7) :
     - #intervention      : critères et factbox
     - #selection-suivi   : philosophie + timeline en 5 étapes
     - #conseil           : conseil d'administration
   ============================================================= */

/* =========================================================
   SECTIONS — empilement et filets de séparation
   ========================================================= */
.intervention {
  padding: clamp(24px, 3vw, 48px) 0 clamp(56px, 7vw, 96px);
}
.selection-suivi,
.board {
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--rule);
}

/* =========================================================
   INTERVENTION — texte éditorial + factbox
   ========================================================= */
.intervention .body {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 60ch;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.intervention .body p {
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.7;
  color: var(--stone-700);
  text-wrap: pretty;
}
.intervention .body em {
  font-style: italic; color: var(--ocher); font-weight: 500;
}
/* La factbox des critères s'aligne en bas de section, max-width raisonnable */
.intervention .factbox { max-width: 520px; }

/* =========================================================
   SELECTION-SUIVI — philosophie + timeline
   ----------------------------------------------------------
   La sous-section .philosophy contient 3 paragraphes éditoriaux
   présentés en bloc serif italique sobre, suivis de la timeline.
   ========================================================= */
.selection-suivi .philosophy {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 60ch;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.selection-suivi .philosophy p {
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.7;
  color: var(--stone-700);
  text-wrap: pretty;
}
.selection-suivi .philosophy em {
  font-style: italic; color: var(--ocher); font-weight: 500;
}

/* =========================================================
   TIMELINE — liste verticale d'étapes (5 cercles ocre reliés)
   Markup :
     <ol class="timeline">
       <li class="timeline-step">
         <div class="timeline-num">01</div>
         <div class="timeline-content">
           <h3>…</h3>
           <p>…</p>
         </div>
       </li>
       …
     </ol>
   ========================================================= */
.timeline {
  position: relative;
  list-style: none;
  padding: 0; margin: 0;
}
.timeline::before {
  content: ""; position: absolute;
  left: 21.5px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: color-mix(in srgb, var(--ocher) 50%, transparent);
}
.timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(36px, 5vw, 56px);
  align-items: start;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  width: 44px; height: 44px;
  background: var(--paper);
  border: 1px solid var(--ocher);
  color: var(--ocher-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  position: relative; z-index: 2;
}
.timeline-content { padding-top: 6px; }
.timeline-content h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.14; color: var(--marine);
  letter-spacing: -0.012em;
  margin-bottom: 14px;
  max-width: 22ch;
}
.timeline-content h3 em {
  font-style: italic; color: var(--ocher); font-weight: 400;
}
.timeline-content p {
  font-size: clamp(16px, 1.5vw, 18px); line-height: 1.65;
  color: var(--stone-700);
  max-width: 60ch;
  text-wrap: pretty;
}
.timeline-content p em {
  font-style: italic; color: var(--ocher); font-weight: 500;
}

/* =========================================================
   BOARD — paragraphes éditoriaux du conseil d'administration
   ========================================================= */
.board .body {
  display: flex; flex-direction: column; gap: 22px;
  max-width: 60ch;
}
.board .body p {
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.7;
  color: var(--stone-700);
  text-wrap: pretty;
}
.board .body em {
  font-style: italic; color: var(--ocher); font-weight: 500;
}
