*, *::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, figure, blockquote { 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; }
a { color: inherit; overflow-wrap: anywhere; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; max-width: 100%; }
input:not([type="checkbox"]):not([type="hidden"]), select, textarea { display: block; width: 100%; padding: .5rem; }
button { padding: .5rem 1rem; cursor: pointer; }
label { display: block; }
address { font-style: normal; }
fieldset { min-width: 0; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; vertical-align: top; padding: .5rem; border-bottom: 1px solid #aaa; }
td { overflow-wrap: anywhere; }
:focus-visible { outline: 2px solid #000; outline-offset: 3px; }
[hidden] { display: none !important; }
.container { width: min(100% - 2rem, 75rem); margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }
.space-block { padding-block: 2rem; }
.site-header, .site-footer, main { padding-block: 1.5rem; }
.nav-list { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; }
.col-12 { grid-column: span 12; }
.col-6, .col-4 { grid-column: span 12; }
.table-scroll { overflow-x: auto; }
.skip-link { position: absolute; top: -5rem; left: 1rem; background: #fff; padding: .5rem; }
.skip-link:focus { top: 0; }
@media (min-width: 48rem) {
  .col-6 { grid-column: span 6; }
  .col-4 { grid-column: span 4; }
}
