/* Design tokens — the single source for cross-cutting color/spacing/type.
   Institutional palette per DD-001. Severity scale per DD-002 is a SEPARATE,
   invariant token set — it must never be restyled by a brand/theme change
   (PRD FR-15 explicitly excludes severity color scales from configurability). */
:root {
  --brand: #1A3A5C;          /* governedBy: DD-001 — deep institutional navy (structural/nav, ~30%) */
  --brand-ink: #ffffff;
  --brand-soft: #EAF1F8;
  --ink: #1b232c;
  --muted: #5b6570;
  --line: #dde3e9;
  --bg: #ffffff;
  --bg-soft: #f4f6f8;         /* dominant page canvas (~60%), governedBy: DD-028 */
  --accent: #8A4A17;          /* governedBy: DD-028 — darkened for ≥4.5:1 contrast; reserved ONLY
                                  for primary CTA buttons (~10%), never structural chrome */
  --ok: #1a7f37;
  --radius: 6px;
  --space: 16px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);

  /* Type scale — governedBy: DD-027. rem-based (respects user/browser zoom), 4px/2px grid,
     12px is the absolute floor (never used below this). Body baseline is the browser default
     1rem/16px — never overridden smaller. */
  --fs-2xs: 0.75rem;   /* 12px — captions, badges, chips, tertiary metadata (floor) */
  --fs-xs:  0.875rem;  /* 14px — secondary labels, nav, small print */
  --fs-md:  1.25rem;   /* 20px — h2 */
  --fs-lg:  1.5rem;    /* 24px — h1 */
  --tracking-tight: 0.01em; /* added to any text at --fs-2xs/--fs-xs so characters don't blend */

  /* Material-style elevation scale (governedBy: DD-025) — dp1/2/3/4, used instead of one flat
     --shadow so panels read as physically layered (map < floating toolbar < modal). */
  --elevation-1: 0 1px 2px rgba(0,0,0,.10), 0 1px 3px rgba(0,0,0,.08);
  --elevation-2: 0 2px 4px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.10);
  --elevation-3: 0 4px 8px rgba(0,0,0,.12), 0 10px 24px rgba(0,0,0,.14);
  --elevation-4: 0 8px 16px rgba(0,0,0,.14), 0 20px 40px rgba(0,0,0,.18);

  /* Severity scale — governedBy: DD-002. Fixed vocabulary (FR-19A): Watch | Warning | Severe.
     Never derived from --brand/--accent; never overridden per audience/theme (FR-27). */
  --sev-watch: #C99A00;
  --sev-watch-bg: #FFF7E0;
  --sev-warning: #C05B00;
  --sev-warning-bg: #FFEEE0;
  --sev-severe: #B3261E;
  --sev-severe-bg: #FBE9E7;
}

* { box-sizing: border-box; }
html { font-size: 100%; } /* 1rem = 16px browser default — never shrunk (prevents iOS input zoom). */
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background: var(--bg-soft); line-height: 1.5; font-size: 1rem;
}
a { color: var(--brand); }

/* Line-length measure (45–75ch desktop, 35–50ch mobile) for continuous reading text — applied
   once, globally, to the standard "intro paragraph under h1" pattern every screen uses, so no
   per-page edits are needed. */
main.wrap > p.muted:first-of-type,
main.wrap.wide > p.muted:first-of-type {
  max-width: 65ch;
}
@media (max-width: 600px) {
  main.wrap > p.muted:first-of-type,
  main.wrap.wide > p.muted:first-of-type {
    max-width: 46ch;
  }
}

/* ---- shared header / nav / footer (injected by components.js) ----
   Real responsive navbar (governedBy: DD-025): collapses behind a hamburger toggle below
   992px using a checkbox-hack — no JS bundle needed, works from file://. */
.site-header {
  background: var(--brand); color: var(--brand-ink);
  padding: 0 var(--space); display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  min-height: 56px; box-shadow: var(--elevation-2); position: relative; z-index: 100;
}
.site-header .brand { color: var(--brand-ink); font-weight: 700; text-decoration: none; font-size: 1.125rem; }
.site-header .brand .tag { font-weight: 400; opacity: .8; font-size: var(--fs-2xs); margin-left: 8px; letter-spacing: var(--tracking-tight); }

.nav-toggle-checkbox { display: none; }
.navbar-toggler-label {
  display: none; margin-left: auto; cursor: pointer; color: var(--brand-ink);
  font-size: 1.375rem; line-height: 1; padding: 4px 6px; border-radius: 4px;
}
.navbar-toggler-label:hover { background: rgba(255,255,255,.12); }

.site-nav-collapse { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-wrap: wrap; }
.site-nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.site-nav a { color: var(--brand-ink); text-decoration: none; opacity: .9; font-size: var(--fs-xs); }
.site-nav a:hover, .site-nav a[aria-current="page"] { opacity: 1; text-decoration: underline; }

/* ---- nav dropdowns (DD-036) — desktop hover/focus, mobile always-expanded ---- */
.nav-item { position: relative; }
.nav-item > a, .nav-trigger {
  display: inline-flex; align-items: center; gap: 4px; color: var(--brand-ink);
  text-decoration: none; opacity: .9; font-size: var(--fs-xs); padding: 8px 8px; cursor: pointer;
}
.nav-item > a:hover, .nav-item > a[aria-current="page"],
.nav-trigger:hover, .nav-item.nav-active > .nav-trigger { opacity: 1; text-decoration: underline; }
.caret { font-size: 8px; opacity: .8; }

.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--elevation-3); padding: 6px; z-index: 200;
}
.nav-dropdown a {
  display: block; padding: 8px 10px; color: var(--ink) !important; text-decoration: none;
  font-size: var(--fs-xs); border-radius: 4px; opacity: 1;
}
.nav-dropdown a:hover, .nav-dropdown a[aria-current="page"] { background: var(--brand-soft); text-decoration: none; }
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown { display: block; }

/* Rightmost header items (e.g. the user menu) open leftward so the panel never overflows
   past the viewport's right edge. */
.header-utility-row .nav-dropdown { left: auto; right: 0; }

.nav-group + .nav-group { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 8px; }
.nav-group-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); padding: 4px 10px; font-weight: 600;
}

@media (max-width: 991px) {
  .navbar-toggler-label { display: block; }
  .site-nav-collapse {
    display: none; width: 100%; flex-direction: column; align-items: flex-start;
    gap: 10px; padding: 12px 0 16px; border-top: 1px solid rgba(255,255,255,.15);
  }
  .site-nav { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav-item { width: 100%; }
  .nav-toggle-checkbox:checked ~ .site-nav-collapse { display: flex; }
  .header-utility-row { display: flex; gap: 14px; align-items: center; }

  .nav-dropdown {
    display: block !important; position: static; box-shadow: none; border: 0;
    background: transparent; padding: 2px 0 6px 14px; min-width: 0;
  }
  .nav-dropdown a, .nav-dropdown a[aria-current="page"] {
    color: var(--brand-ink) !important; opacity: .85; background: transparent;
  }
  .nav-dropdown a:hover { opacity: 1; background: rgba(255,255,255,.1); }
  .nav-group-label { color: rgba(255,255,255,.6); }
}

/* ---- header utility: language switch + notification bell (DD-021) ---- */
.header-utility-row { display: flex; align-items: center; gap: 14px; }
.lang-switch { color: var(--brand-ink); opacity: .85; text-decoration: none; font-size: var(--fs-2xs); white-space: nowrap; letter-spacing: var(--tracking-tight); }
.lang-switch:hover { opacity: 1; text-decoration: underline; }
.header-bell { position: relative; color: var(--brand-ink); text-decoration: none; font-size: 1rem; line-height: 1; opacity: .9; }
.header-bell:hover { opacity: 1; }
.bell-badge { position: absolute; top: -7px; right: -9px; background: var(--sev-severe); color: #fff;
              font-size: var(--fs-2xs); font-weight: 700; min-width: 16px; height: 16px; border-radius: 999px;
              display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.site-footer {
  border-top: 1px solid var(--line); background: var(--bg);
  color: var(--muted); font-size: var(--fs-2xs); padding: 14px var(--space); margin-top: 48px;
  letter-spacing: var(--tracking-tight);
}
.site-footer .disclaimer { color: var(--ink); font-weight: 600; }

/* ---- layout ---- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 24px var(--space) 0; }
.wrap.wide { max-width: 1320px; }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
        box-shadow: var(--shadow); padding: 20px; margin: 16px 0; }
.grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Headings: line-height 1.2 (tight, per spec) vs body's 1.5; sized on the 4px grid. */
h1 { font-size: var(--fs-lg); line-height: 1.2; margin: 8px 0 4px; }
h2 { font-size: var(--fs-md); line-height: 1.2; margin: 0 0 12px; }
h3 { font-size: var(--fs-xs); line-height: 1.2; margin: 16px 0 8px; font-weight: 600; }

.muted { color: var(--muted); }
.small { font-size: var(--fs-2xs); letter-spacing: var(--tracking-tight); }

/* Primary CTA (~10% accent) vs. secondary/structural (~30%, brand) — governedBy: DD-028. */
.btn { background: var(--accent); color: var(--brand-ink); border: 0; border-radius: var(--radius);
       padding: 9px 16px; font-size: var(--fs-xs); cursor: pointer; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn.secondary { background: var(--bg); color: var(--brand); border: 1px solid var(--brand); }
.btn.danger { background: var(--sev-severe); }
.btn.sm { padding: 5px 10px; font-size: var(--fs-2xs); }
.field { display: block; margin: 12px 0; }
.field label { display: block; font-size: var(--fs-2xs); color: var(--muted); margin-bottom: 4px; letter-spacing: var(--tracking-tight); }
.field input, .field select, .field textarea {
  width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 1rem; background: var(--bg); } /* ≥16px — no iOS zoom-on-focus */
.field.checkline { display: flex; align-items: center; gap: 8px; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: var(--fs-xs); }
th { color: var(--muted); font-weight: 600; font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: .04em; }
.badge { display: inline-block; font-size: var(--fs-2xs); padding: 2px 8px; border-radius: 999px;
         background: var(--bg-soft); border: 1px solid var(--line); color: var(--muted); letter-spacing: var(--tracking-tight); }
.badge.func { color: var(--brand); border-color: var(--brand); }
.badge.nfr { color: var(--accent); border-color: var(--accent); }
.badge.role { background: var(--brand-soft); color: var(--brand); border-color: var(--brand); }
.badge.suggested { border-style: dashed; background: #F3E8FF; color: #5B3FA6; border-color: #b79ee0; }
.badge.suggested::after { content: " (suggested — not yet approved)"; }

/* ---- severity + status chips (DD-002, DD-006 — always invariant) ---- */
.chip { display: inline-flex; align-items: center; gap: 5px; font-size: var(--fs-2xs); font-weight: 600;
        padding: 3px 10px; border-radius: 999px; letter-spacing: var(--tracking-tight); }
.chip.sev-watch   { background: var(--sev-watch-bg);   color: var(--sev-watch); }
.chip.sev-warning { background: var(--sev-warning-bg); color: var(--sev-warning); }
.chip.sev-severe  { background: var(--sev-severe-bg);  color: var(--sev-severe); }
.chip.state { background: var(--bg-soft); color: var(--ink); border: 1px solid var(--line); }
.chip.review-pending  { background: #FFF7E0; color: #8a6400; border: 1px solid #e8cd80; }
.chip.review-approved { background: #E6F4EA; color: var(--ok); border: 1px solid #a9d6b6; }
.chip.review-rejected { background: var(--sev-severe-bg); color: var(--sev-severe); border: 1px solid #e3aaa5; }
.chip.ai-draft { background: #EFEAFB; color: #5B3FA6; border: 1px solid #cdbdec; }

/* ---- data-gap banner (DD-005) ---- */
.gap-banner { background: #FFF7E0; border: 1px solid #e8cd80; color: #6b4f00; border-radius: var(--radius);
              padding: 8px 12px; font-size: var(--fs-2xs); margin: 8px 0; letter-spacing: var(--tracking-tight); }

/* ---- non-authority disclaimer banner (DD-004) ---- */
.disclaimer-banner { background: var(--brand-soft); border-bottom: 1px solid var(--line);
                      color: var(--brand); font-size: var(--fs-2xs); text-align: center; padding: 6px 12px;
                      letter-spacing: var(--tracking-tight); }

/* ---- checklist (DD-007 / ResponseProtocol) ---- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: var(--fs-xs); }
.checklist li:last-child { border-bottom: 0; }
.checklist input[type="checkbox"] { margin-top: 3px; }

/* ---- station/area search box (DD-023) ---- */
.search-box { position: relative; }
.search-box input { padding-left: 30px; }
.search-box::before { content: "\1F50D"; position: absolute; left: 9px; top: 50%; transform: translateY(-50%);
                       font-size: var(--fs-2xs); opacity: .55; }

/* ---- timeline bar (DD-024) ---- */
.timeline { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; }
.timeline .timeline-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.timeline .timeline-controls { display: flex; align-items: center; gap: 8px; }
.timeline .timeline-controls button { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    width: 26px; height: 26px; cursor: pointer; font-size: var(--fs-2xs); color: var(--brand); }
.timeline-track { position: relative; height: 30px; background: var(--bg); border: 1px solid var(--line); border-radius: 4px; }
.timeline-ticks { display: flex; justify-content: space-between; padding: 0 4px; font-size: var(--fs-2xs); color: var(--muted); line-height: 30px; letter-spacing: var(--tracking-tight); }
.timeline-playhead { position: absolute; top: -2px; width: 2px; height: 34px; background: var(--accent); }
.timeline-playhead::after { content: ""; position: absolute; top: -5px; left: -4px; width: 10px; height: 10px;
    background: var(--accent); border-radius: 999px; }

/* ---- dashboard shell: map-page exception — full-bleed map, floating hidden-by-default panel
   (DD-029, refines DD-026). Per the map-page exception, this screen intentionally does NOT
   apply the neutral 60/30/10 *color* ratio as strictly as other screens — panels are
   minimized/hidden so the map (imagery, not chrome) dominates almost the entire view. */
.dashboard-fullbleed { max-width: none; margin: 0; padding: 0; }
.dashboard-titlebar {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 6px;
  padding: 10px var(--space); background: var(--bg);
}
.dashboard-titlebar h1 { font-size: var(--fs-md); margin: 0; }
.map-pane {
  position: relative; overflow: hidden; background: var(--bg);
  /* A definite height (not min-height) is required here: absolutely-positioned children use
     inset:0 to fill this box exactly, which only resolves against a firm containing-block
     height — with only min-height set, browsers fall back to sizing this box by CONTENT
     (the SVG's own intrinsic aspect ratio at full width), ballooning the whole page. */
  height: calc(100vh - 56px - 29px - 46px); /* header + disclaimer + titlebar, approx */
  min-height: 420px;
}
.panel-toggle-checkbox { display: none; }
.panel-toggle-btn {
  position: absolute; top: 10px; right: 10px; z-index: 30; cursor: pointer;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 6px 10px; font-size: var(--fs-2xs); color: var(--brand); box-shadow: var(--elevation-2);
  user-select: none;
}
.panel-toggle-checkbox:checked ~ .map-pane .panel-toggle-btn::after { content: " (shown — click to hide)"; }

.map-pane .map-canvas-fill {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #DCEBF5 0%, #EAF1F8 100%);
  display: flex; align-items: center; justify-content: center; color: var(--muted); text-align: center;
}
.mg-silhouette { max-height: 90%; max-width: 90%; width: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,.12)); }

.map-pane .map-overlay-top {
  position: absolute; top: 10px; left: 270px; right: 130px; z-index: 15;
  background: rgba(255,255,255,.95); border-radius: var(--radius); box-shadow: var(--elevation-3);
  padding: 10px 12px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.map-pane .map-overlay-gap {
  position: absolute; top: 66px; left: 270px; z-index: 14; max-width: 360px;
}

/* ---- layer catalog: floating left panel (DD-037, SR-1) — always visible (primary map
   interaction, unlike the hideable right-hand summary panel) ---- */
.map-pane .map-layer-catalog {
  position: absolute; top: 10px; left: 10px; bottom: 104px; z-index: 16;
  width: 250px; max-width: calc(45% - 10px); overflow-y: auto;
  background: rgba(255,255,255,.97); border-radius: var(--radius); box-shadow: var(--elevation-3);
  padding: 10px;
}
.map-layer-catalog details { border-bottom: 1px solid var(--line); padding: 8px 2px; }
.map-layer-catalog details:last-child { border-bottom: 0; }
.map-layer-catalog summary { cursor: pointer; font-weight: 600; font-size: var(--fs-xs); list-style: none; }
.map-layer-catalog summary::-webkit-details-marker { display: none; }
.map-layer-catalog summary::before { content: "\25B8"; display: inline-block; margin-right: 6px; transition: transform .15s; }
.map-layer-catalog details[open] summary::before { transform: rotate(90deg); }
.map-layer-catalog details > a { display: inline-block; margin-top: 4px; }
@media (max-width: 767px) {
  .map-pane .map-layer-catalog { max-width: 200px; }
  .map-pane .map-overlay-top { left: 216px; }
  .map-pane .map-overlay-gap { left: 216px; }
}
.map-pane .map-overlay-bottom {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 15;
  background: rgba(255,255,255,.95); border-radius: var(--radius); box-shadow: var(--elevation-3);
  padding: 10px 12px;
}

/* Side panel: hidden by default (floats ON TOP of the map, does not share width with it),
   toggled via the same checkbox — the map-page exception's "layered layout strategy". */
.map-pane .side-panel {
  display: none; position: absolute; top: 10px; right: 10px; bottom: 10px; z-index: 25;
  width: 360px; max-width: calc(100% - 20px); overflow-y: auto; padding-right: 2px;
}
.panel-toggle-checkbox:checked ~ .map-pane .side-panel { display: block; }
@media (max-width: 767px) {
  .map-pane .side-panel { left: 10px; width: auto; }
}

.side-panel details { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--elevation-2); padding: 12px 14px; margin: 0 0 12px; }
.side-panel summary { cursor: pointer; font-weight: 600; font-size: var(--fs-xs); list-style: none; }
.side-panel summary::-webkit-details-marker { display: none; }
.side-panel summary::before { content: "\25B8"; display: inline-block; margin-right: 6px; transition: transform .15s; }
.side-panel details[open] summary::before { transform: rotate(90deg); }
.side-panel details > *:not(summary) { margin-top: 10px; }

/* ---- proportional severity bar (DD-035, adapted from Copernicus GDO) ---- */
.severity-bar { display: flex; height: 10px; border-radius: 999px; overflow: hidden; margin: 4px 0; }
.severity-bar span { display: block; height: 100%; }

/* ---- legend swatches ---- */
.legend-row { display: flex; align-items: center; gap: 8px; font-size: var(--fs-xs); margin: 4px 0; }
.swatch { width: 14px; height: 14px; border-radius: 3px; display: inline-block; flex-shrink: 0; }

/* ---- traceability marker on tagged elements ---- */
[data-req], [data-dd] { position: relative; }
[data-req]:not(.no-mark)::after,
[data-dd]:not([data-req]):not(.no-mark)::after {
  content: "\24D8"; font-size: 10px; color: var(--brand); /* decorative glyph, not reading text */
  position: absolute; top: -6px; right: -10px; opacity: .75; pointer-events: none;
}
[data-req]:hover, [data-dd]:hover { outline: 1px dashed var(--brand); outline-offset: 2px; }

/* deep-link highlight pulse */
@keyframes tm-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(26,58,92,0); } 50% { box-shadow: 0 0 0 6px rgba(26,58,92,.35); } }
.tm-highlight { animation: tm-pulse 1s ease-in-out 2; border-radius: var(--radius); }

/* ---- tooltip ---- */
.tm-tooltip {
  position: fixed; z-index: 9999; max-width: 320px; background: #10151b; color: #fff;
  border-radius: var(--radius); padding: 10px 12px; font-size: var(--fs-xs); line-height: 1.5;
  box-shadow: var(--shadow); pointer-events: none; opacity: 0; transition: opacity .12s;
}
.tm-tooltip.show { opacity: 1; }
.tm-tooltip .rid { font-weight: 700; color: #7fc4ff; }
.tm-tooltip .dd { color: #ffd27f; }
.tm-tooltip .row { margin: 4px 0; }

/* ---- per-page requirements popup ---- */
.tm-corner {
  position: fixed; right: 18px; bottom: 18px; z-index: 9000;
  background: var(--brand); color: var(--brand-ink); border: 0; border-radius: 999px;
  padding: 10px 16px; font-size: var(--fs-xs); cursor: pointer; box-shadow: var(--shadow);
}
.tm-modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 9500;
  display: none; align-items: center; justify-content: center; padding: 20px; }
.tm-modal-backdrop.open { display: flex; }
.tm-modal { background: var(--bg); border-radius: var(--radius); max-width: 760px; width: 100%;
            max-height: 80vh; overflow: auto; box-shadow: var(--shadow); }
.tm-modal header { display: flex; justify-content: space-between; align-items: center;
                   padding: 14px 18px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--bg); }
.tm-modal header h3 { margin: 0; font-size: 1rem; }
.tm-modal .close { background: none; border: 0; font-size: 1.25rem; cursor: pointer; color: var(--muted); }
.tm-modal .body { padding: 6px 18px 18px; }

.controls { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0; }
.controls input, .controls select { padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; font-size: 1rem; }
.superseded { opacity: .5; }
.superseded td:first-child::after { content: " (superseded)"; color: var(--accent); font-size: var(--fs-2xs); }
