/* ============================================================================
   BAIA ERP — shared design system
   Single source of truth for the black + brass "slate-fintech" look.
   Extracted from the P&L page (pl_combined.html), which is the reference.

   USAGE: <link rel="stylesheet" href="/static/baia.css"> in <head>, BEFORE the
   page's own <style>. Page-specific CSS (tables, bespoke layouts) stays inline
   on the page; anything cross-page (tokens, header, hero, buttons, KPI cards,
   inputs) lives HERE so the pages can never drift apart again.

   To retune the whole system, edit the tokens in :root below — every page
   follows.
   ========================================================================== */

:root {
  /* Brand */
  --accent:   #c4a45a;   /* warm brass — the one accent colour (on dark surfaces, fills, focus rings) */
  --accent-deep: #8a6b2e; /* brass that passes WCAG AA (4.97:1) — for brass TEXT/icons on light surfaces */
  --ink:      #0a0a0a;   /* near-black — primary buttons, headings, headline numbers */

  /* Dark hero gradient */
  --hero-1:   #0d1117;
  --hero-2:   #161d29;
  --hero-3:   #1e2a3d;

  /* Surfaces & lines */
  --bg:       #f4f6f9;   /* cool graphite paper (Graphite direction) */
  --card:     #ffffff;
  --border:   #d9e0e9;
  --border-h: #b0bac8;
  --line:     #eef2f7;   /* hairline dividers inside cards/tables */

  /* Text */
  --text:     #0a0a0a;
  --sub:      #4a5568;
  --muted:    #64748b;   /* slate — labels, secondary text (darkened to meet WCAG AA on white) */
  --faint:    #7c899b;   /* tertiary — counts, timestamps */
  --slate:    #334155;   /* informational KPI accent — cool neutral, never a health signal (10.35:1) */

  /* State (cost/health signals — the ONLY place saturated colour is used)
     RULE: --x is for fills, dots and borders; --x-ink is for TEXT (the bare
     values fail WCAG AA as text on white — --amber is 3.18:1). Never invent
     a darker hex by hand; that is what the -ink tokens are for. */
  --good:     #059669;  --good-bg:  #ecfdf5;  --good-ink:  #047857;
  --amber:    #d97706;  --amber-bg: #fffbeb;  --amber-ink: #b45309;
  --crit:     #dc2626;  --crit-bg:  #fef2f2;  --crit-ink:  #b91c1c;

  /* Shape */
  --radius:   12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  /* Elevation (promoted from the dashboard's 2-layer card shadow → all cards match) */
  --shadow-1: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.05);
  --shadow-2: 0 4px 14px rgba(15,23,42,0.10);

  /* Type scale — ONE size per role (was chosen per-card across 7 pages) */
  --fs-hero:  34px;
  --fs-title: 22px;
  --fs-kpi:   20px;
  --fs-body:  14px;
  --fs-label: 11px;
  --fs-micro: 10px;

  /* Space scale — reference these instead of ad-hoc px values */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Top bar header ─────────────────────────────────────────────────────── */
header {
  background: var(--ink); color: #fff;
  padding: 0 40px; height: 58px;
  display: flex; align-items: center; gap: 20px;
  position: sticky; top: 0; z-index: 100;
}
.brand { font-size: 17px; font-weight: 800; letter-spacing: 5px; text-transform: uppercase; flex-shrink: 0; cursor: pointer; }
.header-divider { width: 1px; height: 20px; background: #333; flex-shrink: 0; }
.brand-sub { font-size: 11px; color: #98a2b0; letter-spacing: 0.3px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
/* Header action buttons (.home-link) and the presentation toggle share ONE size
   spec — 30px tall, 8px radius, 1px #444 border — so they read as a matched set
   in the header, not two mismatched widgets. */
.home-link {
  margin-left: auto; height: 30px; display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 600; color: #aaa; text-decoration: none;
  padding: 0 14px; border: 1px solid #444; border-radius: 8px;
  letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.15s; white-space: nowrap;
}
.header-actions .home-link { margin-left: 0; }
.home-link:hover { color: #fff; border-color: #888; }
.refresh-btn {
  background: transparent; border: 1px solid #444; height: 30px; padding: 0 9px; font-size: 14px;
  display: inline-flex; align-items: center;
  cursor: pointer; color: #666; line-height: 1; border-radius: 8px; transition: all 0.15s;
}
.refresh-btn:hover { border-color: #888; color: #fff; }

/* ── Tab bar (sits directly under header) ───────────────────────────────── */
.tab-bar { background: var(--ink); border-top: 1px solid #1f1f1f; display: flex; padding: 0 40px; gap: 2px; overflow-x: auto; }
.tab-btn { padding: 10px 18px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: color 0.15s; white-space: nowrap; letter-spacing: 0.3px; }
.tab-btn:hover { color: rgba(255,255,255,0.75); }
.tab-btn.active { color: #fff; border-bottom-color: #fff; }

/* ── Hero band (brass eyebrow + accent + title) ─────────────────────────── */
.hero {
  position: relative; color: #fff; padding: 22px 40px 28px; overflow: hidden;
  /* Photo hero: drop a file at /static/hero.jpg and it appears under the
     gradient overlay automatically; with no file the bottom gradient shows. */
  background:
    linear-gradient(135deg, rgba(13,17,23,0.90) 0%, rgba(22,29,41,0.82) 50%, rgba(30,42,61,0.72) 100%),
    url('/static/hero.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--hero-1) 0%, var(--hero-2) 50%, var(--hero-3) 100%);
}
/* Quiet brass ambience on every hero (was only on home; no /static/hero.jpg → flat gradient otherwise) */
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(ellipse at 20% 30%, rgba(196,164,90,0.08) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 50%); }
.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.hero-accent { width: 40px; height: 2px; background: var(--accent); border-radius: 1px; margin: 10px 0; }
.hero-title { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.hero-title .zh { font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.7); margin-left: 10px; letter-spacing: 0; }
.hero-subtitle { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ── Form controls ──────────────────────────────────────────────────────── */
select { padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: #f8fafc; color: var(--ink); cursor: pointer; }
select:focus { outline: none; border-color: var(--ink); background: #fff; }
label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 5px; }
label .zh { font-weight: 700; color: var(--muted); text-transform: none; letter-spacing: 0; }
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }
input[type=number], input[type=date], input[type=text], textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--ink); background: #f8fafc; font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}
input:focus, textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
textarea { resize: none; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.load-btn { padding: 8px 18px; background: var(--ink); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: background 0.15s, transform 0.05s; }
.save-btn { padding: 12px 32px; background: var(--ink); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: background 0.15s, transform 0.05s; }
.load-btn:hover, .save-btn:hover { background: #252d3a; }
.load-btn:active, .save-btn:active, .clear-btn:active { transform: translateY(1px); }
.load-btn:disabled, .save-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.clear-btn { background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 12px; cursor: pointer; color: var(--muted); font-weight: 500; transition: all 0.15s; }
.clear-btn:hover { background: var(--bg); color: var(--ink); border-color: var(--border-h); }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 8px); background: var(--ink); color: #fff; padding: 11px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; pointer-events: none; z-index: 999; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── Keyboard focus ─────────────────────────────────────────────────────────
   Restores a visible focus ring. The form controls above set outline:none and
   signal focus only via border colour; buttons/links/tabs had NO focus state at
   all (WCAG 2.4.7). A brass :focus-visible ring shows only for keyboard users,
   so mouse clicks stay clean. */
a:focus-visible, button:focus-visible, .tab-btn:focus-visible,
.home-link:focus-visible, .refresh-btn:focus-visible,
.load-btn:focus-visible, .save-btn:focus-visible, .clear-btn:focus-visible,
.present-opt:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm);
}
/* Form controls sit on white. Focus = the border darkens to --ink (from the
   :focus rule) PLUS a soft neutral halo — subtle and functional, not a hard
   detached ring or a decorative brass glow. Accessible via the clear dark-border
   change. (Header buttons/links above keep the brass ring — they sit on the
   black bar, where dark wouldn't show.) */
select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: none; box-shadow: 0 0 0 3px rgba(10,10,10,0.12);
}

/* ── KPI card + state tint (colour == health, never decoration) ─────────── */
.kpi { background: var(--card); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-1); border-top: 3px solid transparent; }
.kpi.revenue { border-color: var(--ink); }     /* the single headline metric = ink */
/* Informational cards distinguish by position + label + weight, NOT by hue.
   All non-health accents are ONE slate — saturated colour stays reserved for
   health (state-good/amber/crit). Killed the old indigo/purple/cyan. */
.kpi.cogs,
.kpi.labor,
.kpi.prime,
.kpi.vip     { border-color: var(--slate); }
.kpi-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px; display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.kpi-label b { font-style: normal; }
.kpi-label i { font-style: normal; font-size: 11px; font-weight: 600; color: var(--faint); letter-spacing: 0; text-transform: none; }
.kpi-value { font-size: 20px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.1; }
.kpi-sub { font-size: 12px; color: var(--muted); margin-top: 4px; font-variant-numeric: tabular-nums; }
/* State: a "bad" card tints its whole surface. good/amber/crit generalise the
   P&L's single .over (red) state so any page can show a health signal. */
.kpi.state-good  { border-color: var(--good)  !important; background: var(--good-bg); }
.kpi.state-amber { border-color: var(--amber) !important; background: var(--amber-bg); }
.kpi.state-crit,
.kpi.over        { border-color: var(--crit)  !important; background: var(--crit-bg); }
.kpi.state-good  .kpi-value { color: var(--good); }
.kpi.state-amber .kpi-value { color: var(--amber); }
.kpi.state-crit  .kpi-value,
.kpi.over        .kpi-value { color: var(--crit); }

/* ── Presentation mode ──────────────────────────────────────────────────────
   Lets the system be demoed to people outside the business (consulting clients,
   peers) without exposing real figures. The toggle control + this blur are the
   ONLY moving parts; the injected control markup + persistence live in the
   shared /static/baia_present.js include (linked on every baia.css page).

   Blur is VISUAL ONLY — a CSS filter on elements tagged data-sensitive. The
   underlying values are never touched, so toggling back is instant and values
   still exist in the DOM (fine for over-the-shoulder presenting). Mode lives in
   [data-present] on <html>:
     off      → nothing blurred
     cash     → data-sensitive="cash"  (cash balance, cashflow, VIP/voucher o/s)
     present  → every absolute yuan: data-sensitive cash + total + lineitem
   Percentages, ratios, targets, cost-health colours, covers, average check,
   dates and labels are never tagged, so structure stays readable throughout. */
html[data-present="cash"]    [data-sensitive="cash"],
html[data-present="present"] [data-sensitive] {
  filter: blur(7px);
  -webkit-filter: blur(7px);
  transition: filter 0.12s ease;
  user-select: none; -webkit-user-select: none;
  cursor: default;
}

/* The 3-state control — sits in the dark header (or hero) next to the other
   header actions. Selected option goes brass; the whole control gains a brass
   border while any figures are hidden, as an at-a-glance "protection on" cue. */
.present-toggle {
  display: inline-flex; align-items: center; gap: 0; flex-shrink: 0; height: 30px;
  background: rgba(255,255,255,0.05); border: 1px solid #444; border-radius: 8px;
  padding: 0 3px; transition: border-color 0.15s;
}
.present-toggle[data-state="cash"],
.present-toggle[data-state="present"] { border-color: var(--accent); }
.present-ico { font-size: 12px; line-height: 1; padding: 0 5px 0 6px; color: #8898aa; flex-shrink: 0; }
.present-toggle[data-state="cash"] .present-ico,
.present-toggle[data-state="present"] .present-ico { color: var(--accent); }
.present-opt {
  background: none; border: none; cursor: pointer; white-space: nowrap;
  color: #9aa4b2; font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
  padding: 8px 9px; border-radius: 5px; line-height: 1; transition: all 0.12s;
}
.present-opt:hover { color: #fff; }
.present-opt.active { background: var(--accent); color: #1a1a1a; }
.present-opt .zh { margin-left: 3px; font-weight: 500; opacity: 0.85; letter-spacing: 0; }
/* Headerless pages (the hub): the JS pins the control to the hero's top-right. */
.present-toggle.present-floating { position: absolute; top: 4px; right: 0; z-index: 6; }

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  /* On phones the toggle stays in its top-right cluster (header / hero-actions),
     compacted with the Chinese sub-labels hidden — leaving the bottom-right
     corner free for the Bea assistant bubble. */
  .present-opt { padding: 5px 8px; font-size: 10px; letter-spacing: 0.2px; }
  .present-opt .zh { display: none; }
  .present-ico { padding: 0 3px 0 5px; font-size: 11px; }
  /* On phones the sub-title + divider would crowd the action buttons off-screen —
     hide them (the page title still shows in the hero below) and compact the
     buttons so multi-button headers (Home + Sign-out, or 目录 + 主页 + EN toggle)
     stay on one line. The .header-actions rules outrank pages' own button CSS. */
  header { padding: 0 12px; gap: 8px; }
  .brand { font-size: 15px; letter-spacing: 3px; }
  .brand-sub, .header-divider { display: none; }
  .header-actions { gap: 6px; }
  .home-link { padding: 5px 8px; letter-spacing: 0.3px; font-size: 9.5px; }
  .header-actions .lang-toggle,
  .header-actions .link-btn { padding: 5px 8px; min-width: 0; font-size: 9.5px; letter-spacing: 0.3px; }
  .tab-bar { padding: 0 12px; }
  .hero { padding: 28px 20px 24px; }
  .hero-title { font-size: 28px; }
}

/* ============================================================================
   COMPONENT LIBRARY (Tier 1) — build once, adopt on every page.
   Goal: read like commercial software, not a self-build — consistent surfaces,
   one table, real loading/empty/error states, subtle depth. NAMESPACED with a
   `baia-` prefix so adding them here can never restyle a page's existing
   .card/.skeleton/.empty-state markup (those names are already in use). Pages
   opt in by switching a class during migration. */

/* KPI: subtle depth + lift on hover — the small thing that reads as "polished".
   Applies to every existing .kpi card app-wide (additive, no layout shift). */
.kpi { transition: box-shadow 0.15s ease, transform 0.15s ease; }
.kpi:hover { box-shadow: var(--shadow-2); transform: translateY(-1px); }

/* One shared surface (retire per-page card forks onto this during migration) */
/* ── Modal — PROMOTED from cashflow.html (2026-08-18) ──────────────────────
   The app's standard input pattern lived in exactly one page. A second page
   using it rendered the dialog inline at the bottom of the document, because
   `.modal-bg{display:none}` did not exist. Same fix, same reason as .card.
   `--white` is cashflow-local; the token here is `--card`. */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  display: none; align-items: center; justify-content: center; z-index: 100;
}
.modal-bg.show { display: flex; }
.modal {
  background: var(--card); border-radius: 12px; padding: 28px;
  width: 92%; max-width: 460px; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.modal label {
  display: block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.10em; color: var(--muted); margin: 14px 0 6px;
}
.modal input, .modal select, .modal textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 7px; font-size: 14px; font-family: inherit; background: var(--bg);
}
.modal textarea { min-height: 60px; resize: vertical; }
.modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 18px; }
/* Base button — promoted with the modal. `button.secondary` alone only sets
   colours; without this the primary action rendered as raw OS chrome (grey,
   3D border) inside an otherwise finished dialog. */
button, .btn {
  padding: 10px 18px; background: var(--ink); color: #fff;
  border: none; border-radius: 7px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; min-height: 38px;
}
button:hover, .btn:hover { background: #2a2a2a; }
button:disabled { opacity: .45; cursor: not-allowed; }
button.secondary { background: var(--card); color: var(--text); border: 1px solid var(--border); }
button.secondary:hover { background: var(--line); }

/* ── .card / .section-head — PROMOTED from page-local CSS (2026-08-18) ──────
   Both were re-declared independently in cashflow / reconcile / inventory /
   reimbursements / report / pl_history, with values already drifting apart.
   A new page (/kpi) used them assuming they lived here, they silently no-op'd,
   and the page rendered with no card surfaces at all. That is exactly the drift
   this file exists to prevent, so they now live here.
   Page-local copies still win (pages link this file BEFORE their own <style>),
   so promoting these changes nothing on existing pages — delete the forks as
   those pages get touched. */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.section-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 12px; padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.section-head-cn { font-size: 13px; color: var(--muted); font-weight: 500; }
.section-head-en {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--text);
}

.baia-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  padding: var(--s4) var(--s5);
}

/* Hero: compact variant for data-entry pages (title dials down) */
.hero.hero--compact { padding: var(--s4) 40px var(--s4); }
.hero.hero--compact .hero-title { font-size: var(--fs-title); }

/* ── One shared data table (the bar-admin / P&L F&B look, systematised) ──────
   Always wrap in <div class="baia-table-wrap"> so wide tables scroll inside
   their own box and never push the page body sideways on mobile. */
.baia-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.baia-table { width: 100%; border-collapse: collapse; font-size: var(--fs-body); background: var(--card); }
.baia-table thead th {
  text-align: left; font-size: var(--fs-label); font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em; padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.baia-table tbody td { padding: var(--s3) var(--s4); border-bottom: 1px solid var(--line); color: var(--text); }
.baia-table tbody tr:last-child td { border-bottom: none; }
.baia-table tbody tr:hover td { background: var(--bg); }
.baia-table th.num, .baia-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.baia-table td.total { font-weight: 700; color: var(--ink); }

/* Pill / tag */
.baia-pill {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px 10px;
  border-radius: var(--radius-pill); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 0.03em; background: var(--line); color: var(--sub);
}
.baia-pill.good  { background: var(--good-bg);  color: var(--good-ink); }
.baia-pill.amber { background: var(--amber-bg); color: var(--amber-ink); }
.baia-pill.crit  { background: var(--crit-bg);  color: var(--crit-ink); }

/* ── States: loading / empty / error (every data view should degrade well) ── */
.baia-skeleton {
  background: linear-gradient(90deg, #eef1f5 25%, #e2e7ee 37%, #eef1f5 63%);
  background-size: 400% 100%; animation: baia-shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm); min-height: 14px;
}
@keyframes baia-shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.baia-empty, .baia-error { text-align: center; padding: var(--s7) var(--s5); color: var(--muted); }
.baia-empty .es-title, .baia-error .es-title {
  font-size: var(--fs-body); font-weight: 700; color: var(--sub); margin-bottom: var(--s2);
}
.baia-empty .es-sub, .baia-error .es-sub { font-size: 13px; color: var(--faint); }
.baia-error .es-title { color: var(--crit); }

/* ── Signature details ──────────────────────────────────────────────────── */
::selection { background: rgba(196,164,90,0.30); }
.baia-table-wrap, .tab-bar { scrollbar-width: thin; scrollbar-color: var(--border-h) transparent; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* One section-label voice — adopt on pages as they're touched */
.baia-section-title { font-size: var(--fs-label); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--s3); }
