/* aiat-barrierefrei-engine dashboard styles — vendored (air-gapped, no CDN).
   WCAG 2.1 AA: AA-contrast tokens (documented inline), ≥48px targets, icon+text status,
   reduced-motion safe. The engine's own UI is the on-brand bar for an a11y-remediation tool. */
:root {
  --fg: #1a1a1a;        /* ~16:1 on white */
  --muted: #595959;     /* 7:1 on white  */
  --bg: #ffffff;
  --border: #c4c4c4;
  --accent: #0b5fb0;    /* link/focus — 5.3:1 on white */
  --accent-fg: #ffffff;
  --pass-bg: #d8f5d8; --pass-fg: #0b6b1f;  /* 5.2:1 */
  --fail-bg: #fbe0e0; --fail-fg: #a01818;  /* 6.0:1 */
  --warn-bg: #fdf0cd; --warn-fg: #6b4e00;  /* 6.4:1 — judge findings / review badges */
}
* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 760px; margin: 0 auto; padding: 2rem 1rem 4rem;
  color: var(--fg); background: var(--bg); line-height: 1.5;
}
h1 { font-size: 1.5rem; margin: 0 0 .25rem; }
h2 { font-size: 1.2rem; } h3 { font-size: 1rem; }
.muted { color: var(--muted); font-size: .9rem; }
a.link { color: var(--accent); }
a.link:hover { text-decoration: none; }

/* Skip link — first focusable element (WCAG 2.4.1) */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--fg); color: var(--accent-fg);
  padding: .5rem .9rem; border-radius: 0 0 .4rem 0; z-index: 10;
}
.skip-link:focus { left: 0; }

/* Visible focus indicator on every interactive element (WCAG 2.4.7) */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px;
}
/* Result heading / alert receive focus after swap (tabindex=-1) — keep a visible ring. */
[data-result-focus]:focus-visible, [data-result-focus]:focus {
  outline: 3px solid var(--accent); outline-offset: 4px;
}

.card { border: 1px solid var(--border); border-radius: .6rem; padding: 1.25rem; margin-top: 1.25rem; }

label { display: block; font-weight: 600; margin-bottom: .4rem; }
input[type="file"], input[type="url"] {
  display: block; width: 100%; padding: .6rem; min-height: 48px;
  border: 1px solid var(--border); border-radius: .4rem; background: #fff;
}
.help { margin: .4rem 0 1rem; }
button {
  min-height: 48px; min-width: 48px; padding: .6rem 1.2rem;
  border: 0; border-radius: .4rem; background: var(--fg); color: var(--accent-fg);
  font-size: 1rem; font-weight: 600; cursor: pointer;
}
button:hover { background: #000; }

/* --- (a) Upload: fieldset groups the mutually-exclusive file/URL inputs --- */
.upload-fieldset { border: 1px solid var(--border); border-radius: .6rem; padding: 1rem 1.25rem; margin: 0; }
.upload-fieldset legend { font-weight: 600; padding: 0 .4rem; }
.upload-or { text-align: center; margin: 1rem 0; font-weight: 600; }

/* --- (a2) Task selector — same card/fieldset look as .upload-fieldset, native radios.
   Each option is a 48px-min tappable row; selection cue is border+bg (NOT colour alone,
   WCAG 1.4.1) plus the checked radio dot itself. --- */
.task-fieldset { border: 1px solid var(--border); border-radius: .6rem;
                 padding: 1rem 1.25rem; margin: 1.25rem 0 0; }
.task-fieldset legend { font-weight: 600; padding: 0 .4rem; }

.task-option { display: flex; align-items: flex-start; gap: .6rem;
               border: 1px solid var(--border); border-radius: .5rem;
               padding: .75rem; margin: 0 0 .6rem; background: #fff; }
.task-option:last-of-type { margin-bottom: .75rem; }
/* Native radio kept large enough to comfortably hit; row stays ≥48px tall. */
.task-option input[type="radio"] { width: 1.3rem; height: 1.3rem; margin: .1rem 0 0;
                                   flex: 0 0 auto; accent-color: var(--accent); cursor: pointer; }
/* Whole label clickable; reset the global label block/weight inside the row. */
.task-option label { display: block; margin: 0; font-weight: 600;
                     min-height: 1.5rem; cursor: pointer; }
.task-option__desc { display: block; font-weight: 400; margin-top: .15rem; }
/* Selected state: border + background, in addition to the radio dot (colour-not-alone). */
.task-option:has(input[type="radio"]:checked) { border-color: var(--accent); background: #eef4fb; }
/* Visible focus ring on the whole row when the native radio is focused. */
.task-option:has(input[type="radio"]:focus-visible) { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Dropzone is a visual wrapper; the native input inside it stays the real, focusable control. */
.dropzone { position: relative; border: 2px dashed var(--border); border-radius: .5rem;
            padding: 1rem; background: #fff; }
.dropzone input[type="file"] { min-height: 48px; }
.dropzone__hint { margin: .5rem 0 0; font-size: .9rem; color: var(--muted); }
/* dragover feedback uses border + bg, NOT colour alone (WCAG 1.4.1). */
.dropzone.is-dragover { border-color: var(--accent); background: #eef4fb; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
            overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.badge { display: inline-flex; align-items: center; gap: .4rem;
         padding: .3rem .7rem; border-radius: .4rem; font-weight: 700; margin: 0 0 1rem; }
.badge--pass { background: var(--pass-bg); color: var(--pass-fg); }
.badge--fail { background: var(--fail-bg); color: var(--fail-fg); }
.badge--warn { background: var(--warn-bg); color: var(--warn-fg); }
.badge--neutral { background: #eef1f4; color: var(--muted); border: 1px solid var(--border); }
.badge__icon { font-size: 1.1em; }

/* Before/after remediation panel: two stacked columns on mobile, side-by-side ≥ 32rem. */
.ba { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 0 0 1rem; }
.ba__col { border: 1px solid var(--border); border-radius: .5rem; padding: 1rem; }
.ba__label { margin: 0 0 .5rem; font-size: .85rem; font-weight: 700;
             text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
.ba__col .badge { margin: 0 0 .5rem; }
.ba__stat { margin: 0; font-variant-numeric: tabular-nums; }
.ba__col--after.ba__col--pass { border: 2px solid var(--pass-fg); background: var(--pass-bg); }
.ba__arrow { display: none; }
@media (min-width: 32rem) {
  .ba { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .ba__arrow { display: block; text-align: center; font-size: 1.4rem;
               font-weight: 700; color: var(--muted); }
}

/* Download CTA: an <a> styled as a primary button (navigation to a resource). */
.btn-download {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 48px; min-width: 48px; padding: .7rem 1.2rem;
  border-radius: .4rem; background: var(--accent); color: var(--accent-fg);
  font-size: 1rem; font-weight: 700; text-decoration: none;
}
.btn-download:hover { background: #094e91; text-decoration: none; }
.result__download-pdf { margin: 1rem 0 .5rem; }

.mode { display: inline-block; padding: .15rem .5rem; border-radius: .3rem;
        border: 1px solid var(--border); font-weight: 600; font-size: .85rem; }

.result__summary { display: grid; grid-template-columns: 1fr auto; gap: .15rem .75rem; margin: 0 0 1rem; }
.result__row { display: contents; }
.result__summary dt { color: var(--muted); }
.result__summary dd { margin: 0; font-variant-numeric: tabular-nums; text-align: right; }

.rules { list-style: none; padding: 0; margin: .5rem 0 0; }
.rule { border-top: 1px solid var(--border); padding: .6rem 0; }
.rule__clause { margin: 0 0 .2rem; font-weight: 600; }
.rule__desc { margin: 0 0 .2rem; }
.rule__pages { margin: 0; }

/* (4) OCR degrade / rate-limit note — non-colour: icon + "Hinweis" + left border. */
.ocr-note { display: flex; gap: .5rem; align-items: flex-start;
            border: 1px solid var(--border); border-left-width: 4px; border-left-color: var(--accent);
            border-radius: .4rem; padding: .75rem 1rem; margin: 0 0 1rem; background: #eef4fb; }
.ocr-note__icon { font-size: 1.2em; line-height: 1.4; }
.ocr-note p { margin: 0; }

/* --- (b) HTMX busy indicator: hidden by default, shown only while in flight. --- */
#busy { display: none; }
#busy.htmx-request { display: block; }
.spinner { display: inline-block; width: 1em; height: 1em; vertical-align: -.15em;
           border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%;
           animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- (d) BYOK / Admin key inputs --- */
.cost-note { display: flex; gap: .5rem; align-items: flex-start;
             border: 1px solid var(--fail-fg); border-left-width: 4px; border-radius: .4rem;
             padding: .75rem 1rem; margin: 0 0 1.25rem; background: #fff7f3; }
.cost-note__icon { font-size: 1.2em; line-height: 1.4; }
.cost-note p { margin: 0; }

.key-group { margin: 0 0 1.25rem; }
.key-field { display: flex; gap: .5rem; align-items: stretch; }
.key-field input { flex: 1; min-height: 48px; padding: .6rem;
                   border: 1px solid var(--border); border-radius: .4rem; font-family: monospace; }
/* 48×48 minimum target (WCAG 2.5.8). */
.key-toggle { min-height: 48px; min-width: 48px; display: inline-flex; gap: .35rem;
              align-items: center; padding: .5rem .8rem; border: 1px solid var(--border);
              border-radius: .4rem; background: #fff; color: var(--fg); cursor: pointer; }
.key-toggle:hover { background: #f2f2f2; }
.key-toggle[aria-pressed="true"] { background: #eef4fb; border-color: var(--accent); }

/* --- (e) Error fragment --- */
.error-text { color: var(--fail-fg); font-weight: 600; margin: .4rem 0 0; }
[aria-invalid="true"] { outline: 2px solid var(--fail-fg); outline-offset: 1px; }

/* --- (f) Async-job progress (#67/#6) — self-polling _queued.html fragment. --- */
.progress { width: 100%; height: .6rem; margin: .75rem 0; border: 1px solid var(--border);
            border-radius: .4rem; background: #eef1f4; overflow: hidden; }
.progress__bar { height: 100%; background: var(--accent); transition: width .4s ease; }

/* --- Deep Session O: Accessibility scorecard + dual-gate verdict (ADR-007).
   ZERO new colour tokens — reuses --pass/--fail/--accent/--muted. Status is conveyed by
   icon + text + shape, never colour alone (WCAG 1.4.1). Reduced-motion safe (meters use
   the global transition kill below). Responsive 375 / 768 / 1280. --- */

/* Dual-gate verdict block. Left-border shape cue is in ADDITION to the badge icon + word,
   so the three states are distinguishable without colour. */
.scorecard__verdict { border: 1px solid var(--border); border-left-width: 4px;
                      border-radius: .5rem; padding: 1rem 1.25rem; margin: 1.25rem 0 0; }
.scorecard__verdict .result__subheading { margin-top: 0; }
.scorecard__verdict--pass    { border-left-color: var(--pass-fg); background: var(--pass-bg); }
.scorecard__verdict--fail    { border-left-color: var(--fail-fg); background: var(--fail-bg); }
.scorecard__verdict--neutral { border-left-color: var(--muted);   background: #eef1f4; }
.scorecard__verdict-badge { font-size: 1.05rem; margin: 0 0 .5rem; }
.scorecard__verdict-reason { margin: 0 0 .5rem; font-weight: 600; }
.scorecard__verdict-note { margin: 0; }

/* Scorecard card. */
.scorecard { border: 1px solid var(--border); border-radius: .6rem;
             padding: 1.25rem; margin: 1.25rem 0 0; }
.scorecard .result__subheading { margin-top: 0; }

/* Composite headline: big number + BITV band word. Wraps on narrow viewports. */
.scorecard__headline { display: flex; flex-wrap: wrap; align-items: baseline;
                       gap: .5rem 1rem; margin: 0 0 .5rem; }
.scorecard__composite { margin: 0; line-height: 1; font-variant-numeric: tabular-nums; }
.scorecard__composite-num { font-size: 2.6rem; font-weight: 800; }
.scorecard__composite-denom { font-size: 1.1rem; font-weight: 600; color: var(--muted); margin-left: .15rem; }
/* Band word: icon + text + colour. The icon (✓/△) + word carry meaning without colour. */
.scorecard__band { display: inline-flex; align-items: center; gap: .35rem;
                   margin: 0; font-weight: 700; font-size: 1.05rem; }
.scorecard__band-icon { font-size: 1.1em; }
.scorecard__band--high .scorecard__band-word { color: var(--pass-fg); }
.scorecard__band--ok   .scorecard__band-word { color: var(--pass-fg); }
.scorecard__band--low  .scorecard__band-word { color: var(--fail-fg); }

/* Composite meter — the fill width encodes the score; the number above is authoritative. */
.scorecard__meter { width: 100%; height: .7rem; margin: 0 0 .75rem;
                    border: 1px solid var(--border); border-radius: .4rem;
                    background: #eef1f4; overflow: hidden; }
.scorecard__meter-fill { display: block; height: 100%; background: var(--accent); }

/* Honest coverage + provisional warning + provenance. */
.scorecard__coverage { margin: 0 0 .35rem; font-variant-numeric: tabular-nums; font-weight: 600; }
.scorecard__provisional { display: flex; gap: .5rem; align-items: flex-start;
                          border: 1px solid var(--fail-fg); border-left-width: 4px;
                          border-radius: .4rem; padding: .6rem .9rem; margin: 0 0 .5rem;
                          background: #fff7f3; }
.scorecard__provisional-icon { font-size: 1.15em; line-height: 1.4; }
.scorecard__provenance { margin: 0 0 1rem; }

/* Per-dimension breakdown. */
.scorecard__dims-heading { font-size: .95rem; margin: 0 0 .5rem; }
.scorecard__dims { list-style: none; padding: 0; margin: 0; }
.scorecard__dim { border-top: 1px solid var(--border); padding: .65rem 0; }
/* Abstained rows are de-emphasised but never hidden — the "nicht geprüft" text is the signal. */
.scorecard__dim--abstained { opacity: .9; }
.scorecard__dim-head { display: flex; flex-wrap: wrap; align-items: baseline;
                       gap: .3rem .6rem; }
.scorecard__dim-name { font-weight: 600; flex: 1 1 12rem; }
.scorecard__dim-weight { font-variant-numeric: tabular-nums; }
/* Tier token: bordered pill carrying a German word (deterministisch / KI / manuell).
   Distinguished by text + border, not colour alone. */
.scorecard__tier { display: inline-block; padding: .1rem .5rem; border-radius: .3rem;
                   border: 1px solid var(--border); font-size: .8rem; font-weight: 700;
                   white-space: nowrap; }
.scorecard__tier--a { background: #eef4fb; border-color: var(--accent); color: var(--accent); }
.scorecard__tier--b { background: #fff; color: var(--fg); }
.scorecard__tier--c { background: #f2f2f2; color: var(--muted); }
.scorecard__dim-score { font-variant-numeric: tabular-nums; font-weight: 700;
                        margin-left: auto; white-space: nowrap; }
.scorecard__dim-score-denom { font-weight: 600; font-size: .85em; }
.scorecard__dim-na { font-weight: 600; color: var(--muted); }
.scorecard__dim-meter { width: 100%; height: .4rem; margin: .4rem 0 0;
                        border: 1px solid var(--border); border-radius: .3rem;
                        background: #eef1f4; overflow: hidden; }
.scorecard__dim-meter-fill { display: block; height: 100%; background: var(--accent); }
.scorecard__dim-label { margin: .35rem 0 0; font-weight: 600; }
.scorecard__dim-evidence { margin: .25rem 0 0; }

/* Full-degrade note when neither scorecard nor verdict was produced. */
.scorecard__unavailable { margin: 1.25rem 0 0; }

/* --- #162: KI-Sichtprüfung (visual-judge) — result block + per-job toggle.
   ZERO new colour tokens — reuses --pass/--warn/--muted/--border (all AA-documented in :root).
   Verdict state is conveyed by left-border SHAPE + badge icon + German word, never colour
   alone (WCAG 1.4.1). The badge itself (.badge--pass/--warn/--neutral) is set in the template;
   here we shape the surrounding section so the block reads as a distinct, on-brand panel.
   Responsive: no fixed widths; the section flexes to the result-panel container. --- */

/* Result-side panel. Left-border colour echoes the verdict; the icon + word in the badge
   carry the meaning without relying on the border colour. Same border-radius / spacing
   convention as .scorecard__verdict. */
.visual-judge { border: 1px solid var(--border); border-left-width: 4px;
                border-radius: .5rem; padding: 1rem 1.25rem; margin: 1.25rem 0 0; }
.visual-judge .result__subheading { margin-top: 0; }
/* ok → green (--pass), findings → warn (--warn), not_checked → neutral grey (--muted). */
.visual-judge--ok          { border-left-color: var(--pass-fg); background: var(--pass-bg); }
.visual-judge--findings    { border-left-color: var(--warn-fg); background: var(--warn-bg); }
.visual-judge--not_checked { border-left-color: var(--muted);   background: #eef1f4; }
/* The badge sits inside the panel; let it breathe without the global 1rem bottom margin. */
.visual-judge__badge { margin: 0 0 .5rem; }
/* Missing-element list — same reset/border-top rhythm as .rules / .scorecard__dims. */
.visual-judge__missing { list-style: none; padding: 0; margin: 0 0 .5rem; }
.visual-judge__missing-item { border-top: 1px solid var(--border); padding: .5rem 0;
                              font-weight: 600; }
.visual-judge__missing-item:first-child { border-top: 0; }
.visual-judge__confidence { margin: 0 0 .5rem; font-variant-numeric: tabular-nums; }
.visual-judge__reason { margin: 0 0 .5rem; }
.visual-judge__note { margin: 0; }

/* Per-job toggle (dashboard.html / batch.html) — same tappable-row look as .task-option.
   Checkbox kept large; whole row stays comfortably above the 48px target. */
.visual-judge-option { display: flex; align-items: flex-start; gap: .6rem;
                       border: 1px solid var(--border); border-radius: .5rem;
                       padding: .75rem; margin: 1.25rem 0 0; background: #fff; }
.visual-judge-option input[type="checkbox"] { width: 1.3rem; height: 1.3rem; margin: .1rem 0 0;
                                              flex: 0 0 auto; accent-color: var(--accent); cursor: pointer; }
.visual-judge-option label { display: block; margin: 0; font-weight: 600;
                             min-height: 1.5rem; cursor: pointer; }
.visual-judge-option__desc { display: block; font-weight: 400; margin-top: .15rem; }
/* Checked state: border + background (colour-not-alone — the native check carries the state). */
.visual-judge-option:has(input[type="checkbox"]:checked) { border-color: var(--accent); background: #eef4fb; }
.visual-judge-option:has(input[type="checkbox"]:focus-visible) { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Reduced motion: kill all animation/transition; spinner becomes a static ring. */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .spinner { border-top-color: var(--border); }
}

/* --- Batch / multi-file (#XX) — reuses existing colour tokens; ZERO new tokens. --- */

/* Multi-file dropzone shares .dropzone; widen the dashed area slightly for folder drop. */
.dropzone--multi { padding: 1.25rem; }

/* Status counts row — icon + German text per status (never colour-only, WCAG 1.4.1). */
.batch__counts { list-style: none; padding: 0; margin: 0 0 .75rem;
                 display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.batch__count { display: inline-flex; align-items: center; gap: .35rem;
                font-variant-numeric: tabular-nums; }
.batch__count-icon { font-size: 1.1em; }

.batch__throughput { margin: 0 0 .75rem; font-variant-numeric: tabular-nums; }

/* Bulk-download block. */
.batch__bulk { margin: 0 0 1.25rem; }
.batch__bulk .muted { margin: .4rem 0 0; }

/* Per-document list. */
.batch__list { list-style: none; padding: 0; margin: 0; }
.batch__item { border: 1px solid var(--border); border-radius: .5rem;
               padding: 1rem; margin: 0 0 .75rem; }
/* Non-colour status cue: error items carry a thicker accent-coloured left border in
   ADDITION to the ✕ icon + "Fehlgeschlagen" text + role="alert". */
.batch__item--error { border-left-width: 4px; border-left-color: var(--fail-fg); }
.batch__item--done.batch__item--done { border-left-width: 4px; }
.batch__filename { margin: 0 0 .5rem; word-break: break-word; }
.batch__rate { margin: 0 0 .5rem; font-variant-numeric: tabular-nums; }
.batch__item .badge { margin: 0 0 .5rem; }

/* Per-doc download row. */
.batch__downloads { display: flex; flex-wrap: wrap; align-items: center;
                    gap: .5rem 1rem; margin: .5rem 0 0; }

/* Compact download button — MUST keep the 48×48 minimum target (WCAG 2.5.8). */
.btn-download--sm { padding: .5rem .9rem; font-size: .95rem;
                    min-height: 48px; min-width: 48px; }

/* Disabled bulk-download: rendered as a non-interactive <span>. Non-colour cue —
   cursor:not-allowed + pointer-events:none + reduced opacity (aria-disabled on the
   element + an honest "available once a doc finishes" hint carry the real signal). */
.btn-download.is-disabled { background: var(--border); color: var(--muted);
                            cursor: not-allowed; pointer-events: none; opacity: .85; }

/* --- #149: "Vorlesen wie ein Screenreader" page — reuses existing tokens; ZERO new tokens.
   The UI of an a11y tool must itself be exemplary WCAG-2.1-AA: status by icon + text + shape,
   ≥48px targets, visible focus, reduced-motion safe (covered by the global kill above). --- */

/* Reading-order divergence warning reuses .cost-note shape (icon + bordered panel). The ⚠ icon +
   the word "Warnung" carry the signal; the left border reinforces it (never colour-only). */
.spoken-view__order-warning { align-items: flex-start; }
.spoken-view__order-warning-title { margin: 0 0 .35rem; }
.spoken-view__order-ok { margin: 0 0 1.25rem; }

/* Audio / copy controls row — buttons keep the 48×48 minimum target (WCAG 2.5.8). */
.spoken-view__audio-controls { display: flex; flex-wrap: wrap; gap: .75rem; margin: .75rem 0; }
.spoken-view__play-btn, .spoken-view__copy-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 48px; min-width: 48px; padding: .6rem 1.2rem;
  border: 0; border-radius: .4rem; background: var(--accent); color: var(--accent-fg);
  font-size: 1rem; font-weight: 700; cursor: pointer;
}
.spoken-view__play-btn:hover, .spoken-view__copy-btn:hover { background: #094e91; }
/* Busy state during synth: native aria-busy cue + a non-colour "…" affordance via opacity. */
.spoken-view__play-btn[aria-busy="true"] { opacity: .8; cursor: progress; }
.spoken-view__play-icon, .spoken-view__copy-icon { font-size: 1.1em; }
/* Native audio element — full-width, native controls are the accessible core. */
.spoken-view__audio-el { display: block; width: 100%; margin: .5rem 0 0; }

/* Transcript list — the ORDER is meaningful, so it's an <ol>; rows have generous spacing. */
.spoken-view__list { list-style: none; padding: 0; margin: .5rem 0 0; counter-reset: seg; }
.spoken-view__segment { border-top: 1px solid var(--border); padding: .85rem 0; }
.spoken-view__segment:first-child { border-top: 0; }
/* Per-row meta: role badge + page + lang, wrapping on narrow viewports. */
.spoken-view__meta { display: flex; flex-wrap: wrap; align-items: center;
                     gap: .4rem .8rem; margin: 0 0 .35rem; }
.spoken-view__role { margin: 0; }
.spoken-view__role-word { font-weight: 700; }
.spoken-view__page, .spoken-view__lang { font-variant-numeric: tabular-nums; }
/* The spoken text — the row's primary content, full-contrast (--fg), comfortable measure. */
.spoken-view__text { margin: 0; }
