/* /audit only — linked from that page's head and nowhere else.
 *
 * The Executive Intake header is a centred box whose text still started at the
 * left edge. pico-theme.css rule 24 already gives this block its margin-inline,
 * which centres the box (896px inside a 1200px column, so it sat 152px off
 * centre before that rule), but nothing had centred the text inside it: the
 * eyebrow, the headline and the deck all began at the box's left edge.
 *
 * Scoped to this one property on this one page because the same class
 * signature carries the hero block of six other pages, and those are
 * left-aligned on purpose.
 */
div.reveal.max-w-4xl.space-y-6 {
  margin-inline: auto;
  text-align: center;
}

/* The two date pickers and the two menus are native controls, so their popups
 * and their picker icons come from the browser, not from the palette. Without
 * this the calendar panel opens light against a near-black page. The theme has
 * no light mode, so this is unconditional rather than media- or class-gated. */
input[type='date'],
select {
  color-scheme: dark;
}
