/* ==========================================================================
   Item 193 · Vascularites systémiques
   Pattern dérivé de item-194.css (médecine interne, palette --spe-interne)
   Spécifique : 5 familles de calibre vasculaire (gros / moyen / petit ANCA /
   petit CIC / variable), profils en cartes uniformes, schémas SVG natifs.
   ========================================================================== */

:root {
  /* Tokens locaux nécessaires (alignés sur les autres items) */
  --paper:    var(--bg-card);
  --paper-2:  #fffcf5;
  --rule:     #d7ccb4;
  --rule-2:   var(--accent-dash);
  --bg-2:     #ece5d6;
  --bg-3:     #e4dcc8;
  --ink-2:    #524a3e;
  --ink-3:    #8a8270;
  --ink-4:    #b2a98f;
  --danger:   #a52a1a;
  --warn:     #8a5a12;
  --info:     #2f5e6b;
  --ok:       #4e6a2f;

  /* 5 familles de calibre vasculaire (palette dérivée de --spe-*) */
  --vasc-gros:       var(--spe-interne);     /* gros calibre · brun-tabac (Horton, Takayasu) */
  --vasc-moyen:      var(--spe-orl);         /* moyen calibre · ocre (PAN, Kawasaki) */
  --vasc-petit-anca: var(--danger);          /* petit ANCA+ · rouge (GPA, GEPA, MPA) */
  --vasc-petit-cic:  var(--info);            /* petit CIC · bleu canard (cryo, Henoch, MacDuffie, Goodpasture) */
  --vasc-variable:   var(--warn);            /* calibre variable · ocre foncé (Behçet, Cogan, polychondrite) */

  /* Backgrounds doux pour les rangées du tableau Chapel Hill */
  --vasc-gros-bg:       #ede1ce;
  --vasc-moyen-bg:      #f1e0c4;
  --vasc-petit-anca-bg: #f3dccf;
  --vasc-petit-cic-bg:  #cfdde0;
  --vasc-variable-bg:   #ece2c8;
}

/* Élargissement de la zone de contenu */
.content { max-width: 1400px; }

@keyframes vasc-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.content-panel.active { animation: vasc-fadeIn .35s ease-out; }

/* Utilitaires textuels */
.mono   { font-family: var(--font-mono); font-feature-settings: "ss01"; }
.muted  { color: var(--ink-3); }
.danger { color: var(--danger); }
.warn   { color: var(--warn); }
.ok     { color: var(--ok); }
hr.soft { border: none; border-top: 1px dashed var(--rule); margin: 20px 0; }

/* =========================================================
   Sous-titres de section
   ========================================================= */
.sec-title       { display: flex; align-items: baseline; gap: 16px; margin: 36px 0 18px; flex-wrap: wrap; }
.sec-num         { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--ink-3); text-transform: uppercase; }
.sec-title h2    { font-family: var(--font-serif); font-weight: 500; font-size: 30px; letter-spacing: -.01em; margin: 0; line-height: 1; }
.sec-title .rule { flex: 1; height: 1px; background: var(--rule); margin-bottom: 8px; min-width: 40px; }
.sec-title .hint { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: .06em; }

/* Rang tags */
.rang-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
  border: 1px solid var(--rule-2); color: var(--ink-2); background: var(--paper);
  vertical-align: middle;
}
.rang-tag.rang-a { color: var(--ok);    border-color: color-mix(in oklab, var(--ok) 40%, var(--rule-2)); }
.rang-tag.rang-b { color: var(--ink-3); border-color: var(--rule-2); }

/* =========================================================
   Familles (utilitaires pour les composants)
   ========================================================= */
.fam-gros        { --fam: var(--vasc-gros);       --fam-bg: var(--vasc-gros-bg); }
.fam-moyen       { --fam: var(--vasc-moyen);      --fam-bg: var(--vasc-moyen-bg); }
.fam-petit-anca  { --fam: var(--vasc-petit-anca); --fam-bg: var(--vasc-petit-anca-bg); }
.fam-petit-cic   { --fam: var(--vasc-petit-cic);  --fam-bg: var(--vasc-petit-cic-bg); }
.fam-variable    { --fam: var(--vasc-variable);   --fam-bg: var(--vasc-variable-bg); }
.fam-def         { --fam: var(--ink);             --fam-bg: var(--bg-2); }

/* =========================================================
   Pipelines / lanes / steps (réutilisés)
   ========================================================= */
.pipeline                { background: var(--paper); border: 1px solid var(--rule); border-radius: 4px; padding: 22px; }
.pipeline .lane,
.lane                    { background: var(--fam-bg, var(--bg-2)); border: 1px solid color-mix(in oklab, var(--fam, var(--ink)) 30%, var(--rule)); border-radius: 3px; padding: 14px; }
.lane-h                  { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lane-h .dot             { width: 10px; height: 10px; border-radius: 50%; background: var(--fam, var(--ink)); }
.lane-h h3               { font-family: var(--font-serif); font-weight: 500; font-size: 18px; margin: 0; letter-spacing: -.005em; }
.lane-h .kind            { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; }

.flow-row                { display: grid; gap: 14px; }
.flow-row.r-2            { grid-template-columns: repeat(2, 1fr); }
.flow-row.r-3            { grid-template-columns: repeat(3, 1fr); }
.flow-row.r-4            { grid-template-columns: repeat(4, 1fr); }
.flow-row.r-5            { grid-template-columns: repeat(5, 1fr); }

.step                    { background: #fff; border: 1px solid var(--rule); border-radius: 3px; padding: 14px 16px; position: relative; }
.step .sn                { position: absolute; top: -10px; left: 14px; background: var(--paper); padding: 0 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; }
.step h5                 { font-family: var(--font-serif); font-weight: 500; font-size: 16px; margin: 2px 0 6px; }
.step p                  { margin: 0; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.step ul                 { margin: 4px 0 0; padding-left: 18px; font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }
.step ul li              { margin: 3px 0; }
.step ul li b            { color: var(--ink); font-weight: 600; }

/* =========================================================
   Tables (matrix)
   ========================================================= */
table.matrix              { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--rule); }
table.matrix th,
table.matrix td           { padding: 11px 13px; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; font-size: 12.5px; }
table.matrix thead th     { background: var(--bg-2); font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; border-bottom: 1px solid var(--rule-2); }
table.matrix tbody th     { font-family: var(--font-serif); font-weight: 500; font-size: 14.5px; color: var(--ink); border-right: 1px solid var(--rule); }
table.matrix tbody tr:last-child th,
table.matrix tbody tr:last-child td { border-bottom: none; }
table.matrix tbody tr:hover td      { background: #fff; }
table.matrix ul           { margin: 0; padding-left: 18px; line-height: 1.55; }
table.matrix ul li        { margin: 2px 0; }
table.matrix ul li b      { color: var(--ink); font-weight: 600; }

/* =========================================================
   Etiogrid (cartes en grille)
   ========================================================= */
.etiogrid           { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.etiogrid.r-2       { grid-template-columns: repeat(2, 1fr); }
.etiogrid.r-4       { grid-template-columns: repeat(4, 1fr); }
.etio               { background: var(--paper); border: 1px solid var(--rule); border-radius: 3px; padding: 14px 16px; }
.etio.fam           { border-left: 3px solid var(--fam, var(--ink)); }
.etio h5            { font-family: var(--font-serif); font-weight: 500; font-size: 16px; margin: 0 0 6px; color: var(--fam, var(--ink)); }
.etio ul            { margin: 4px 0 0; padding-left: 18px; font-size: 12.5px; color: var(--ink-2); line-height: 1.55; }
.etio ul li         { margin: 2px 0; }
.etio ul li b       { color: var(--ink); font-weight: 600; }
.etio p             { margin: 4px 0 0; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }

/* Hstack / hbox */
.hstack             { display: flex; flex-direction: column; gap: 10px; }
.hbox               { background: var(--paper); border: 1px solid var(--rule); border-radius: 3px; padding: 12px 16px; display: grid; grid-template-columns: 64px 1fr; gap: 4px 16px; align-items: baseline; }
.hbox > .n          { grid-column: 1; grid-row: 1 / -1; align-self: start; padding-top: 2px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); font-weight: 500; word-break: break-word; line-height: 1.3; }
.hbox > h5          { grid-column: 2; font-family: var(--font-serif); font-weight: 500; font-size: 15px; margin: 0 0 4px; }
.hbox > p,
.hbox > ul          { grid-column: 2; margin: 0; font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }
.hbox > ul          { padding-left: 18px; }
.hbox > ul li       { margin: 6px 0; }

/* Pièges (réutilisé) */
.traps              { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.trap               { background: var(--paper); border: 1px solid var(--rule); border-left: 3px solid var(--danger); border-radius: 3px; padding: 14px 16px; }
.trap .tn           { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--danger); text-transform: uppercase; margin-bottom: 4px; }
.trap h5            { font-family: var(--font-serif); font-weight: 500; font-size: 15.5px; margin: 0 0 4px; }
.trap p             { margin: 0; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.trap p b           { color: var(--ink); }

/* =========================================================
   Vignette d'amorçage clinique
   ========================================================= */
.vignette {
  background: var(--paper); border: 1px solid var(--rule);
  border-left: 4px solid var(--vasc-petit-anca);
  border-radius: 4px; padding: 20px 24px; margin-bottom: 24px;
}
.vignette .vg-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--vasc-petit-anca); margin-bottom: 8px;
}
.vignette p {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.55; color: var(--ink); margin: 0;
}
.vignette p b { font-weight: 600; }
.vignette .vg-trap {
  margin-top: 14px; padding: 10px 14px; background: var(--bg-2); border-radius: 3px;
  font-family: var(--font-sans); font-size: 12.5px; font-style: italic; color: var(--ink-2);
}

/* Keypoints (numérotés) */
.keypoints       { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.kp              { display: grid; grid-template-columns: 32px 1fr; gap: 12px; background: var(--paper); border: 1px solid var(--rule); border-radius: 3px; padding: 12px 16px; }
.kp .kp-n        { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--vasc-petit-anca); line-height: 1; }
.kp p            { margin: 0; font-size: 13px; line-height: 1.55; color: var(--ink-2); }
.kp p b          { color: var(--ink); font-weight: 600; }

/* Définitions (grille 2 colonnes, accent-top par famille) */
.def-grid        { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.def-card        { background: var(--paper); border: 1px solid var(--rule); border-top: 4px solid var(--fam, var(--ink)); border-radius: 4px; padding: 16px 18px; }
.def-card .def-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.def-card h3     { font-family: var(--font-serif); font-weight: 500; font-size: 22px; letter-spacing: -.01em; margin: 0; color: var(--fam, var(--ink)); }
.def-card .def-sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.def-card p      { font-size: 13px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.def-card p b    { color: var(--ink); font-weight: 600; }

/* =========================================================
   Tableau Chapel Hill (pivot pédagogique onglet 06)
   ========================================================= */
.chapel-table {
  width: 100%; border-collapse: collapse;
  background: var(--paper); border: 1px solid var(--rule);
  font-size: 13px;
}
.chapel-table thead th {
  background: var(--bg-2); padding: 12px 14px; text-align: left;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500; border-bottom: 1px solid var(--rule-2);
}
.chapel-table tbody tr  { background: var(--fam-bg, transparent); }
.chapel-table tbody td  { padding: 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.chapel-table tbody tr:last-child td { border-bottom: none; }
.chapel-table .ch-cal   { font-family: var(--font-serif); font-weight: 500; font-size: 16px; color: var(--fam, var(--ink)); border-left: 4px solid var(--fam, var(--ink)); padding-left: 14px; }
.chapel-table .ch-cal .ch-territory { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; font-weight: 400; }
.chapel-table .ch-meca  { color: var(--ink-2); font-style: italic; }
.chapel-table .ch-entites ul { margin: 0; padding-left: 18px; line-height: 1.55; }
.chapel-table .ch-entites ul li { margin: 3px 0; }

/* =========================================================
   Schéma Chapel Hill — arbre vasculaire SVG natif
   ========================================================= */
.chapel-schema {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: 22px; display: grid; grid-template-columns: 1fr 220px; gap: 26px;
}
.chapel-schema svg { width: 100%; height: auto; max-height: 460px; }
.chapel-schema .legend { font-family: var(--font-sans); font-size: 12.5px; color: var(--ink-2); }
.chapel-schema .legend h4 { font-family: var(--font-serif); font-weight: 500; font-size: 16px; margin: 0 0 10px; }
.chapel-schema .legend ul { margin: 0; padding: 0; list-style: none; }
.chapel-schema .legend ul li { display: flex; align-items: center; gap: 8px; padding: 5px 0; }
.chapel-schema .legend .sw { display: inline-block; width: 14px; height: 14px; border-radius: 2px; }

/* =========================================================
   Tableau organes cibles (onglet 04)
   ========================================================= */
.organes-table {
  width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--rule);
  font-size: 13px;
}
.organes-table thead th {
  background: var(--bg-2); padding: 12px 14px; text-align: left;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500; border-bottom: 1px solid var(--rule-2);
}
.organes-table tbody td { padding: 12px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.organes-table .og-name { font-family: var(--font-serif); font-weight: 500; font-size: 15px; color: var(--ink); }
.organes-table ul { margin: 0; padding-left: 18px; line-height: 1.5; }
.organes-table ul li { margin: 2px 0; }
.organes-table tbody tr:last-child td { border-bottom: none; }

/* =========================================================
   Profils (cartes à gabarit identique pour GPA/GEPA/MPA/PAN/Behçet/...)
   ========================================================= */
.profil-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-top: 4px solid var(--fam, var(--ink));
  border-radius: 4px; padding: 18px 20px; margin: 14px 0;
}
.profil-card .pf-head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px;
}
.profil-card .pf-name {
  font-family: var(--font-serif); font-weight: 500; font-size: 22px; letter-spacing: -.005em;
  color: var(--fam, var(--ink)); margin: 0;
}
.profil-card .pf-eponyme {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-3);
}
.profil-card .pf-grid {
  display: grid; grid-template-columns: 140px 1fr; gap: 8px 18px;
  margin: 8px 0 0;
}
.profil-card .pf-grid .pf-k {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); padding-top: 4px;
  word-break: break-word; overflow-wrap: anywhere; line-height: 1.35;
  align-self: start;
}
.profil-card .pf-grid .pf-v {
  font-size: 13px; color: var(--ink-2); line-height: 1.55; padding: 4px 0;
  border-bottom: 1px dashed var(--rule);
}
.profil-card .pf-grid .pf-v:last-of-type { border-bottom: none; }
.profil-card .pf-grid .pf-v b { color: var(--ink); font-weight: 600; }
.profil-card .pf-piege {
  margin-top: 12px; padding: 10px 14px; border-radius: 3px;
  background: #f3dccf; border: 1px solid var(--danger);
  font-family: var(--font-sans); font-size: 12.5px; color: var(--ink); line-height: 1.5;
}
.profil-card .pf-piege::before {
  content: 'Piège QCM'; display: block;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--danger);
  text-transform: uppercase; margin-bottom: 4px;
}

/* =========================================================
   Alertes rouges (encadrés danger)
   ========================================================= */
.alert-danger {
  background: #f3dccf; border: 1px solid var(--danger); border-radius: 4px;
  padding: 16px 20px; margin: 14px 0;
  display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start;
}
.alert-danger .ad-icon {
  font-family: var(--font-serif); font-size: 26px; color: var(--danger); line-height: 1;
  font-style: italic; font-weight: 500;
}
.alert-danger h4 {
  font-family: var(--font-serif); font-weight: 500; font-size: 18px; color: var(--danger); margin: 0 0 6px;
}
.alert-danger p,
.alert-danger ul { margin: 0; font-size: 13px; color: var(--ink); line-height: 1.55; }
.alert-danger ul { padding-left: 18px; margin-top: 4px; }
.alert-danger ul li { margin: 2px 0; }
.alert-danger b { font-weight: 600; }

/* =========================================================
   Schéma cibles antigéniques ANCA (SVG)
   ========================================================= */
.anca-schema {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center;
  margin: 14px 0;
}
.anca-schema svg { width: 100%; height: auto; max-height: 280px; }
.anca-schema .as-legend h4 { font-family: var(--font-serif); font-weight: 500; font-size: 16px; margin: 0 0 8px; }
.anca-schema .as-legend p { margin: 4px 0; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.anca-schema .as-legend p b { color: var(--ink); }

/* =========================================================
   Schéma cryoglobulines (SVG : tubes 37°C / <37°C)
   ========================================================= */
.cryo-schema {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: 20px; margin: 14px 0;
}
.cryo-schema svg { width: 100%; height: auto; max-height: 280px; }
.cryo-schema .cs-caption { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: .04em; margin-top: 8px; text-align: center; }

/* =========================================================
   Triade purpura rhumatoïde (cercles intersectants SVG)
   ========================================================= */
.triade-schema {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: 20px; display: grid; grid-template-columns: 380px 1fr; gap: 22px; align-items: center;
  margin: 14px 0;
}
.triade-schema svg { width: 100%; height: auto; }
.triade-schema .ts-info h4 { font-family: var(--font-serif); font-weight: 500; font-size: 18px; margin: 0 0 10px; color: var(--vasc-petit-cic); }
.triade-schema .ts-info ul { margin: 0; padding-left: 18px; font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.triade-schema .ts-info ul li { margin: 4px 0; }
.triade-schema .ts-info ul li b { color: var(--ink); }
.triade-schema .ts-foot {
  margin-top: 12px; padding: 8px 12px; background: var(--bg-2); border-radius: 3px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink);
}

/* =========================================================
   Schéma purpura vasculaire (silhouette de jambe)
   ========================================================= */
.purpura-schema {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: 20px; display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: center;
  margin: 14px 0;
}
.purpura-schema svg { width: 100%; height: auto; max-height: 360px; }
.purpura-schema .ps-info h4 { font-family: var(--font-serif); font-weight: 500; font-size: 18px; margin: 0 0 10px; color: var(--vasc-petit-anca); }
.purpura-schema .ps-info p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.55; }

/* =========================================================
   Aphtose Behçet (deux taches rondes — schéma simple)
   ========================================================= */
.aphtose-schema {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center;
  margin: 14px 0;
}
.aphtose-schema svg { width: 100%; height: auto; max-height: 240px; }
.aphtose-schema .af-info h4 { font-family: var(--font-serif); font-weight: 500; font-size: 18px; margin: 0 0 8px; color: var(--vasc-variable); }
.aphtose-schema .af-info ul { margin: 0; padding-left: 18px; font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }

/* =========================================================
   Tableau ANCA (c/p × PR3/MPO × GPA/GEPA/MPA)
   ========================================================= */
.anca-cross {
  width: 100%; border-collapse: collapse;
  background: var(--paper); border: 1px solid var(--rule);
  font-size: 13px; margin: 14px 0;
}
.anca-cross thead th {
  background: var(--bg-2); padding: 12px 14px; text-align: left;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500; border-bottom: 1px solid var(--rule-2);
}
.anca-cross tbody td { padding: 12px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.anca-cross tbody tr:last-child td { border-bottom: none; }
.anca-cross .ax-ifi { font-family: var(--font-serif); font-weight: 500; font-size: 16px; color: var(--vasc-petit-anca); }

/* =========================================================
   Tableau cryoglobulines (3 types)
   ========================================================= */
.cryo-table {
  width: 100%; border-collapse: collapse;
  background: var(--paper); border: 1px solid var(--rule);
  font-size: 13px; margin: 14px 0;
}
.cryo-table thead th {
  background: var(--bg-2); padding: 12px 14px; text-align: left;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500; border-bottom: 1px solid var(--rule-2);
}
.cryo-table tbody td { padding: 12px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.cryo-table tbody tr:last-child td { border-bottom: none; }
.cryo-table .ct-type { font-family: var(--font-serif); font-weight: 500; font-size: 16px; color: var(--vasc-petit-cic); border-left: 4px solid var(--vasc-petit-cic); padding-left: 14px; }

/* =========================================================
   Tableau FFS (5 critères)
   ========================================================= */
.ffs-table {
  width: 100%; border-collapse: collapse;
  background: var(--paper); border: 1px solid var(--rule);
  font-size: 13px; margin: 14px 0;
}
.ffs-table thead th {
  background: var(--bg-2); padding: 12px 14px; text-align: left;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500; border-bottom: 1px solid var(--rule-2);
}
.ffs-table tbody td { padding: 12px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.ffs-table tbody tr:last-child td { border-bottom: none; }
.ffs-table .ffs-points {
  display: inline-block; min-width: 28px; padding: 2px 8px; border-radius: 2px;
  background: var(--vasc-moyen); color: #fff;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; text-align: center;
}
.ffs-interp {
  margin-top: 12px; padding: 12px 16px; border-radius: 3px;
  background: var(--bg-2); border-left: 3px solid var(--vasc-moyen);
  font-size: 13px; color: var(--ink-2); line-height: 1.55;
}
.ffs-interp b { color: var(--ink); font-weight: 600; }

/* =========================================================
   Sources / liens externes
   ========================================================= */
.src-list { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; list-style: none; }
.src-list li { padding: 8px 12px; background: var(--paper); border: 1px solid var(--rule); border-left: 3px solid var(--ink-3); border-radius: 3px; font-size: 12.5px; color: var(--ink-2); }
.src-list li a { color: var(--ink); text-decoration: none; border-bottom: 1px dashed var(--rule-2); }
.src-list li a:hover { border-bottom-color: var(--ink); }

/* =========================================================
   Mindmap radiale (réutilisée du 194)
   ========================================================= */
.mmwrap {
  position: relative; background: var(--paper); border: 1px solid var(--rule);
  border-radius: 4px; overflow: hidden; height: 740px;
}
.mmwrap .zctl        { position: absolute; top: 14px; right: 14px; z-index: 10; display: flex; gap: 4px; }
.mmwrap .zctl button {
  width: 34px; height: 34px; border: 1px solid var(--rule-2); background: var(--paper);
  border-radius: 3px; font-family: var(--font-mono); font-size: 14px; color: var(--ink-2);
}
.mmwrap .zctl button:hover { background: var(--bg-2); }
.mmwrap .zhint {
  position: absolute; left: 14px; bottom: 14px; z-index: 10;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  color: var(--ink-3); background: rgba(255, 252, 245, .85);
  padding: 6px 10px; border-radius: 3px; border: 1px solid var(--rule);
}
.mmwrap svg.canvas {
  width: 100%; height: 100%; display: block; cursor: grab;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,.035) 1px, transparent 0);
  background-size: 24px 24px;
}
.mmwrap svg.canvas:active { cursor: grabbing; }
.mmwrap svg.canvas .root-circle  { fill: var(--ink); }
.mmwrap svg.canvas .root-text    { fill: var(--paper); font-family: var(--font-serif); font-weight: 500; }
.mmwrap svg.canvas .node-card    { cursor: pointer; }
.mmwrap svg.canvas .node-card:hover .node-bg { stroke-width: 2; }
.mmwrap svg.canvas .node-bg      { fill: #fff; stroke: var(--rule-2); stroke-width: 1; }
.mmwrap svg.canvas .node-accent  { fill: var(--fam, var(--ink)); }
.mmwrap svg.canvas .node-title   { fill: var(--ink); font-family: var(--font-serif); font-weight: 500; font-size: 15px; }
.mmwrap svg.canvas .node-sub     { fill: var(--ink-2); font-size: 11px; }
.mmwrap svg.canvas .node-chip    { fill: #fff; stroke: var(--rule); stroke-width: 1; }
.mmwrap svg.canvas .node-chip-t  { fill: var(--ink-2); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.mmwrap svg.canvas path.link     { fill: none; stroke: var(--rule-2); stroke-width: 1.2; stroke-dasharray: 3 4; }
.mmwrap svg.canvas path.link.main   { stroke-width: 1.4; }
.mmwrap svg.canvas path.link.sat    { stroke: var(--rule-2); stroke-width: 1; stroke-dasharray: 1 5; opacity: .55; }
.mmwrap svg.canvas .ring         { fill: none; stroke: var(--rule); stroke-width: 1; stroke-dasharray: 2 5; }
.mmwrap svg.canvas .node-sat                 { cursor: pointer; }
.mmwrap svg.canvas .node-sat:hover .sat-bg   { fill: var(--ink); }
.mmwrap svg.canvas .node-sat:hover .sat-title,
.mmwrap svg.canvas .node-sat:hover .sat-sub  { fill: var(--paper); }
.mmwrap svg.canvas .sat-bg                   { fill: var(--bg-2); stroke: var(--ink); stroke-width: 1; }
.mmwrap svg.canvas .sat-title                { fill: var(--ink); font-family: var(--font-serif); font-weight: 500; font-size: 13px; }
.mmwrap svg.canvas .sat-sub                  { fill: var(--ink-2); font-size: 9.5px; font-family: var(--font-mono); letter-spacing: .04em; }

/* =========================================================
   Print
   ========================================================= */
@media print {
  .mmwrap .zctl, .mmwrap .zhint { display: none !important; }
  .content-panel { display: block !important; page-break-after: always; animation: none; }
  body { background: #fff; }
}
