/* ==========================================================================
   FEMALEMETRIX — STACK BUILDER × ANABOLE MATRIX (Gestaltung)

   HALTUNG (VISUAL_SYSTEM.md · 40 % Automotive HMI · 25 % Medical Lab):
   Das hier ist ein Instrument, kein Kartenraster. Deshalb:

   · STRUKTUR STATT KARTEN — die dreizehn Signalwege liegen auf EINEM
     Hairline-Gitter und teilen sich ihre Kanten. Keine schwebenden Boxen
     mit Radius und Schatten, keine Farbleiste links an einer runden Karte.
   · FARBE IST BEDEUTUNG — Grün bedient, Amber Konflikt, Rot Druck bzw.
     unbedient. Cyan gehört ausschließlich der Interaktion: Auswahl, Fokus,
     geöffnetes Feld. Wäre Cyan auch ein Zustand, ließe sich Befund nicht
     mehr von Bedienelement unterscheiden.
   · ZUSTAND DREIFACH — Marke, Wort und Fläche. Wer Rot und Grün nicht
     unterscheiden kann, liest denselben Befund aus dem Text.
   · MESSWERT-TYPOGRAFIE — Mono mit Sperrung für IDs, Zustände, Dosen;
     tabellarische Ziffern, wo Zahlen untereinander stehen.

   Eigene Datei, weil dieselbe Ansicht an zwei Orten laeuft: frei zugaenglich
   auf stack-builder.html und in My FemaleMetrix. Die freie Seite soll dafuer
   nicht die gesamte App-Gestaltung laden. Alle Werte kommen aus den Tokens
   in css/style.css — diese Datei fuehrt keine eigene Palette.
   ========================================================================== */

.smx-picker { display: grid; gap: var(--space-4, 24px); margin-bottom: var(--space-4, 24px); }

/* Die Gruppenzeile ist zugleich der Schalter, der sie oeffnet. Der native
   Marker faellt weg — an seine Stelle tritt ein Winkel, der sich dreht.
   Der Zaehlerstand steht rechts und bleibt im zugeklappten Zustand stehen:
   Eine geschlossene Gruppe darf nichts verbergen, nur zusammenfassen. */
.smx-group-h { display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--hairline);
  cursor: pointer; list-style: none; user-select: none; padding-right: 5px; }
.smx-group-h::-webkit-details-marker { display: none; }
.smx-group-h:hover .gl { color: var(--text); }
.smx-group-h .gl { font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; color: var(--sand-2);
  transition: color 0.16s ease; }
.smx-group-h .gn { margin-left: auto; font-family: var(--font-body); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.01em; color: var(--muted-2); font-variant-numeric: tabular-nums;
  white-space: nowrap; }
.smx-group-h::after { content: ""; flex: none; width: 6px; height: 6px; align-self: center;
  border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
  margin-top: -3px; transform: rotate(45deg);
  transition: transform 0.18s ease; }
.smx-group[open] > .smx-group-h::after { margin-top: 3px; transform: rotate(-135deg); }
.smx-group-h:focus-visible { outline: 2px solid var(--status-active); outline-offset: 3px; }
.smx-group .gh { color: var(--muted); font-size: 0.82rem; line-height: 1.55;
  margin: 10px 0 12px; max-width: 68ch; }

.smx-picks { display: flex; flex-wrap: wrap; gap: 6px; }

/* Rechteckiger Schalter mit Zustandsmarke — kein Pillen-Tag. Die Marke sagt
   „an/aus" auch ohne Farbe. */
.smx-chip { display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--hairline); border-radius: 4px; background: transparent;
  color: var(--muted); font: inherit; font-size: 0.82rem; line-height: 1.2;
  padding: 9px 13px; min-height: 38px; cursor: pointer; text-align: left;
  transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease; }
.smx-chip .mk { width: 9px; height: 9px; flex: none; border-radius: 2px;
  border: 1px solid var(--line-strong); background: transparent;
  transition: background 0.16s ease, border-color 0.16s ease; }
.smx-chip:hover { border-color: var(--line-strong); color: var(--text); }
.smx-chip.is-on { border-color: var(--accent-line); color: var(--text); background: var(--accent-soft); }
.smx-chip.is-on .mk { background: var(--status-active); border-color: var(--status-active); }
.smx-chip:focus-visible { outline: 2px solid var(--status-active); outline-offset: 2px; }

.smx-bar { margin: 0 0 var(--space-4, 24px); }
.smx-reset { border: 0; background: transparent; color: var(--muted-2); cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; padding: 6px 0; }
.smx-reset:hover:not(:disabled) { color: var(--text); }
.smx-reset:disabled { opacity: 0.35; cursor: default; }
.smx-reset:focus-visible { outline: 2px solid var(--status-active); outline-offset: 3px; }

.smx-leer { color: var(--muted); font-size: 0.88rem; max-width: 60ch;
  padding: var(--space-4, 24px) 0; border-top: 1px solid var(--hairline); }

/* ---- Kennzahlen: die Systemkomponente, keine eigenen Mini-Boxen ---- */
.smx-metrics { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--space-4, 24px); }

/* ---- Der Kernbefund: die einzige laute Stelle der Ansicht ---- */
.smx-kern { color: var(--text); font-size: 0.9rem; line-height: 1.6; max-width: 74ch;
  margin: 0 0 var(--space-4, 24px); padding-left: 14px;
  border-left: 2px solid var(--status-attention); }
.smx-kern strong { color: var(--status-attention); font-weight: 600; }

/* ==========================================================================
   DAS PANEL — dreizehn Zellen auf einem gemeinsamen Gitter.
   Der 1px-Abstand zwischen den Zellen IST die Trennlinie: Die Fläche
   darunter liegt in Hairline-Farbe. Deshalb teilen sich die Zellen ihre
   Kanten, statt einzeln zu schweben.
   ========================================================================== */
/* Die Trennlinie kommt aus den Zellen (box-shadow), NICHT aus der Flaeche
   darunter: Dreizehn Zellen fuellen kein Rechteck, und eine durchgefaerbte
   Flaeche liesse am Zeilenende einen sichtbaren Restblock stehen. Die
   Schatten benachbarter Zellen ueberlappen im 1px-Abstand zu genau einer
   Linie. */
.smx-panel { display: grid; gap: 1px; background: transparent;
  border: 1px solid var(--hairline); border-radius: var(--radius-sm, 10px);
  overflow: hidden; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }


.smx-cell { display: flex; flex-direction: column; gap: 3px; align-items: stretch;
  text-align: left; border: 0; cursor: pointer; font: inherit;
  padding: 13px 15px 15px; background: var(--bg-0); color: var(--text);
  position: relative; box-shadow: 0 0 0 1px var(--hairline);
  transition: background 0.16s ease; }
.smx-cell::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 0 var(--status-active); transition: box-shadow 0.16s ease; }
.smx-cell:hover { background: var(--surface); }
.smx-cell:focus-visible { outline: 2px solid var(--status-active); outline-offset: -2px; }
.smx-cell.is-open::after { box-shadow: inset 0 0 0 2px var(--status-active); }

.smx-cell .c-top { display: flex; align-items: center; gap: 8px; }
.smx-cell .c-id { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em;
  color: var(--muted-2); }
.smx-cell .c-ro { margin-left: auto; font-family: var(--font-body); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.01em; color: var(--muted-2); opacity: 0.75; }
.smx-cell .c-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  line-height: 1.2; letter-spacing: -0.01em; margin-top: 3px; }
/* Der Zustand steht in Mono — er ist ein Messwert, keine Überschrift. Die
   Marke davor trägt ihn zusätzlich als Form. */
.smx-cell .c-st { display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em;
  line-height: 1.35; margin-top: 2px; }
.smx-cell .c-st::before { content: ""; width: 7px; height: 7px; flex: none;
  border-radius: 50%; background: currentColor; }
.smx-cell .c-by, .smx-cell .c-dr { font-size: 0.72rem; line-height: 1.45;
  color: var(--muted-2); margin-top: 3px; }
.smx-cell .c-by.is-open { color: var(--muted-2); opacity: 0.6; }
.smx-cell .c-dr { color: var(--status-flag); opacity: 0.85; }

/* Zustände. Die Fläche bleibt fast ruhig — die Farbe sitzt in Marke und Wort,
   nicht als Blockfarbe hinter dem Text. */
.smx-cell.smx-direkt { background: var(--bg-0);
  background: color-mix(in srgb, var(--status-improving) 6%, var(--bg-0)); }
.smx-cell.smx-direkt:hover { background: var(--surface);
  background: color-mix(in srgb, var(--status-improving) 11%, var(--bg-0)); }
.smx-cell.smx-direkt .c-st { color: var(--status-improving); }
.smx-cell.smx-erlaubend .c-st { color: var(--status-improving); opacity: 0.72; }
.smx-cell.smx-erlaubend .c-st::before { background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--status-improving); }
.smx-cell.smx-konflikt { background: var(--bg-0);
  background: color-mix(in srgb, var(--status-attention) 6%, var(--bg-0)); }
.smx-cell.smx-konflikt:hover { background: var(--surface);
  background: color-mix(in srgb, var(--status-attention) 11%, var(--bg-0)); }
.smx-cell.smx-konflikt .c-st { color: var(--status-attention); }
.smx-cell.smx-druck { background: var(--bg-0);
  background: color-mix(in srgb, var(--status-flag) 7%, var(--bg-0)); }
.smx-cell.smx-druck:hover { background: var(--surface);
  background: color-mix(in srgb, var(--status-flag) 12%, var(--bg-0)); }
.smx-cell.smx-druck .c-st { color: var(--status-flag); }
.smx-cell.smx-keiner .c-st { color: var(--status-flag); opacity: 0.72; }
.smx-cell.smx-keiner .c-st::before { background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--status-flag); }
.smx-cell.smx-keiner .c-name { color: var(--muted); }

/* ==========================================================================
   DAS READOUT — was eine Zelle beantwortbar macht.
   ========================================================================== */
.smx-hint { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.06em;
  color: var(--muted-2); padding: 14px 0 0; }

/* Das Readout ist eine volle Zeile im Gitter — direkt unter der Zelle, die
   es geoeffnet hat. Deshalb keine eigene Rundung und keine Seitenraender:
   Es ist Teil des Instruments, kein Kasten davor. */
.smx-read { grid-column: 1 / -1; border: 0;
  box-shadow: 0 0 0 1px var(--accent-line);
  background: var(--surface); padding: var(--space-3, 16px) var(--space-4, 24px) var(--space-4, 24px); }
.smx-read-h { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.smx-read-h .r-st { flex-basis: 100%; }
@media (min-width: 720px) { .smx-read-h .r-st { flex-basis: auto; } }
.smx-read-h .r-id { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em;
  color: var(--status-active); }
.smx-read-h h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em; margin: 0; color: var(--text); }
.smx-read-h .r-ro { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em;
  color: var(--muted-2); }
.smx-read-h .r-st { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.04em; }
.smx-read-h .r-st.smx-direkt { color: var(--status-improving); }
.smx-read-h .r-st.smx-erlaubend { color: var(--status-improving); opacity: 0.72; }
.smx-read-h .r-st.smx-konflikt { color: var(--status-attention); }
.smx-read-h .r-st.smx-druck { color: var(--status-flag); }
.smx-read-h .r-st.smx-keiner { color: var(--status-flag); opacity: 0.72; }
.smx-close { margin-left: auto; border: 0; background: transparent; color: var(--muted-2);
  cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; padding: 4px 0; }
.smx-close:hover { color: var(--text); }
.smx-close:focus-visible { outline: 2px solid var(--status-active); outline-offset: 3px; }

.smx-read-was { color: var(--muted); font-size: 0.88rem; line-height: 1.65;
  max-width: 72ch; margin: 14px 0 0; }

.smx-read-l { margin-top: var(--space-4, 24px); }
.smx-read-l .k, .smx-plan-h .k, .smx-kontrolle .k, .smx-list-s .k, .smx-ohne .k {
  display: block; font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; color: var(--sand-2); margin-bottom: 12px; }

/* Hebelliste: nummeriert, weil die Reihenfolge etwas bedeutet — direkte
   Hebel zuerst, erlaubende danach. */
.smx-levers { list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--hairline); }
.smx-lever { padding: 12px 0 13px; border-bottom: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 5px; }
.smx-lever .lv-h { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.smx-lever .lv-k { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em;
  color: var(--muted-2); min-width: 92px; }
.smx-lever .lv-n { font-family: var(--font-display); font-weight: 700; font-size: 0.94rem;
  color: var(--muted); }
.smx-lever .lv-w { margin-left: auto; font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.01em; color: var(--muted-2); }
.smx-lever.is-direkt .lv-k { color: var(--status-improving); }
.smx-lever.is-direkt .lv-n { color: var(--text); }
.smx-lever.is-direkt .lv-w { color: var(--status-improving); }
.smx-lever .lv-d { color: var(--muted); font-size: 0.85rem; line-height: 1.6; max-width: 72ch; }
.smx-lever .lv-b { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.04em;
  color: var(--status-improving); }

.smx-read-d { margin: var(--space-4, 24px) 0 0; display: grid; gap: 14px; }
.smx-read-d dt { font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; color: var(--muted-2); margin-bottom: 4px; }
.smx-read-d dd { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.6; max-width: 72ch; }
.smx-read-more { display: inline-block; margin-top: var(--space-3, 16px);
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; color: var(--status-active); text-decoration: none; }
.smx-read-more::after { content: " →"; }
.smx-read-more:hover { text-decoration: underline; }

/* ==========================================================================
   DER PLAN — dieselbe Antwort für alle roten Wege, ohne dass jemand klicken
   muss. Die Nummerierung ist echt: Rang nach Abdeckung, nicht Dekoration.
   ========================================================================== */
.smx-plan { margin-top: var(--space-5, 40px); padding-top: var(--space-4, 24px);
  border-top: 1px solid var(--hairline); }
.smx-plan-h p { color: var(--muted); font-size: 0.88rem; line-height: 1.6;
  max-width: 72ch; margin: 0 0 var(--space-3, 16px); }
.smx-plan-l { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px;
  background: var(--hairline); border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline); }
.smx-plan-l li { display: flex; gap: 16px; align-items: baseline;
  background: var(--bg-0); padding: 15px 0; }
.smx-plan-l .p-n { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  line-height: 1; color: var(--muted-2); opacity: 0.42; font-variant-numeric: tabular-nums;
  min-width: 26px; }
.smx-plan-l .p-b { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.smx-plan-l .p-k { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em;
  color: var(--status-improving); }
.smx-plan-l b { font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.01em; }
.smx-plan-l .p-c { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em;
  color: var(--muted-2); font-variant-numeric: tabular-nums; }
.smx-plan-l .p-d { color: var(--muted); font-size: 0.85rem; line-height: 1.6; max-width: 70ch; }
.smx-plan-f { color: var(--muted); font-size: 0.85rem; line-height: 1.6;
  max-width: 72ch; margin: var(--space-3, 16px) 0 0; }

/* ---- Nebenaussagen ---- */
.smx-ohne { color: var(--muted); font-size: 0.85rem; line-height: 1.6; max-width: 72ch;
  margin-top: var(--space-4, 24px); }

.smx-list-s { margin-top: var(--space-5, 40px); padding-top: var(--space-4, 24px);
  border-top: 1px solid var(--hairline); }
.smx-list { display: grid; gap: 1px; background: var(--hairline);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); }
.smx-it { background: var(--bg-0); padding: 15px 16px 16px; }
.smx-it header { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.smx-it b { font-family: var(--font-display); font-size: 0.94rem; font-weight: 700; color: var(--text); }
.smx-it .cl { font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; color: var(--muted-2); }
.smx-it .fl { display: block; margin-top: 5px; font-family: var(--font-body); font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.01em; color: var(--status-attention); }
.smx-it.is-konv { background: var(--bg-0);
  background: color-mix(in srgb, var(--status-attention) 5%, var(--bg-0)); }
.smx-it p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; margin: 8px 0 0; }
.smx-it p em { display: block; font-style: normal; color: var(--muted-2); margin-top: 6px; }

/* Die Marker tragen dieselbe Farbe wie ihre Kennzahl oben. Die Zahl sagt
   „elf" und faerbt sich amber — dann muessen die elf Namen darunter
   erkennbar dieselbe Aussage sein, sonst steht der Befund zweimal in zwei
   Sprachen da. */
.smx-kontrolle { margin-top: var(--space-5, 40px); padding-top: var(--space-4, 24px);
  border-top: 1px solid var(--hairline); }
.smx-kontrolle .k { color: var(--status-attention); }
.smx-marker { display: flex; flex-wrap: wrap; gap: 6px; }
.smx-marker span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em;
  color: var(--status-attention); border-radius: 3px; padding: 6px 10px;
  border: 1px solid var(--hairline);
  border-color: color-mix(in srgb, var(--status-attention) 34%, transparent);
  background: transparent;
  background: color-mix(in srgb, var(--status-attention) 7%, transparent); }
.smx-kontrolle p { color: var(--muted); font-size: 0.82rem; line-height: 1.6;
  max-width: 72ch; margin: 14px 0 0; }

.smx-grenze { color: var(--muted-2); font-size: 0.8rem; line-height: 1.65; max-width: 74ch;
  margin-top: var(--space-5, 40px); padding-top: var(--space-3, 16px);
  border-top: 1px solid var(--hairline); }
.smx-grenze strong { color: var(--muted); font-weight: 600; }

/* ---- Mobil: das Gitter wird zur Liste, die Zelle bleibt ein Instrument ---- */
@media (max-width: 560px) {
  .smx-panel { grid-template-columns: 1fr; }
  .smx-list { grid-template-columns: 1fr; }
  .smx-read { padding-left: var(--space-3, 16px); padding-right: var(--space-3, 16px); }
  .smx-lever .lv-w { margin-left: 0; }
  .smx-plan-l li { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .smx-chip, .smx-cell, .smx-cell::after, .smx-group-h::after { transition: none; }
}

/* Einleitung — auf beiden Seiten dieselbe Stimme. */
.smx-lead { color: var(--muted); font-size: 0.88rem; line-height: 1.65;
  max-width: 72ch; margin: 0 0 var(--space-4, 24px); }

/* ---- Verhaltenshebel: der dritte Zustand ----------------------------------
   Der Selbstcheck der Matrix kennt drei Stufen, dieser Picker zeigt sie.
   „Teilweise" ist bewusst nicht halbtransparent, sondern eigens beschriftet:
   Ein blasser Schalter liest sich wie deaktiviert, nicht wie halb erfüllt. */
.smx-chip.is-halb { border-color: color-mix(in srgb, var(--status-attention) 40%, transparent);
  color: var(--text); }
.smx-chip.is-halb .mk { background: transparent;
  border-color: var(--status-attention);
  box-shadow: inset 0 0 0 2px var(--bg-0), inset 0 0 0 9px var(--status-attention); }
.smx-chip .hb { font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.01em; color: var(--status-attention); margin-left: 2px; }

.smx-lever.is-mein .lv-k { color: var(--status-improving); }
.smx-lever .lv-b.is-voll { color: var(--status-improving); }
.smx-lever .lv-b.is-halb { color: var(--status-attention); }
.smx-it .fl.is-halb { color: var(--status-attention); }

/* ==========================================================================
   ZUGANG — der Builder gehört zum Protokoll.
   Die Sperre ist kein Fehlerzustand: Sie sagt, was das Werkzeug tut, warum
   es dazugehört und was frei bleibt. Ein Schloss ohne Begründung liest sich
   wie eine Mauer; eines mit Begründung wie ein Angebot.
   ========================================================================== */
.smx-gate { padding: var(--space-4, 24px) 0; border-top: 1px solid var(--hairline); }
.smx-gate .k { display: block; font-family: var(--font-body);
  font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.01em; color: var(--muted-2); }
.smx-gate.mm-locked .k::before { content: "LOCKED · "; color: var(--status-attention); }
.smx-gate .g-was { color: var(--text); font-size: 0.94rem; line-height: 1.65;
  max-width: 68ch; margin: 14px 0 0; }
.smx-gate .g-warum { color: var(--muted); font-size: 0.88rem; line-height: 1.65;
  max-width: 68ch; margin: 12px 0 0; }
.smx-gate .g-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--space-4, 24px); }
.smx-gate .g-frei { color: var(--muted-2); font-size: 0.82rem; line-height: 1.6;
  max-width: 68ch; margin: var(--space-4, 24px) 0 0; padding-top: var(--space-3, 16px);
  border-top: 1px solid var(--hairline); }
.smx-gate.is-pruefung .k { color: var(--status-active); }
