/* Neutral foundations only; the visual theme is applied separately. */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; }
body { margin: 0; color: #000; background: #fff; font-family: system-ui, sans-serif; font-size: 1rem; line-height: 1.5; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
h1 { font-size: 2rem; line-height: 1.2; }
h2 { font-size: 1.5rem; line-height: 1.3; }
h3 { font-size: 1.25rem; line-height: 1.4; }
small { font-size: .875rem; }
a { color: inherit; }
button, input, select, textarea { font: inherit; max-width: 100%; }
textarea { vertical-align: top; }
table { border-collapse: collapse; }
th, td { text-align: left; vertical-align: top; padding: .5rem; }
address { font-style: normal; }
[hidden] { display: none !important; }
.container { width: min(100% - 2rem, 75rem); margin-inline: auto; }
.stack > * + * { margin-block-start: 1.5rem; }
.space-y > * + * { margin-block-start: .75rem; }
.site-header, main, .site-footer { padding-block: 1.5rem; }
.nav-list { display: flex; flex-wrap: wrap; gap: .5rem 1rem; padding: 0; list-style: none; }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem; }
.col-4, .col-6, .col-12 { grid-column: span 12; min-width: 0; }
.table-scroll { overflow-x: auto; }
@media (min-width: 48rem) {
    .col-4 { grid-column: span 4; }
    .col-6 { grid-column: span 6; }
}
