/* Myrdal — site accent (Arcanum Site Kit override file).
   Line 1 is the sanctioned per-site override: ONE accent, matching this site's
   ecosystem.json entry. #1d4ed8 is unused elsewhere in the estate (nearest are
   #4f46e5 indigo/Leontief and #0ea5e9 sky/JJ Muni). */
:root { --ark-accent: #1d4ed8; --ark-accent-soft: #3b82f6; }

/* ---------------------------------------------------------------------------
   Three layout utilities the kit does not yet ship. Every value derives from an
   --ark-* token (D10: no hardcoded light-mode colours; both themes follow the
   toggle automatically because the tokens do). Flagged to Carson as a kit gap:
   erwin's templates use .ark-fineprint / .ark-explore-controls too and render
   them UNSTYLED, because neither class exists in arcanum.css. When the kit gains
   them, delete this block rather than diverge from it.
   --------------------------------------------------------------------------- */
.ark-fineprint {
  font-size: var(--ark-text-sm);
  color: var(--ark-fg-dim);
  max-width: 78ch;
}
.ark-explore-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ark-space-2);
  margin: var(--ark-space-4) 0;
}
.ark-explore-controls label {
  font-size: var(--ark-text-sm);
  color: var(--ark-fg-dim);
}
.ark-explore-controls select {
  background: var(--ark-bg-soft);
  color: var(--ark-fg);
  border: 1px solid var(--ark-line);
  border-radius: var(--ark-radius);
  padding: .4rem .6rem;
  font: inherit;
  max-width: 100%;
}
