/*! AUTO-GENERATED — DO NOT EDIT HERE.
 * Vendored from civicos/packages/ui/src/primitives.css (@civicos/ui v0.3.5 @e97fc3a) on 2026-07-15.
 * Edit the source in the civicos repo and run `pnpm --filter @civicos/ui sync`.
 * App-specific styles belong in your own namespaced CSS, never in this file. */
/**
 * CivicOS primitives — Layer 1, the cross-product component set.
 *
 * Framework-neutral `.cvc-*` classes on plain HTML → usable from React, Rails ERB,
 * Jinja or vanilla JS. Consumes Layer 0 (tokens.css) only. This is the file that
 * gets vendored into the CMS and council apps alongside tokens.css.
 *
 * What lives here vs in an app: see README.md. Rule of thumb — if two products want
 * it to look the same, it's here; if it's specific to how one product works (the
 * portal's launcher tiles, the council meeting timeline), it stays in that app.
 */

/* ---- Top bar (the standard black brand bar; keeps the logo in one position
   across products). Apps fill their own brand + right-side content. ---- */
.cvc-topbar { height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; background: var(--cvc-color-text); color: #fff; }
.cvc-topbar__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #fff; }
.cvc-topbar__mark { width: 28px; height: 28px; display: block; flex: none; }
.cvc-topbar__name { font-weight: 700; letter-spacing: -0.01em; font-size: 1.1rem; color: inherit; }

/* ---- Account menu + dropdown (shared: portal + CMS) ----
   Opens on hover/focus-within (portal) OR when the dropdown carries .is-open
   (click-driven menus, e.g. the CMS). Simple menu items use .cvc-dropdown__item;
   a dropdown can also hold richer app content, which is not auto-styled as items. */
.cvc-usermenu { position: relative; display: flex; align-items: stretch; }
.cvc-userbtn {
  display: flex; align-items: center; gap: 9px; background: transparent; border: 0;
  cursor: pointer; font: inherit; font-size: 0.94rem; font-weight: 500; color: #f2f3f4;
  padding: 0 14px; transition: background 0.12s, color 0.12s;
}
.cvc-usermenu:hover .cvc-userbtn, .cvc-usermenu:focus-within .cvc-userbtn { background: rgba(255,255,255,0.08); color: #fff; }
.cvc-avatar { width: 28px; height: 28px; border-radius: 50%; flex: none; border: 1.5px solid #fff; background: transparent; display: grid; place-items: center; color: #fff; }
.cvc-avatar svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cvc-caret { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0.85; }
.cvc-dropdown {
  position: absolute; right: 0; top: 100%; min-width: 12rem;
  background: #15181c; border: 1px solid rgba(255,255,255,0.1); border-top: 0; border-radius: 0 0 3px 3px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.45); padding: 4px 0;
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.12s, transform 0.12s; z-index: 20;
}
.cvc-usermenu:hover .cvc-dropdown, .cvc-usermenu:focus-within .cvc-dropdown, .cvc-dropdown.is-open { opacity: 1; visibility: visible; transform: none; }
.cvc-dropdown__item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: transparent; border: 0; cursor: pointer; font: inherit; font-size: 0.9rem; font-weight: 500;
  color: #f2f3f4; text-decoration: none; padding: 9px 18px; transition: background 0.12s, color 0.12s;
}
.cvc-dropdown__item:hover, .cvc-dropdown__item:focus-visible { background: rgba(255,255,255,0.08); color: #fff; }
.cvc-dropdown form { margin: 0; }
.cvc-dropdown__item svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Buttons (GOV.UK-style solid bottom edge, in indigo) ---- */
.cvc-btn {
  font: inherit; font-weight: 600; font-size: 0.98rem; line-height: 1.1; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent; border-radius: 3px; padding: 11px 18px;
  background: var(--cvc-color-brand); color: var(--cvc-color-brand-contrast);
  text-decoration: none;
  box-shadow: 0 2px 0 #1a1170;
  transition: background 0.14s ease, box-shadow 0.1s ease, transform 0.06s ease, color 0.14s ease, border-color 0.14s ease;
}
/* Icons in buttons — sized to the text, line-style by default (matches the system's icons). */
.cvc-btn svg { width: 1.05em; height: 1.05em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cvc-btn:hover { background: #2f25c4; }
.cvc-btn:active { transform: translateY(2px); box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
.cvc-btn:disabled { opacity: 0.42; cursor: not-allowed; }
.cvc-btn--secondary { background: #e8eaf1; color: var(--cvc-color-text); box-shadow: 0 2px 0 #b2b8c6; }
.cvc-btn--secondary:hover { background: #dbdfea; }
/* Primary on a DARK surface (top bars, CTA bands): white button, ink text, grey edge. */
.cvc-btn--inverse { background: #ffffff; color: var(--cvc-color-text); box-shadow: 0 2px 0 #c2c7d0; }
.cvc-btn--inverse:hover { background: #eef0f6; }
.cvc-btn--ghost { background: transparent; color: var(--cvc-color-brand); box-shadow: none; padding-left: 6px; padding-right: 6px; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.cvc-btn--ghost:hover { color: var(--cvc-color-brand-dark); background: transparent; }
.cvc-btn--danger { background: var(--cvc-color-danger); color: #fff; box-shadow: 0 2px 0 #6e0d07; }
.cvc-btn--danger:hover { background: #9d1109; }
.cvc-btn--sm { padding: 7px 12px; font-size: 0.86rem; }
.cvc-btn--block { display: block; width: 100%; text-align: center; padding: 14px 22px; font-size: 1.02rem; }
.cvc-btn:focus-visible { outline: 3px solid transparent; background: var(--cvc-color-focus); color: var(--cvc-color-focus-ink); box-shadow: 0 2px 0 var(--cvc-color-focus-ink); text-decoration: none; }

/* ---- Panels / cards ---- */
.cvc-panel { background: var(--cvc-color-surface); border: 1px solid var(--cvc-color-border); padding: 20px 22px; }
.cvc-panel h2, .cvc-panel h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 12px; }
.cvc-panel p { margin: 0; color: var(--cvc-color-text-muted); font-size: 0.94rem; line-height: 1.55; }

/* ---- Tag chips (metadata: roles, permissions, categories — NOT status) ----
   Deliberately different from status pills: mono, bordered, squared, no dot. */
.cvc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--cvc-font-mono); font-size: 0.76rem; font-weight: 500;
  padding: 2px 8px; border-radius: var(--cvc-radius-sm);
  background: var(--cvc-color-muted); color: var(--cvc-color-text-muted);
  border: 1px solid var(--cvc-color-border-strong);
}
.cvc-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* ---- Status pills (live state of a thing — has a status dot) ---- */
.cvc-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 3px 10px; border-radius: 999px;
  background: var(--cvc-color-border); color: var(--cvc-color-text);
}
.cvc-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.cvc-pill--success { background: var(--cvc-color-success-soft); color: var(--cvc-color-success); }
.cvc-pill--warning { background: var(--cvc-color-warning-soft); color: var(--cvc-color-warning); }
.cvc-pill--danger  { background: var(--cvc-color-danger-soft);  color: var(--cvc-color-danger); }
.cvc-pill--brand   { background: var(--cvc-color-brand-soft);   color: var(--cvc-color-brand-dark); }
/* Cancelled: muted, dot becomes a hollow ring to read as "called off". */
.cvc-pill--cancelled { background: #eceef2; color: #6b7480; }
.cvc-pill--cancelled::before { background: transparent; border: 1.5px solid currentColor; width: 8px; height: 8px; }

/* ---- Form controls ----
   Editable fields always sit on --cvc-color-surface (white), never page ground
   (--cvc-color-bg / muted indigo). Soft brand tint is for focus rings and
   notices — not field fills. Dense UIs (modals, toolbars) use --sm. */
.cvc-field { display: grid; gap: 6px; }
.cvc-label { font-size: 0.86rem; font-weight: 600; color: var(--cvc-color-text); }
.cvc-input, .cvc-select, .cvc-textarea {
  font: inherit; font-size: 0.95rem; color: var(--cvc-color-text);
  background: var(--cvc-color-surface); border: 1px solid var(--cvc-color-border-strong);
  border-radius: var(--cvc-radius-sm); padding: 9px 12px; width: 100%;
  transition: border-color 0.14s, box-shadow 0.14s;
}
.cvc-input:focus, .cvc-select:focus, .cvc-textarea:focus { outline: none; border-color: var(--cvc-color-brand); box-shadow: 0 0 0 3px var(--cvc-color-brand-soft); }
.cvc-input:disabled, .cvc-select:disabled, .cvc-textarea:disabled {
  background: var(--cvc-color-muted); color: var(--cvc-color-text-muted); cursor: not-allowed;
}
.cvc-input--sm, .cvc-select--sm, .cvc-textarea--sm {
  font-size: 0.85rem; padding: 5px 8px;
}
/* Toolbar select matching .cvc-btn--secondary / .cvc-btn--sm (filters next to
   action buttons). Not a full-width form field — width hugs the selected option. */
.cvc-select--btn {
  width: auto;
  max-width: 100%;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.1;
  padding: 7px 28px 7px 12px;
  color: var(--cvc-color-text);
  background-color: #e8eaf1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%2315181C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  box-shadow: 0 2px 0 #b2b8c6;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 0.14s ease, box-shadow 0.1s ease, transform 0.06s ease, color 0.14s ease;
}
.cvc-select--btn:hover { background-color: #dbdfea; }
.cvc-select--btn:active { transform: translateY(2px); box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
.cvc-select--btn:focus { outline: none; border-color: transparent; box-shadow: 0 2px 0 #b2b8c6; }
.cvc-select--btn:focus-visible {
  outline: 3px solid transparent;
  background-color: var(--cvc-color-focus);
  color: var(--cvc-color-focus-ink);
  box-shadow: 0 2px 0 var(--cvc-color-focus-ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%2315181C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
}
.cvc-select--btn:disabled {
  opacity: 0.42; cursor: not-allowed; transform: none;
  background-color: #e8eaf1; color: var(--cvc-color-text);
}
.cvc-hint { font-size: 0.82rem; color: var(--cvc-color-text-muted); }
/* Read-only mirror of a textarea (Markdown preview, etc.): same chrome, no edit cue. */
.cvc-input-static {
  font: inherit; font-size: 0.95rem; color: var(--cvc-color-text);
  background: var(--cvc-color-surface); border: 1px solid var(--cvc-color-border);
  border-radius: var(--cvc-radius-sm); padding: 9px 12px; width: 100%;
  line-height: 1.5; box-sizing: border-box;
}
.cvc-input-static--sm { font-size: 0.85rem; padding: 5px 8px; }
.cvc-check {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--cvc-color-text); cursor: pointer; user-select: none;
}
.cvc-check input[type="checkbox"] {
  width: 15px; height: 15px; margin: 0; accent-color: var(--cvc-color-brand); cursor: pointer;
}

/* ---- Notices / alerts ---- */
.cvc-notice { border: 1px solid var(--cvc-color-border); border-left-width: 4px; padding: 12px 16px; background: var(--cvc-color-surface); font-size: 0.92rem; line-height: 1.5; }
.cvc-notice strong { font-weight: 700; }
.cvc-notice--success { border-left-color: var(--cvc-color-success); background: var(--cvc-color-success-soft); }
.cvc-notice--warning { border-left-color: var(--cvc-color-warning); background: var(--cvc-color-warning-soft); }
.cvc-notice--danger  { border-left-color: var(--cvc-color-danger);  background: var(--cvc-color-danger-soft); }
.cvc-notice--info    { border-left-color: var(--cvc-color-brand);   background: var(--cvc-color-brand-soft); }

/* ---- Context banner (full-bleed strip: viewing another version, preview mode)
   Distinct from .cvc-notice (in-flow card callout). Use for page/column chrome
   that must stay visible while the user reads a non-current document state. */
.cvc-banner {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid transparent;
  box-shadow: var(--cvc-shadow-sm);
  box-sizing: border-box;
}
.cvc-banner__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  box-sizing: border-box;
}
.cvc-banner__text {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: inherit;
}
.cvc-banner__text strong { font-weight: 700; }
.cvc-banner__link {
  color: var(--cvc-color-brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cvc-banner__link:hover { text-decoration: none; }
.cvc-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.cvc-banner__dismiss {
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.75;
}
.cvc-banner__dismiss:hover { opacity: 1; background: rgba(21, 24, 28, 0.08); }
.cvc-banner--warning {
  background: var(--cvc-color-warning-soft);
  border-bottom-color: color-mix(in srgb, var(--cvc-color-warning) 28%, #ffffff);
  border-left: 4px solid var(--cvc-color-warning);
  color: var(--cvc-color-warning);
}
.cvc-banner--warning .cvc-banner__dismiss:hover {
  background: color-mix(in srgb, var(--cvc-color-warning) 12%, transparent);
}
@media (max-width: 768px) {
  .cvc-banner__inner { padding: 10px 12px; align-items: flex-start; }
  .cvc-banner__text { font-size: 0.8125rem; }
}

/* ---- Hover tip (ink popover on hover/focus) ----
   Wrap a trigger (plain text, a <time>, or the optional .cvc-tip__i badge) and a
   .cvc-tip__pop. Opens on :hover / :focus / :focus-within — no JS required. */
.cvc-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  cursor: help;
  outline: none;
}
.cvc-tip__i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  opacity: 0.8;
}
.cvc-tip__pop {
  /* display:none when closed so the pop doesn't inflate a parent scrollHeight
     (visibility:hidden absolute boxes still do — that caused phantom vertical
     scrollbars on .cvc-table-scroll). */
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: max-content;
  max-width: 280px;
  padding: 8px 11px;
  background: var(--cvc-color-text);
  color: var(--cvc-color-surface);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
  white-space: normal;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(21, 24, 28, 0.28);
  pointer-events: none;
}
.cvc-tip:hover .cvc-tip__pop,
.cvc-tip:focus .cvc-tip__pop,
.cvc-tip:focus-within .cvc-tip__pop {
  display: block;
}

/* ---- Data table — ink header, hairline rows, on an ink-bordered wrapper ---- */
.cvc-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.cvc-table th, .cvc-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--cvc-color-border); vertical-align: middle; white-space: nowrap; }
.cvc-table thead th { background: var(--cvc-color-text); color: var(--cvc-color-surface); font-weight: 600; }
.cvc-table tbody tr:last-child td { border-bottom: none; }
.cvc-table tbody tr:hover { background: var(--cvc-color-muted); }
/* Bordered container for a .cvc-table (+ optional footer). The table scrolls
   horizontally inside .cvc-table-scroll so an attached footer stays put. */
.cvc-table-wrap { border: 1px solid var(--cvc-color-text); background: var(--cvc-color-surface); }
/* overflow-x alone makes overflow-y compute to auto (CSS overflow pairing),
   which shows a useless vertical scrollbar when a descendant (e.g. a tip pop)
   extends the scrollHeight. Pin y to hidden so only horizontal scroll appears. */
.cvc-table-scroll { overflow-x: auto; overflow-y: hidden; }
/* Footer bar attached inside the wrapper — row count on the left, pager on the right. */
.cvc-table-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 11px 16px; border-top: 1px solid var(--cvc-color-border); background: var(--cvc-color-muted); }
.cvc-table-foot__count { color: var(--cvc-color-text-muted); font-size: 0.86rem; }
.cvc-table-foot .cvc-pagination { margin-top: 0; }

/* ---- Pagination ---- */
.cvc-pagination { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; font-size: 0.9rem; }
.cvc-pagination__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.cvc-pagination__page, .cvc-pagination__step { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 11px; border: 1px solid var(--cvc-color-border-strong); background: var(--cvc-color-surface); color: var(--cvc-color-text); text-decoration: none; font-weight: 600; border-radius: 6px; }
.cvc-pagination__page:hover, .cvc-pagination__step:hover { background: var(--cvc-color-bg); }
.cvc-pagination__page.is-current { background: var(--cvc-color-brand); border-color: var(--cvc-color-brand); color: #fff; }
.cvc-pagination__step.is-disabled { opacity: 0.4; pointer-events: none; }
.cvc-pagination__gap { padding: 0 4px; color: var(--cvc-color-text-muted); }
.cvc-pagination__page:focus-visible, .cvc-pagination__step:focus-visible { outline: 3px solid #ffdd00; outline-offset: 1px; }

/* Mobile: each row collapses into a stacked card. Cells are labelled with their
   column name via `data-label="…"`; a cell with no data-label (e.g. the identity
   or an actions cell) just shows its content. The header row is kept for assistive
   tech but hidden visually. */
@media (max-width: 640px) {
  /* Header hidden visually but kept for assistive tech (cells are labelled via
     data-label below). */
  .cvc-table thead {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .cvc-table, .cvc-table tbody, .cvc-table tr, .cvc-table td {
    display: block; width: 100%; box-sizing: border-box;
  }
  .cvc-table tr { padding: 14px 16px; border-bottom: 1px solid var(--cvc-color-border); }
  .cvc-table tbody tr:last-child { border-bottom: none; }
  .cvc-table tbody tr:hover { background: transparent; }
  .cvc-table td { padding: 10px 0 0; border: 0; white-space: normal; text-align: left; }
  .cvc-table td:first-child { padding-top: 0; }
  .cvc-table td[data-label]::before {
    content: attr(data-label); display: block; margin-bottom: 5px;
    font-weight: 700; font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--cvc-color-text-muted);
  }
  /* Footer stacks: count above the pager. */
  .cvc-table-foot { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---- Eyebrow (small uppercase brand label above a heading) ---- */
.cvc-eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; font-weight: 700; color: var(--cvc-color-brand); margin: 0 0 12px; }

/* ---- Stat strip (metrics) ----
   Default: editorial row — big tabular numbers, hairline dividers, no box.
   --cells: a bordered dashboard grid. --display: big hero numbers, sentence labels. */
.cvc-stats { display: flex; flex-wrap: wrap; }
.cvc-stat { padding: 2px 28px; border-left: 1px solid var(--cvc-color-border-strong); }
.cvc-stat:first-child { padding-left: 0; border-left: 0; }
.cvc-stat__num { display: block; font-size: 2.1rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.cvc-stat__label { display: block; font-size: 0.76rem; color: var(--cvc-color-text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 8px; }
.cvc-stats--cells { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border: 1px solid var(--cvc-color-border); background: var(--cvc-color-surface); }
.cvc-stats--cells .cvc-stat { padding: 16px 20px; border-left: 1px solid var(--cvc-color-border); }
.cvc-stats--cells .cvc-stat:first-child { border-left: 0; padding-left: 20px; }
.cvc-stats--cells .cvc-stat__num { font-size: 1.7rem; }
.cvc-stats--cells .cvc-stat__label { text-transform: none; letter-spacing: 0; margin-top: 2px; font-size: 0.78rem; }
/* Display — big hero numbers, sentence-case labels, no dividers. Numbers stay ink. */
.cvc-stats--display { gap: 48px; }
.cvc-stats--display .cvc-stat { padding: 0; border-left: 0; }
.cvc-stats--display .cvc-stat__num { font-size: 3.2rem; letter-spacing: -0.03em; }
.cvc-stats--display .cvc-stat__label { text-transform: none; letter-spacing: 0; font-size: 0.95rem; margin-top: 10px; max-width: 22ch; line-height: 1.4; }

/* ---- Focus (GOV.UK-style yellow) for links and inputs.
   Buttons define their own focus above; app-specific components (e.g. tiles) add
   their own :focus-visible in the app stylesheet. ---- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--cvc-color-focus); outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
