/* CV by Belentia — couche commune v3.1/v3.3 extraite des maquettes (A, tarifs, blog, article), 24/09/2026. */
  /* ---------------------------------------------------------------------
     v3.1 (v3 affinée) — CV by Belentia. Couleur de l'outil : teal #0D9488 (brand-600 de l'app, couleur officielle), survol #0F766E.
     Surcharges v3.1 : _assets/cv/v31.css (moins de teal, aucune ombre).
     Le hover est fixé à la main (#115E59) plutôt que calculé.
     ------------------------------------------------------------------ */
  :root {
    --accent: #0D9488;
    --accent-ink: #FFFFFF;
    --accent-hover: #0F766E;
    --accent-soft: #E7F4F3;
    --accent-ring: rgba(13, 148, 136, .35);
    --accent-6: #F1F9F8;                 /* teinte 6 % — bandeaux et carte mise en avant */
  }
  @supports (background: color-mix(in srgb, #000 6%, #fff)) {
    :root { --accent-6: color-mix(in srgb, var(--accent) 6%, #FFF); }
  }

  /* Titres : les tailles demandées par la direction artistique. */
  .h1--xl { font-size: 54px; line-height: 1.05; }

  /* v3.1 : l'eyebrow est gris, précédé d'un point teal (voir _assets/cv/v31.css). */

  /* v3.1 : secondaire blanc, bord gris, texte encre ; survol = bord teal (v31.css). */

  /* Barre collante, légèrement floutée. */
  .nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .86);
    -webkit-backdrop-filter: saturate(1.5) blur(10px);
            backdrop-filter: saturate(1.5) blur(10px);
  }

  .section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    max-width: none;
  }
  .section-head--row > div { max-width: 660px; }
  .section-head--row > div > * + * { margin-top: var(--space-2); }

  /* ================================ Hero ============================== */
  .hero { position: relative; padding-block: 72px 88px; overflow: hidden; }
  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    gap: 64px;
    align-items: center;
  }
  .hero__note { font-size: 15px; color: var(--muted); }

  /* Les trois mini-étapes : Contenu → Style → Aperçu */
  .steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-5);
    padding-top: var(--space-3);
    border-top: 1px solid var(--line);
  }
  .steps li { display: flex; align-items: center; gap: var(--space-1); }
  .steps__n {
    display: grid;
    place-items: center;
    width: 24px; height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
  }
  .steps__label { font-size: 15px; font-weight: 600; color: var(--ink); }
  .steps__arrow { color: var(--muted); display: flex; }

  /* ==================== Carte « un CV », partout réutilisée ============ */
  .cvcard {
    display: block;
    width: 220px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--canvas);
    color: inherit;
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
  }
  .cvcard:hover { text-decoration: none; transform: translateY(-3px); border-color: var(--line-strong); }
  .cvcard img {
    width: 100%;
    aspect-ratio: 210 / 297;
    object-fit: cover;
    object-position: top center;
    background: var(--soft);
  }
  .cvcard__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 12px;
    border-top: 1px solid var(--line);
  }
  .cvcard__name { font-family: var(--font-title); font-weight: 700; font-size: 13.5px; color: var(--ink); }
  .cvcard__foot .chip { font-size: 11px; padding: 3px 8px; white-space: nowrap; }
  .cvcard--sm { width: 196px; }

  /* Deux colonnes de CV qui montent en continu, à droite du hero. */
  .rails { display: flex; gap: 20px; justify-content: flex-end; }
  .rail { height: 560px; --marquee-gap: 20px; }
  .rail--b .marquee__track { margin-top: -96px; }   /* décalage permanent, raccord conservé */

  /* ============================== Galerie ============================= */
  .strip { --marquee-gap: 16px; }
  .strip + .strip { margin-top: var(--space-3); }

  .filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-6); }
  .filter {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--canvas);
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
  }
  .filter:hover { border-color: var(--line-strong); }
  .filter[aria-pressed="true"] { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }

  .models { display: grid; gap: var(--space-3); grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: var(--space-3); }
  .model {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--canvas);
    overflow: hidden;
    color: inherit;
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
  }
  .model[hidden] { display: none; }
  .model:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--line-strong); }
  .model__shot { position: relative; overflow: hidden; background: var(--soft); border-bottom: 1px solid var(--line); }
  .model__shot img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--t) var(--ease);
  }
  .model:hover .model__shot img, .model:focus-visible .model__shot img { transform: scale(1.03); }
  .model__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
  }
  .model__name { font-family: var(--font-title); font-weight: 700; font-size: 17px; color: var(--ink); min-width: 0; }
  .model__body .chip { flex: 0 0 auto; white-space: nowrap; }

  /* ========================= De la saisie au PDF ====================== */
  .editor {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
    gap: var(--space-6);
    align-items: start;
    padding: var(--space-4);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--canvas);
  }
  .ed-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: var(--space-2);
    margin-bottom: var(--space-3);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .ed-head__dots { display: flex; gap: 5px; }
  .ed-head__dots span { width: 8px; height: 8px; border-radius: 999px; background: #D6D9E0; }

  .ed-form { display: grid; gap: var(--space-3); }
  .field { display: grid; gap: 6px; }
  .field > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .field input {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--canvas);
    font-size: 16px;
    color: var(--ink);
    transition: border-color var(--t) var(--ease);
  }
  .field input:focus { outline: 3px solid var(--accent-ring); outline-offset: 0; border-color: var(--accent); }

  .ed-exp {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--canvas);
    transition: border-color var(--t) var(--ease);
  }
  .ed-exp[data-added="true"] { border-color: var(--accent); }
  .ed-exp__top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); }
  .ed-exp__title { font-family: var(--font-title); font-weight: 700; font-size: 15px; color: var(--ink); }
  .ed-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px dashed var(--line-strong);
    border-radius: 10px;
    background: var(--canvas);
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  }
  .ed-add:hover { border-color: var(--accent); background: var(--accent-soft); }

  .ed-styles { display: flex; flex-wrap: wrap; gap: 8px; }
  .ed-style {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--canvas);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
  }
  .ed-style[aria-pressed="true"] { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
  .ed-style__dot { width: 10px; height: 10px; border-radius: 999px; background: currentColor; opacity: .55; }

  /* L'aperçu A4 : vraie sortie du moteur PDF + un calque de texte. */
  .sheet {
    position: relative;
    container-type: inline-size;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--canvas);
  }
  .sheet img { width: 100%; aspect-ratio: 210 / 297; object-fit: cover; object-position: top center; }

  .sheet-ov {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
    left: var(--ov-l);
    top: var(--ov-t);
    width: var(--ov-w);
    height: var(--ov-h);
    pointer-events: none;
  }
  .sheet-ov__nom {
    font-family: var(--font-body);
    font-weight: 700;
    color: #5046E4;
    font-size: var(--ov-ns);
    line-height: 1.08;
    letter-spacing: var(--ov-nls);
    text-transform: var(--ov-ntt);
    white-space: nowrap;
  }
  .sheet-ov__poste {
    margin-top: var(--ov-pg);
    font-family: var(--font-body);
    font-weight: var(--ov-pw);
    color: var(--ov-pc);
    font-size: var(--ov-ps);
    letter-spacing: var(--ov-pls);
    text-transform: var(--ov-ptt);
    line-height: 1.2;
    white-space: nowrap;
  }
  /* Géométrie mesurée sur les deux rendus réels (840 × 1187 px). */
  .sheet-ov[data-style="classic-essential"] {
    --ov-l: 7.14%; --ov-t: 5.39%; --ov-w: 59.5%; --ov-h: 8.09%;
    --ov-ns: 4.9cqw; --ov-nls: .005em; --ov-ntt: uppercase;
    --ov-pg: 1.3cqw; --ov-ps: 2.15cqw; --ov-pw: 700; --ov-pc: #111624; --ov-pls: 0; --ov-ptt: none;
  }
  .sheet-ov[data-style="minimal-air"] {
    --ov-l: 39.29%; --ov-t: 7.41%; --ov-w: 54.7%; --ov-h: 7.08%;
    --ov-ns: 3.9cqw; --ov-nls: -.01em; --ov-ntt: none;
    --ov-pg: 1.7cqw; --ov-ps: 1.5cqw; --ov-pw: 600; --ov-pc: #4C5361; --ov-pls: .17em; --ov-ptt: uppercase;
  }

  .sheet-badge {
    position: absolute;
    right: 10px; bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
  }
  .sheet-badge svg { width: 14px; height: 14px; }
  .sheet-badge[data-state="done"] { background: var(--accent); border-color: var(--accent); color: #FFFFFF; }

  .ed-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
  }
  .ed-caption { margin-top: var(--space-2); font-size: 13px; color: var(--muted); }

  /* Capture réelle de l'éditeur, dans un cadre navigateur minimal. */
  .browser {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--canvas);
  }
  .browser__bar {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    height: 40px;
    padding-inline: var(--space-2);
    border-bottom: 1px solid var(--line);
    background: var(--soft);
  }
  .browser__dots { display: flex; gap: 6px; }
  .browser__dots span { width: 9px; height: 9px; border-radius: 999px; background: #D6D9E0; }
  .browser__url {
    flex: 1;
    max-width: 320px;
    height: 24px;
    display: flex;
    align-items: center;
    padding-inline: 10px;
    border-radius: 999px;
    background: var(--canvas);
    border: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
    overflow: hidden;
    white-space: nowrap;
  }
  .browser img { width: 100%; display: block; max-height: 560px; object-fit: cover; object-position: top center; }

  /* ========================= Ce que vous obtenez ====================== */
  .tiles { display: grid; gap: var(--space-3); grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tile {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--canvas);
  }
  .tile__icon {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
  }
  .tile__icon svg { width: 20px; height: 20px; }
  .tile p { color: var(--muted); font-size: 15.5px; }
  .tile h3 [data-count] { color: var(--accent); font-variant-numeric: tabular-nums; }

  /* ============================== Pour qui ============================ */
  .cases { display: grid; gap: var(--space-3); grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .case {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--canvas);
  }
  .case__shot {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: var(--soft);
  }
  .case__shot img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; }
  .case p { color: var(--muted); font-size: 15.5px; }
  .case__reco {
    margin-top: auto;
    padding-top: var(--space-2);
    border-top: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--text);
  }
  .case__reco b { color: var(--ink); }

  /* ============================= Comparatif =========================== */
  .compare { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare__col { padding: var(--space-4); border: 1px solid var(--line); border-radius: var(--radius); background: var(--canvas); }
  .compare__col--good { background: var(--accent-6); border-color: var(--accent); }
  .compare__title { display: flex; align-items: center; gap: 10px; font-family: var(--font-title); font-weight: 700; font-size: 18px; color: var(--ink); }
  .compare ul { display: grid; gap: 12px; margin-top: var(--space-3); font-size: 16px; line-height: 1.5; }
  .compare li { display: flex; gap: 10px; align-items: flex-start; }
  .compare li svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; }
  .compare__col--bad li svg { color: var(--muted); }
  .compare__col--good li svg { color: var(--accent); }

  /* ======================= Commencer gratuitement ===================== */
  .start { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: var(--space-8); align-items: center; }
  .start__aside { padding-left: var(--space-8); border-left: 1px solid var(--line); }

  /* ============================== Tarifs ============================== */
  .plans { display: grid; gap: var(--space-3); grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
  .plan {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .plan__flag { min-height: 26px; }
  .plan__flag .chip { font-size: 12px; }
  .plan__name { font-family: var(--font-title); font-weight: 700; font-size: 18px; color: var(--ink); }
  .plan__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
  .plan__amount { font-family: var(--font-title); font-weight: 700; font-size: 30px; line-height: 1.05; color: var(--ink); letter-spacing: -.02em; }
  .plan__unit { font-size: 14px; color: var(--muted); }
  .plan__list { display: grid; gap: 10px; margin-top: var(--space-1); font-size: 15px; line-height: 1.5; }
  .plan__list li { display: flex; gap: 10px; align-items: flex-start; }
  .plan__list svg { flex: 0 0 16px; width: 16px; height: 16px; margin-top: 4px; color: var(--accent); }
  .plan__foot { margin-top: auto; padding-top: var(--space-3); }
  .plan__foot .btn { width: 100%; }
  .plans__note { margin-top: var(--space-3); font-size: 14px; color: var(--muted); }

  /* La carte mise en avant : fond 6 %, bord 2 px, prix 44 px. */
  .plan--featured {
    background: var(--accent-6);
    border: 2px solid var(--accent);
    padding: calc(var(--space-3) - 1px);
  }
  .plan--featured .plan__amount { font-size: 44px; }

  /* ============================= Vos données ========================== */
  .facts { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact { display: flex; gap: var(--space-3); padding: var(--space-3); border: 1px solid var(--line); border-radius: var(--radius); background: var(--canvas); }
  .fact__icon {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    flex: 0 0 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
  }
  .fact__icon svg { width: 20px; height: 20px; }
  .fact p { margin-top: 4px; color: var(--muted); font-size: 15.5px; }

  /* ========================== Bandeau final =========================== */
  .cta-band {
    padding: var(--space-8) var(--space-4);
    border-radius: var(--radius);
    background: var(--accent-6);
    text-align: center;
  }
  .cta-band .actions { justify-content: center; margin-top: var(--space-4); }
  .cta-band p.lead { margin-top: var(--space-2); max-width: 54ch; margin-inline: auto; }
  .cta-band .hero__note { margin-top: var(--space-2); }

  /* =========================== Strip outils =========================== */
  .tools { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-3); }
  .tools a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--canvas);
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    transition: border-color var(--t) var(--ease), color var(--t) var(--ease);
  }
  .tools a:hover { text-decoration: none; border-color: var(--accent); color: var(--accent); }
  .tools a[aria-current="page"] { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
  .tools__dot { width: 8px; height: 8px; border-radius: 999px; background: currentColor; opacity: .55; }

  /* ---------- Emplacements d'images : bloc d'attente et liste ---------- */
  .slots { border: 1px solid var(--line); border-radius: var(--radius); background: var(--canvas); }
  .slots > summary {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    min-height: 56px;
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
  }
  .slots > summary::-webkit-details-marker { display: none; }
  .slots > summary::after {
    content: '';
    margin-left: auto;
    width: 9px; height: 9px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
  }
  .slots[open] > summary::after { transform: rotate(-135deg); }
  .slots__body { padding: 0 var(--space-3) var(--space-3); }
  .slot { padding-top: var(--space-3); border-top: 1px solid var(--line); }
  .slot + .slot { margin-top: var(--space-3); }
  .slot__id { font-family: var(--font-title); font-weight: 700; font-size: 15px; color: var(--ink); }
  .slot dl {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 4px var(--space-2);
    margin-top: var(--space-1);
    font-size: 14px;
    line-height: 1.5;
  }
  .slot dt { color: var(--muted); }
  .slot dd { color: var(--text); min-width: 0; overflow-wrap: anywhere; }
  .slot__prompt {
    margin-top: var(--space-2);
    padding: var(--space-2);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  /* ================================ FAQ ================================ */
  /* Même bord gauche que les autres sections : seule la liste est limitée. */
  #faq .faq { max-width: 900px; }

  /* ============== Scène épinglée de l'éditeur (≥ 1001 px de large) ======= */
  /* Les classes .scene / .scene__sticky ne sont posées qu'au-dessus de
     1 000 px (voir le script de page) : en dessous, l'éditeur reste empilé
     comme en v3 et le parcours tourne seul. Sous la barre collante (65 px). */
  .ed-scene.scene { --scene-top: 65px; }
  .ed-scene.scene .scene__sticky { height: calc(100vh - 65px); height: calc(100svh - 65px); }
  /* L'éditeur est centré dans l'écran épinglé : la tête de section se resserre. */
  #saisie:has(.ed-scene.scene) .section-head { margin-bottom: var(--space-2); }

  /* =========================== Points de rupture ====================== */
  @media (max-width: 1180px) {
    .hero__grid { gap: var(--space-6); grid-template-columns: minmax(0, 1fr) minmax(0, 460px); }
    .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 1000px) {
    .hero { padding-block: 48px var(--space-8); }
    .hero__grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
    .rails { justify-content: center; }       /* boucle 4 : centrés en tablette (641–1 000 px), comme l'éventail et l'ordinateur */
    .editor { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
    .editor .sheet { max-width: 360px; }
    .models { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cases { grid-template-columns: minmax(0, 1fr); }
    .start { grid-template-columns: minmax(0, 1fr); gap: var(--space-5); }
    .start__aside { padding-left: 0; padding-top: var(--space-5); border-left: 0; border-top: 1px solid var(--line); }
  }

  @media (max-width: 820px) {
    .compare { grid-template-columns: minmax(0, 1fr); }
    .facts { grid-template-columns: minmax(0, 1fr); }
  }

  @media (max-width: 720px) {
    .h1--xl { font-size: 34px; }
    /* En colonne, la ligne de bandeau réservée n'aligne plus rien. */
    .plan__flag--empty { display: none; }
    .section-head--row { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
    .plans { grid-template-columns: minmax(0, 1fr); }
    .tiles { grid-template-columns: minmax(0, 1fr); }
    .models { grid-template-columns: minmax(0, 1fr); }
    .steps { gap: 10px; }
    .steps__label { font-size: 14px; }
    .browser__url { max-width: none; }
    .cta-band { padding: var(--space-6) var(--space-3); }
    .slot dl { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .slot dt { margin-top: 10px; font-size: 13px; }
    .editor { padding: var(--space-3); }
    .editor .sheet { max-width: none; }
    .model__body { flex-direction: column; align-items: flex-start; gap: 6px; padding: var(--space-2); }
    .model__name { font-size: 16px; }
  }

  /* Un seul rail de CV sous 640 px : lisible plutôt que dense. */
  @media (max-width: 640px) {
    .rail--b { display: none; }
    .rail { height: 430px; }
    .cvcard--sm { width: 168px; }
  }

  /* Boucle 5 : guides pas encore écrits — mention non cliquable, carte immobile au survol */
  .link-arrow--soon { color: var(--muted); font-weight: 500; cursor: default; }
  .guide-card--soon:hover { transform: none; border-color: var(--line); box-shadow: none; }
  .guide-card--soon:hover .link-arrow { text-decoration: none; }

  /* Corrections après contrôle (24/09/2026) : « Deux autres lectures » (blog)
     et « Les étapes suivantes » (articles). Les deux cartes n'occupaient que
     2/3 de la grille à trois colonnes, calées à gauche sous un titre centré :
     deux colonnes égales sur tout le conteneur, cartes horizontales. */
  @media (min-width: 900px) {
    .next-guides .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; margin-inline: 0; }
    .next-guides .guide-card { flex-direction: row; }
    .next-guides .guide-card__cover {
      flex: 0 0 42%;
      width: 42%;
      height: auto;
      min-height: 230px;
      aspect-ratio: auto;
      align-self: stretch;
      border-bottom: 0;
      border-right: 1px solid var(--line);
    }
  }
