/* ==========================================================================
   JAUGE GRADUÉE (charte v1.2 §4.4) — sous les grandes valeurs de ratio.
   Piste craie bordée granite, zone 0.7–1.4 teintée ok 18 %, aiguille
   graphite 2px, graduations 0 / 0.7 / 1.4 / 1.6 / 2.0 en mono 9.5px.
   Échelle linéaire 0 → 2.0 (les valeurs > 2 sont plaquées au bord).
   ========================================================================== */

.gauge { margin-top: 10px; }
.gauge-track {
  position: relative; height: 14px;
  background: var(--craie);
  border: var(--filet);
  border-radius: 0;
}
/* zone de norme S-003 : 0.7→1.4 sur échelle 0→2 = 35 % → 70 % */
.gauge-zone-ok {
  position: absolute; top: 0; bottom: 0;
  left: 35%; width: 35%;
  background: color-mix(in srgb, var(--data-ok) 18%, transparent);
}
.gauge-needle {
  position: absolute; top: -3px; bottom: -3px; width: 2px;
  background: var(--graphite);
}
.gauge-tick {
  position: absolute; top: 100%; width: 1px; height: 4px;
  background: var(--granite-fonce);
}
.gauge-scale {
  position: relative; display: block; height: 16px; margin-top: 5px;
  font-family: var(--font-data); font-size: 9.5px; color: var(--granite-fonce);
}
.gauge-scale span { position: absolute; transform: translateX(-50%); }
.gauge-seuil-warn { position: absolute; top: -3px; bottom: -3px; width: 1px; background: var(--data-warn); }
.gauge-seuil-alert { position: absolute; top: -3px; bottom: -3px; width: 1px; background: var(--data-alert); }
