/* JW Concierge — design system for a calm, high-legibility ops console.
 *
 * Layering: (1) tokens, (2) base elements, (3) layout, (4) components. Status
 * colour is chosen by SEMANTIC TONE (.badge--ok/info/warn/danger/neutral),
 * never by a raw status slug — the tone mapper in presentation.py decides which
 * tone a status gets. Legacy .badge-<slug> aliases are kept only so pages not
 * yet rebuilt don't unstyle mid-build (see the block near the end).
 */

/* ------------------------------------------------------------------ tokens */
:root {
  /* surfaces + ink */
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-sunk: #f1f3f6;
  --border: #dde1e7;
  --border-strong: #c5cbd4;
  --text: #1b2330;
  --text-muted: #5b6472;
  --text-subtle: #858d9b;

  /* accent (primary action) */
  --accent: #1f56c2;
  --accent-strong: #17429a;
  --accent-tint: #e9f0fc;
  --accent-ring: rgba(31, 86, 194, 0.35);

  /* destructive */
  --danger: #c53328;
  --danger-strong: #9c241b;
  --danger-tint: #fdece9;

  /* semantic tone palettes (badges, chips, banners) */
  --tone-ok-bg: #e7f5ec;
  --tone-ok-border: #bfe3cd;
  --tone-ok-text: #1f6b3a;
  --tone-info-bg: #e8f0fc;
  --tone-info-border: #c4d9f6;
  --tone-info-text: #1b4f9c;
  --tone-warn-bg: #fdf2da;
  --tone-warn-border: #f0dca6;
  --tone-warn-text: #855400;
  --tone-danger-bg: #fdecea;
  --tone-danger-border: #f4c4bf;
  --tone-danger-text: #a02419;
  --tone-neutral-bg: #eef0f3;
  --tone-neutral-border: #d8dce3;
  --tone-neutral-text: #59616f;

  /* spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;

  /* type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;

  /* radii + elevation */
  --radius-sm: 5px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 28, 45, 0.06);
  --shadow: 0 2px 8px rgba(20, 28, 45, 0.08);
}

* {
  box-sizing: border-box;
}

/* --------------------------------------------------------------- base */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-5);
}

h2 {
  font-size: var(--text-lg);
  font-weight: 650;
  letter-spacing: -0.005em;
  margin: 0 0 var(--space-3);
}

.muted {
  color: var(--text-muted);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

/* --------------------------------------------------------------- header + nav */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

/* Larger on the sign-in card, where it stands in for the page heading. */
.brand-logo--login {
  height: 44px;
  margin: 0 auto var(--space-4);
}

.nav-links {
  display: flex;
  gap: var(--space-1);
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 550;
}

.nav-links a:hover {
  background: var(--surface-sunk);
  color: var(--text);
  text-decoration: none;
}

/* The current page's nav link reads as "you are here" — a subtle tinted pill. */
.nav-links a.is-active {
  background: var(--accent-tint);
  color: var(--accent-strong);
}

.nav-links a.is-active:hover {
  background: var(--accent-tint);
  color: var(--accent-strong);
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--danger);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.site-user {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.user-email {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.logout-form {
  margin: 0;
}

.site-main {
  /* Full-width content: fill the viewport with comfortable page gutters that
   * line up with the header (both use --space-5), instead of a narrow centred
   * column that wastes the screen. */
  padding: var(--space-6) var(--space-5) var(--space-8);
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.btn:hover {
  text-decoration: none;
  background: var(--surface-sunk);
  border-color: var(--text-subtle);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-secondary {
  background: var(--surface);
}

/* Quiet, low-emphasis button for tertiary actions. */
.btn-subtle {
  background: transparent;
  border-color: transparent;
  color: var(--accent);
}

.btn-subtle:hover {
  background: var(--accent-tint);
  border-color: transparent;
}

/* Destructive — visibly dangerous. */
.btn-danger {
  background: var(--surface);
  border-color: var(--danger);
  color: var(--danger);
}

.btn-danger:hover {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.btn-sm {
  padding: 4px 10px;
  font-size: var(--text-xs);
}

/* --------------------------------------------------------------- page head */
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.breadcrumb {
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------- tables */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

th,
td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--surface-sunk);
  font-size: var(--text-xs);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: #f9fafc;
}

/* --------------------------------------------------------------- stat tiles */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: var(--space-4);
}

.stat-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat-tile .stat-value {
  /* Pin every tile's number to the accent so a linked tile (an <a>) and an
   * unlinked one (a <div>, which would otherwise show default text) read the
   * same — all blue, matching the original look. */
  color: var(--accent);
  font-size: var(--text-2xl);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.stat-tile .stat-label {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

a.stat-tile:hover {
  border-color: var(--accent);
  text-decoration: none;
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------- badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 650;
  line-height: 1.5;
  border: 1px solid transparent;
  white-space: nowrap;
}

.badge--ok {
  background: var(--tone-ok-bg);
  border-color: var(--tone-ok-border);
  color: var(--tone-ok-text);
}

.badge--info {
  background: var(--tone-info-bg);
  border-color: var(--tone-info-border);
  color: var(--tone-info-text);
}

.badge--warn {
  background: var(--tone-warn-bg);
  border-color: var(--tone-warn-border);
  color: var(--tone-warn-text);
}

.badge--danger {
  background: var(--tone-danger-bg);
  border-color: var(--tone-danger-border);
  color: var(--tone-danger-text);
}

.badge--neutral {
  background: var(--tone-neutral-bg);
  border-color: var(--tone-neutral-border);
  color: var(--tone-neutral-text);
}

/* --------------------------------------------------------------- chips */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  margin: 1px 2px 1px 0;
  border-radius: var(--radius-sm);
  background: var(--surface-sunk);
  border: 1px solid var(--border);
  font-size: var(--text-xs);
}

.chip-warn {
  background: var(--tone-warn-bg);
  border-color: var(--tone-warn-border);
  color: var(--tone-warn-text);
}

/* --------------------------------------------------------------- help tooltip */
/* Pure CSS reveal on hover + keyboard focus; frontend.js adds tap-to-toggle. */
.help {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.help__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: help;
}

.help__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.help__bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: max-content;
  max-width: 260px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  background: #1b2330;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 450;
  line-height: 1.4;
  /* The tooltip sits inside uppercase section labels (.actions-group__title,
   * .filter-label, …) and would inherit their text-transform; keep tooltip
   * prose in normal case while the labels themselves stay uppercase. */
  text-transform: none;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease;
  pointer-events: none;
}

.help__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1b2330;
}

.help:hover .help__bubble,
.help__btn:focus-visible + .help__bubble,
.help.is-open .help__bubble {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------- flash banners */
.messages {
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.message {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-left-width: 4px;
  border-radius: var(--radius);
  background: var(--surface);
  font-size: var(--text-base);
}

.message a {
  font-weight: 600;
}

.message-success {
  background: var(--tone-ok-bg);
  border-color: var(--tone-ok-border);
  border-left-color: var(--tone-ok-text);
  color: var(--tone-ok-text);
}

.message-info {
  background: var(--tone-info-bg);
  border-color: var(--tone-info-border);
  border-left-color: var(--tone-info-text);
  color: var(--tone-info-text);
}

.message-warning {
  background: var(--tone-warn-bg);
  border-color: var(--tone-warn-border);
  border-left-color: var(--tone-warn-text);
  color: var(--tone-warn-text);
}

.message-error {
  background: var(--tone-danger-bg);
  border-color: var(--tone-danger-border);
  border-left-color: var(--tone-danger-text);
  color: var(--tone-danger-text);
}

.message-success a,
.message-info a,
.message-warning a,
.message-error a {
  color: inherit;
  text-decoration: underline;
}

/* --------------------------------------------------------------- filter bar */
.filters {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.filters label.grow {
  flex: 1 1 260px;
}

.filters label.filter-check {
  flex-direction: row;
  align-items: center;
  gap: var(--space-1);
}

.filter-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.filters input[type="search"],
.filters select {
  padding: 7px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: var(--text-sm);
  color: var(--text);
}

.filters input[type="search"]:focus,
.filters select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

/* --------------------------------------------------------------- component flags */
.component-flags {
  display: inline-flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.flag {
  font-size: var(--text-sm);
  white-space: nowrap;
}

.flag-yes {
  color: var(--tone-ok-text);
  font-weight: 600;
}

.flag-no {
  color: var(--text-subtle);
}

/* --------------------------------------------------------------- sections + cards */
.section {
  margin-top: var(--space-6);
}

.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.panel {
  padding: var(--space-4) var(--space-5);
}

.summary {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: var(--space-2) var(--space-5);
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-sm);
}

.summary dt {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.summary dd {
  margin: 0;
}

/* --------------------------------------------------------------- draft preview */
.draft-body {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

/* --------------------------------------------------------------- timeline (3C1) */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline__item {
  position: relative;
  padding: 0 0 var(--space-4) var(--space-5);
  border-left: 2px solid var(--border);
}

.timeline__item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 2px solid var(--accent);
}

.timeline__date {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  font-variant-numeric: tabular-nums;
}

.timeline__body {
  margin-top: 2px;
}

/* --------------------------------------------------------------- pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.pagination-status {
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------- empty states */
.empty {
  padding: var(--space-6) var(--space-5);
  text-align: center;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  color: var(--text-muted);
}

/* --------------------------------------------------------------- dashboard bits */
.pipeline-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-5);
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.pipeline-line {
  margin: 0;
}

#run-now-slot {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.run-now-form {
  margin: 0;
}

.run-now-state {
  margin: 0;
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------- form fields */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.field__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.field input[type="text"],
.field input[type="date"],
.field input[type="number"],
.field textarea,
.actions-panel textarea {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font: inherit;
  font-size: var(--text-sm);
  color: var(--text);
}

.field input:focus,
.field textarea:focus,
.actions-panel textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.inline-error {
  color: var(--danger);
  font-size: var(--text-xs);
}

.caption {
  color: var(--text-muted);
  font-size: var(--text-xs);
}

/* --------------------------------------------------------------- actions panel */
/* Shared confirmation actions component (templates/.../_confirmation_actions). */
.actions-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.actions-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.actions-group + .actions-group {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.actions-group__title {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.actions-group form {
  margin: 0;
  /* Space the field grid from the Save/action row within each action form so
   * the button never crowds the last field (the segmented control keeps its
   * own row layout via the later, more-specific `.segmented form` rule). */
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
}

.field-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
}

/* segmented control (prepaid tri-state) */
.segmented {
  display: inline-flex;
  padding: 2px;
  gap: 2px;
  background: var(--surface-sunk);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.segmented form {
  margin: 0;
  display: flex;
}

.segmented__option {
  padding: 5px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.segmented__option:hover {
  background: var(--surface);
  color: var(--text);
}

.segmented__option.is-current {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  cursor: default;
}

.quick-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------- review queue */
.review-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.review-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-sm);
}

.review-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.review-meta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
}

.review-reasons,
.review-source,
.review-linked {
  margin-top: var(--space-2);
}

.review-source {
  font-size: var(--text-sm);
}

.candidates {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}

.candidates-title {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.candidate-list {
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.candidate {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.candidate form {
  margin: 0 0 0 auto;
}

/* --------------------------------------------------------------- trip actions */
.trip-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

.trip-actions form {
  margin: 0;
}

/* --------------------------------------------------------------- auth pages */
.centered-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-5);
}

.centered-page .card {
  padding: var(--space-6);
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.centered-page .card h1 {
  margin-bottom: var(--space-3);
}

.centered-page .card .btn {
  margin-top: var(--space-3);
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .site-main {
    padding: var(--space-4) var(--space-4) var(--space-6);
  }

  .field-grid {
    grid-template-columns: 1fr;
  }
}
