/* Portolan Software — portolansoft.com */

:root {
  color-scheme: light;
  --ground:      #f7f2e8;
  --ground-2:    #f1eadc;
  --ground-3:    #e8dfcc;
  --rule:        #d8cebb;
  --rule-soft:   #e4dbc9;
  --ink:         #14243b;
  --ink-2:       #3f5069;
  --ink-3:       #64738b;
  --accent:      #b23a20;
  --accent-2:    #8f2d17;
  --accent-wash: rgba(178, 58, 32, 0.08);
  --chart:       rgba(20, 36, 59, 0.30);
  --chart-warm:  rgba(178, 58, 32, 0.22);
  --shadow:      0 1px 0 rgba(20,36,59,.04);

  --serif: "Newsreader", Charter, "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --measure: 66ch;
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { color-scheme: dark; }
}

/* Dark palette, applied either by preference or by explicit toggle. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground:      #0e1a2b;
    --ground-2:    #142236;
    --ground-3:    #1a2b43;
    --rule:        #293a55;
    --rule-soft:   #1f2f47;
    --ink:         #ece5d5;
    --ink-2:       #b6bfce;
    --ink-3:       #8e9aad;
    --accent:      #e58164;
    --accent-2:    #f09a80;
    --accent-wash: rgba(229, 129, 100, 0.10);
    --chart:       rgba(236, 229, 213, 0.22);
    --chart-warm:  rgba(229, 129, 100, 0.22);
    --shadow:      0 1px 0 rgba(0,0,0,.25);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ground:      #0e1a2b;
  --ground-2:    #142236;
  --ground-3:    #1a2b43;
  --rule:        #293a55;
  --rule-soft:   #1f2f47;
  --ink:         #ece5d5;
  --ink-2:       #b6bfce;
  --ink-3:       #8e9aad;
  --accent:      #e58164;
  --accent-2:    #f09a80;
  --accent-wash: rgba(229, 129, 100, 0.10);
  --chart:       rgba(236, 229, 213, 0.22);
  --chart-warm:  rgba(229, 129, 100, 0.22);
  --shadow:      0 1px 0 rgba(0,0,0,.25);
}

.defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.35rem); }
h4 { font-size: 1.0625rem; }

p { margin: 0 0 1.15em; max-width: var(--measure); }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--accent-2); text-decoration-thickness: 2px; }

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

hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }

abbr { text-decoration: none; }

::selection { background: var(--accent-wash); }

/* ---------- layout ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--ground);
  padding: .7rem 1.1rem; font-size: .9rem; text-decoration: none;
}
.skip:focus { left: .5rem; top: .5rem; color: var(--ground); }

section[id] { scroll-margin-top: 5.5rem; }

.band { padding-block: clamp(3.5rem, 7vw, 6rem); border-top: 1px solid var(--rule); position: relative; }
.band--alt { background: var(--ground-2); }

.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1.1rem;
  display: flex; align-items: baseline; gap: .7rem;
}
.eyebrow .num { color: var(--accent); }

.lede { font-size: clamp(1.1rem, 1rem + .4vw, 1.28rem); color: var(--ink-2); line-height: 1.55; }

/* ---------- chart texture ---------- */

.chart-layer {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  color: var(--chart);
  z-index: 0;
}
.chart-layer svg { width: 100%; height: 100%; display: block; }
.chart-layer--hero { mask-image: radial-gradient(120% 95% at 62% 42%, #000 8%, transparent 72%); }
.chart-layer--divider { opacity: .9; }

.band > .wrap { position: relative; z-index: 1; }

.rule-divider {
  height: 78px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  background: var(--ground);
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 92%, transparent);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 4rem;
}

.wordmark {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-size: 1.08rem; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.wordmark:hover { color: var(--ink); }
.wordmark svg { width: 22px; height: 22px; flex: none; }
.wordmark b { font-weight: 600; }
.wordmark span { color: var(--ink-3); font-family: var(--sans); font-size: .82rem; }

.nav { margin-left: auto; }
.nav ul {
  display: flex; align-items: center; gap: 1.4rem;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  color: var(--ink-2); text-decoration: none;
  font-size: .875rem; padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.nav a[aria-current="true"] { color: var(--ink); border-bottom-color: var(--accent); }

.header-tools { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
  appearance: none; background: transparent; cursor: pointer;
  border: 1px solid var(--rule); border-radius: 3px;
  color: var(--ink-2);
  width: 2.3rem; height: 2.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.icon-btn:hover { color: var(--ink); border-color: var(--ink-3); }
.icon-btn svg { width: 17px; height: 17px; }
.theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .moon { display: block; }
:root[data-theme="dark"] .theme-toggle .sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .moon { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .sun { display: none; }
}

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ground); border-bottom: 1px solid var(--rule);
    padding: .5rem var(--gutter) 1.25rem;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav li { border-bottom: 1px solid var(--rule-soft); }
  .nav a { display: block; padding: .8rem 0; font-size: 1rem; border-bottom: 0; }
}

/* ---------- hero ---------- */

.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 8rem) clamp(3.5rem, 7vw, 6.5rem);
}
.hero__inner { position: relative; z-index: 1; max-width: 46rem; }
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: .55em; }
.hero p { font-size: clamp(1.12rem, 1rem + .55vw, 1.4rem); line-height: 1.5; color: var(--ink-2); max-width: 44ch; }

.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .95rem; line-height: 1;
  padding: .85rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 3px;
  text-decoration: none;
  background: var(--ink); color: var(--ground);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
:root[data-theme="dark"] .btn:hover { color: #14243b; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn svg { width: 14px; height: 14px; flex: none; }

.hero__meta {
  margin-top: 2.6rem; padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: .78rem; letter-spacing: .04em;
  color: var(--ink-3);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  max-width: 46rem;
}

/* ---------- prose bits ---------- */

.cols-2 {
  display: grid; gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) {
  .cols-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p:last-child { margin-bottom: 0; }

blockquote.pull {
  margin: 2.25rem 0;
  padding: 0 0 0 1.5rem;
  border-left: 2px solid var(--accent);
  max-width: 34rem;
}
blockquote.pull p {
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.05rem + .7vw, 1.55rem);
  line-height: 1.35; color: var(--ink);
  margin-bottom: .8em;
}
blockquote.pull footer { font-size: .86rem; color: var(--ink-3); line-height: 1.5; max-width: 44ch; }

.point { margin-top: 2.5rem; }
.point:first-child { margin-top: 0; }
.point h3 { display: flex; gap: .6rem; align-items: baseline; }

/* hazard glyph */
.hazard { width: .78em; height: .78em; flex: none; color: var(--accent); transform: translateY(.02em); }

/* measurement rows */
.readout {
  list-style: none; margin: 1.25rem 0 0; padding: 0;
  border-top: 1px solid var(--rule);
  max-width: 34rem;
}
.readout li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid var(--rule-soft);
  font-size: .95rem;
}
.readout .k { color: var(--ink-2); }
.readout .v { font-family: var(--mono); font-size: .92rem; color: var(--ink); white-space: nowrap; }

/* ---------- cards ---------- */

.cards {
  display: grid; gap: 1px;
  grid-template-columns: minmax(0, 1fr);
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card {
  background: var(--ground);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; gap: .25rem;
}
.band--alt .card { background: var(--ground-2); }
.card__num { font-family: var(--mono); font-size: .76rem; letter-spacing: .1em; color: var(--accent); margin-bottom: .9rem; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .97rem; color: var(--ink-2); margin-bottom: 0; max-width: none; }

.note-strip {
  margin-top: 1px;
  border: 1px solid var(--rule); border-top: 0;
  background: var(--ground);
  padding: clamp(1.25rem, 2.2vw, 1.6rem);
  display: flex; gap: 1rem; align-items: flex-start;
}
.band--alt .note-strip { background: var(--ground-2); }
.note-strip p { margin: 0; font-size: .97rem; color: var(--ink-2); max-width: 70ch; }
.note-strip strong { color: var(--ink); font-weight: 600; }

/* ---------- steps ---------- */

.steps {
  display: grid; gap: 0;
  grid-template-columns: minmax(0, 1fr);
  counter-reset: step;
  border-top: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.step {
  padding: 1.6rem 1.5rem 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 880px) {
  .step { border-bottom: 0; border-right: 1px solid var(--rule); padding: 1.9rem 1.6rem 1rem 0; }
  .step:last-child { border-right: 0; }
  .step:not(:first-child) { padding-left: 1.6rem; }
}
.step__n {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .1em;
  color: var(--accent); display: block; margin-bottom: .8rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .95rem; color: var(--ink-2); margin: 0; max-width: none; }

/* ---------- standards list ---------- */

.dl-grid { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 820px) { .dl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2rem, 5vw, 4rem); } }
.dl-grid > div {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: .15rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 520px) {
  .dl-grid > div { grid-template-columns: 10.5rem minmax(0, 1fr); gap: 1rem; align-items: baseline; }
}
.dl-grid dt { font-size: .82rem; font-family: var(--mono); letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); }
.dl-grid dd { margin: 0; font-size: .97rem; color: var(--ink); }

/* ---------- applications ---------- */

.apply { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 980px) { .apply { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.apply article { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.apply .tag {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .7rem;
}
.apply p { font-size: .97rem; color: var(--ink-2); max-width: none; }
.apply p:last-child { margin-bottom: 0; }

/* ---------- table ---------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table {
  width: 100%; border-collapse: collapse;
  font-size: .95rem;
  text-align: left;
}
caption { text-align: left; font-size: .85rem; color: var(--ink-3); padding-bottom: .6rem; }
th, td {
  padding: .85rem 1rem .85rem 0;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
thead th {
  font-family: var(--mono); font-weight: 400;
  font-size: .75rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
}
tbody th { font-weight: 500; color: var(--ink); }
td { color: var(--ink-2); }
td code, th code { color: var(--ink); }

.status {
  display: inline-block;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .22rem .5rem; border-radius: 2px; white-space: nowrap;
  border: 1px solid var(--rule);
  color: var(--ink-2);
}
.status--done { border-color: var(--accent); color: var(--accent); }
.status--now { border-color: var(--ink-3); color: var(--ink); }

code, kbd, samp, pre { font-family: var(--mono); }
code { font-size: .88em; }

pre {
  font-size: .82rem; line-height: 1.6;
  background: var(--ground-2);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1.25rem;
  overflow-x: auto;
  color: var(--ink);
  tab-size: 2;
}
.band--alt pre { background: var(--ground); }

/* ---------- about / contact ---------- */

.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 900px) { .about-grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); } }

.namebox {
  border: 1px solid var(--rule);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--ground-2);
}
.band--alt .namebox { background: var(--ground); }
.namebox p:last-child { margin-bottom: 0; }
.namebox .label { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: .8rem; }

.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0; max-width: 34rem; border-top: 1px solid var(--rule); }
.contact-list li { display: flex; flex-wrap: wrap; gap: .35rem 1.5rem; justify-content: space-between; padding: .85rem 0; border-bottom: 1px solid var(--rule-soft); }
.contact-list .k { font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.contact-list a { font-size: .97rem; word-break: break-word; }

/* ---------- sources ---------- */

.sources { counter-reset: src; list-style: none; margin: 0; padding: 0; column-gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .sources { columns: 2; } }
.sources li {
  break-inside: avoid;
  font-size: .9rem; line-height: 1.55; color: var(--ink-2);
  padding: .7rem 0 .7rem 2.2rem;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.sources li::before {
  counter-increment: src; content: counter(src);
  position: absolute; left: 0; top: .7rem;
  font-family: var(--mono); font-size: .78rem; color: var(--accent);
}
.sources a { word-break: break-word; }

sup.ref { font-size: .68em; line-height: 0; }
sup.ref a { text-decoration: none; font-family: var(--mono); padding-inline: .08em; }
sup.ref a:hover { text-decoration: underline; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--rule);
  padding-block: 2.5rem 3rem;
  font-size: .875rem; color: var(--ink-3);
}
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; align-items: center; }
.site-footer nav ul { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.site-footer a { color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--rule); }
.site-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.site-footer .spacer { margin-left: auto; }
.footer-tools { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.site-footer p { margin: 0; max-width: none; }

/* ---------- schema page ---------- */

.doc-head { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.doc-head__inner { position: relative; z-index: 1; }

.draft-flag {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--accent); color: var(--accent);
  font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 2px; margin-bottom: 1.5rem;
}

.doc-layout { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: minmax(0, 1fr); padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--rule); }
@media (min-width: 1000px) { .doc-layout { grid-template-columns: 15rem minmax(0, 1fr); } }

.toc { font-size: .875rem; }
@media (min-width: 1000px) { .toc { position: sticky; top: 5rem; align-self: start; max-height: calc(100vh - 7rem); overflow-y: auto; } }
.toc h2 { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; font-weight: 400; }
.toc ol { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--rule); }
.toc li { margin: 0; }
.toc a {
  display: block; padding: .38rem 0 .38rem .9rem;
  color: var(--ink-2); text-decoration: none;
  border-left: 2px solid transparent; margin-left: -1px;
}
.toc a:hover { color: var(--ink); }
.toc a[aria-current="true"] { color: var(--ink); border-left-color: var(--accent); }
.toc .sub a { padding-left: 1.8rem; font-size: .84rem; color: var(--ink-3); }

.doc-body > section { padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.doc-body > section + section { border-top: 1px solid var(--rule); padding-top: clamp(2.5rem, 4vw, 3.5rem); }
.doc-body h2 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.85rem); }
.doc-body h3 { margin-top: 2rem; }
.doc-body table { margin-bottom: 1.5rem; }
.doc-body th:first-child, .doc-body td:first-child { padding-right: 1.5rem; }
.doc-body .field { font-family: var(--mono); font-size: .84rem; color: var(--ink); white-space: nowrap; }
.doc-body .type { font-family: var(--mono); font-size: .8rem; color: var(--ink-3); }

.vocab { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.vocab li {
  font-family: var(--mono); font-size: .8rem;
  border: 1px solid var(--rule); border-radius: 2px;
  padding: .25rem .55rem; color: var(--ink-2);
  background: var(--ground-2);
}

.q-list { list-style: none; margin: 0; padding: 0; counter-reset: q; border-top: 1px solid var(--rule); }
.q-list li { counter-increment: q; padding: 1rem 0 1rem 2.4rem; border-bottom: 1px solid var(--rule-soft); position: relative; font-size: .97rem; color: var(--ink-2); }
.q-list li::before { content: "Q" counter(q); position: absolute; left: 0; top: 1rem; font-family: var(--mono); font-size: .78rem; color: var(--accent); }
.q-list strong { color: var(--ink); font-weight: 600; }

/* ---------- 404 ---------- */

.oops { min-height: 70vh; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; padding-block: 4rem; }
.oops__inner { position: relative; z-index: 1; max-width: 34rem; }
.oops p { margin-inline: auto; }
.oops .hazard { width: 2.2rem; height: 2.2rem; margin-bottom: 1.5rem; }
