/* Fonts are self hosted. The site makes no third party request to render,
   which is what lets the privacy page say there is no tracking and mean it. */

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Before It Counts site styles.
   Palette taken from the wordmark. Colour is used in small doses on a warm
   neutral ground: the brand is for two year olds, the site has to be readable
   by a university and a governing body. */

:root {
  --teal:   #00797E;
  --pink:   #D12660;
  --purple: #6F3EAB;
  --orange: #A85A00;
  --lime:   #566B07;

  --teal-bright:   #00B0B0;
  --pink-bright:   #F0407F;
  --purple-bright: #7A45B0;
  --orange-bright: #F98A00;
  --lime-bright:   #A8CE1E;

  --ink:      #201C2B;
  --ink-soft: #4C4658;
  --ink-mute: #6E6880;

  --paper:    #FBF6EC;
  --paper-2:  #F4EDDD;
  --paper-3:  #ECE3CE;
  --line:     #E0D6C2;
  --white:    #FFFFFF;

  --wrap: 1080px;
  --prose: 40rem;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(32,28,43,.05), 0 2px 8px rgba(32,28,43,.04);
  --shadow-md: 0 2px 4px rgba(32,28,43,.05), 0 10px 28px rgba(32,28,43,.07);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 40;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); letter-spacing: -0.005em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--purple); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--pink); }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--purple); color: #fff; padding: .7rem 1.1rem;
  z-index: 100; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip:focus { left: 0; color: #fff; }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 600px) { .wrap { width: calc(100% - 2rem); } }

.prose > p, .prose > ul, .prose > ol, .prose > h1, .prose > h2,
.prose > h3, .prose > .table-scroll, .prose > .qa {
  max-width: var(--prose);
}
.prose-block { max-width: var(--prose); margin-top: 1.2rem; }
.prose-block p { font-size: 1.04rem; line-height: 1.65; }
.note + .note { margin-top: 1rem; }
.sources { font-size: .92rem; color: var(--ink-soft); }
.sources li { margin-bottom: .55em; }
.aside .aside-more { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }

.prose h2 { margin-top: 2.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2em; }
.prose ul, .prose ol { padding-left: 1.15rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--purple-bright); }

section { padding-block: clamp(3rem, 7vw, 5.5rem); }
section.tight { padding-block: clamp(2.2rem, 4.5vw, 3.4rem); }
.band-2 { background: var(--paper-2); }
.band-3 { background: var(--paper-3); }
.band-ink { background: #221E2D; color: #F3EFE6; }
.band-ink h2, .band-ink h3 { color: #fff; }
.band-ink a { color: var(--lime-bright); }
.band-ink a:hover { color: var(--orange-bright); }

.eyebrow {
  font-family: var(--text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 .9rem;
}
.band-ink .eyebrow { color: var(--lime-bright); }

.lede { font-size: clamp(1.1rem, 2.1vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); }
.small { font-size: .9rem; color: var(--ink-mute); }

/* rainbow rule, echoing the arc over the wordmark */
.rule { display: flex; gap: 5px; margin: 0 0 1.6rem; }
.rule span { height: 6px; width: 30px; border-radius: 3px; }
.rule span:nth-child(1) { background: var(--teal-bright); }
.rule span:nth-child(2) { background: var(--pink-bright); }
.rule span:nth-child(3) { background: var(--purple-bright); }
.rule span:nth-child(4) { background: var(--orange-bright); }
.rule span:nth-child(5) { background: var(--lime-bright); }
.rule.center { justify-content: center; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--text); font-weight: 650; font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--purple-bright); color: #fff; box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { color: var(--purple); border-color: var(--purple-bright); background: var(--white); }

.band-ink .btn-ghost { color: #F3EFE6; border-color: rgba(255,255,255,.28); }
.band-ink .btn-ghost:hover { color: #fff; border-color: var(--lime-bright); background: rgba(255,255,255,.06); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

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

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, .93);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 1rem; padding-block: .7rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 148px; }
@media (max-width: 700px) { .brand img { width: 118px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.nav a {
  font-size: .94rem; font-weight: 550; color: var(--ink-soft);
  text-decoration: none; padding: .5rem .7rem; border-radius: var(--r-sm);
}
.nav a:hover { color: var(--purple); background: var(--paper-2); }
.nav a[aria-current="page"] { color: var(--purple); font-weight: 700; }
.nav .btn { margin-left: .5rem; padding: .6rem 1.15rem; font-size: .94rem; }
.nav a.btn-primary, .nav a.btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 2px solid var(--line); border-radius: var(--r-sm);
  padding: .5rem .7rem; font: inherit; font-size: .9rem; font-weight: 650;
  color: var(--ink); cursor: pointer; align-items: center; gap: .45rem;
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.1rem; box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: .75rem .25rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; }
  .nav .btn { margin: .9rem 0 0; justify-content: center; border-bottom: 0; }
}

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

.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.5rem); text-align: center; }
.hero h1 { max-width: 17ch; margin-inline: auto; }
.hero .lede { max-width: 34rem; margin-inline: auto; }
.hero .btn-row { justify-content: center; margin-top: 1.8rem; }

.hero-split { text-align: left; padding-top: clamp(2rem, 5vw, 3.5rem); }
.hero-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.hero-split h1 { margin-inline: 0; max-width: 15ch; }
.hero-split .lede { margin-inline: 0; max-width: 32rem; }
.hero-split .btn-row { justify-content: flex-start; margin-top: 1.6rem; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: min(100%, 300px); filter: drop-shadow(0 12px 28px rgba(32,28,43,.12)); }
@media (min-width: 820px) {
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
  .hero-art img { width: min(100%, 400px); }
}
@media (max-width: 819px) {
  .hero-grid { text-align: left; }
  .hero-art { order: -1; }
  .hero-art img { width: min(62%, 240px); }
}

/* crayon underline, drawn once, under the phrase that names the programme */
.scribble {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 C 30 3, 55 12, 82 7 S 130 4, 158 9 S 185 6, 198 8' fill='none' stroke='%23F0407F' stroke-width='4' stroke-linecap='round' opacity='.85'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% .38em;
  background-position: 0 96%;
  padding-bottom: .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* status band on the home page */
.status-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 760px) { .status-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); } }
.status-grid h2 { font-size: clamp(2rem, 5vw, 3rem); margin: 0; }
.status-grid p { color: #CFC8DA; }

/* two roughly even columns: a block of prose beside a card, so a short
   section does not sit narrow in a wide band with empty space beside it */
.split-even { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; }
@media (min-width: 760px) { .split-even { grid-template-columns: 1.1fr 1fr; } }

/* facts strip */
.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .7rem; margin: 2.6rem 0 0; text-align: left;
}
.facts div {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem .95rem .95rem; box-shadow: var(--shadow-sm);
}
.facts dt { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .25rem; }
.facts dd { margin: 0; font-family: var(--display); font-size: 1.08rem; font-weight: 600; font-variation-settings: "SOFT" 20, "WONK" 1; }
.facts .accent-1 { border-top: 4px solid var(--teal-bright); }
.facts .accent-2 { border-top: 4px solid var(--pink-bright); }
.facts .accent-3 { border-top: 4px solid var(--purple-bright); }
.facts .accent-4 { border-top: 4px solid var(--orange-bright); }
.facts .accent-5 { border-top: 4px solid var(--lime-bright); }

/* ---------- page head (inner pages) ---------- */

.page-head { padding-block: clamp(2.4rem, 5vw, 3.8rem) clamp(1.6rem, 3vw, 2.4rem); }
.page-head h1 { max-width: 20ch; }
.page-head .lede { max-width: 42rem; }
section.page { padding-block: clamp(2.4rem, 5vw, 3.8rem) clamp(2.2rem, 4.5vw, 3.4rem); }
.page-head-in { margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-head-in h1 { max-width: 20ch; }
.page-head-in .lede { max-width: 42rem; }
.prose > .page-head-in { max-width: none; }

/* ---------- grids and cards ---------- */

.grid { display: grid; gap: 1.5rem; }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
/* Inside the narrower split column, three still has to mean three. */
.split .g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 1.1rem; }
.split .card { padding: 1.35rem 1.25rem; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card .num {
  font-family: var(--display); font-size: 2.1rem; font-weight: 600;
  line-height: 1; display: block; margin-bottom: .6rem;
}
.c-teal   .num, .c-teal   h3 { color: var(--teal); }
.c-pink   .num, .c-pink   h3 { color: var(--pink); }
.c-purple .num, .c-purple h3 { color: var(--purple); }
.c-orange .num, .c-orange h3 { color: var(--orange); }
.c-lime   .num, .c-lime   h3 { color: var(--lime); }
.c-teal   { border-top: 4px solid var(--teal-bright); }
.c-pink   { border-top: 4px solid var(--pink-bright); }
.c-purple { border-top: 4px solid var(--purple-bright); }
.c-orange { border-top: 4px solid var(--orange-bright); }
.c-lime   { border-top: 4px solid var(--lime-bright); }

/* two-column split with sticky aside */
.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1fr) 20rem; } }
.aside {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) { .aside { position: sticky; top: 6rem; } }
.aside h3 { font-size: 1.1rem; }
.aside dl { margin: 0; }
.aside dt { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-top: 1rem; }
.aside dt:first-of-type { margin-top: 0; }
.aside dd { margin: .15rem 0 0; font-weight: 550; }

/* ---------- run of play / timeline ---------- */

.steps { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.steps li { position: relative; padding: 0 0 1.7rem 1.6rem; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: ""; position: absolute; left: -7px; top: .45rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--purple-bright); border: 2px solid var(--paper);
}
.steps li:nth-child(5n+1)::before { background: var(--teal-bright); }
.steps li:nth-child(5n+2)::before { background: var(--pink-bright); }
.steps li:nth-child(5n+3)::before { background: var(--purple-bright); }
.steps li:nth-child(5n+4)::before { background: var(--orange-bright); }
.steps li:nth-child(5n+5)::before { background: var(--lime-bright); }
.steps .when {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: .15rem;
}
.steps strong { display: block; font-family: var(--display); font-size: 1.08rem; font-variation-settings: "SOFT" 20, "WONK" 1; }
.steps p { margin: .2rem 0 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- q and a ---------- */

.qa { border-top: 1px solid var(--line); }
.qa details { border-bottom: 1px solid var(--line); }
.qa summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.5rem 1.1rem 0;
  position: relative; font-family: var(--display); font-size: 1.1rem;
  font-weight: 600; font-variation-settings: "SOFT" 20, "WONK" 1;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--purple); }
.qa summary::after {
  content: ""; position: absolute; right: .5rem; top: 1.5rem;
  width: 10px; height: 10px; border-right: 2.5px solid var(--purple-bright);
  border-bottom: 2.5px solid var(--purple-bright);
  transform: rotate(45deg); transition: transform .18s ease;
}
.qa details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.qa .a { padding: 0 1rem 1.4rem 0; max-width: var(--prose); color: var(--ink-soft); }
.qa .a p:last-child { margin-bottom: 0; }

/* ---------- notes ---------- */

.note {
  border-left: 4px solid var(--teal-bright);
  background: var(--paper-2);
  padding: 1.15rem 1.35rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.8rem 0;
  max-width: var(--prose);
}
.note.warm { border-left-color: var(--orange-bright); }
.note.pink { border-left-color: var(--pink-bright); }
.note.story { background: var(--white); box-shadow: var(--shadow-sm); max-width: none; }
.note h3 { font-size: 1.05rem; margin: 0 0 .35rem; }
.note p:last-child { margin-bottom: 0; }

/* ---------- forms ---------- */

.form { max-width: 34rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .35rem; }
.field .hint { display: block; font-weight: 400; font-size: .85rem; color: var(--ink-mute); margin-top: .1rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: .7rem .85rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple-bright); }
.field textarea { min-height: 6.5rem; resize: vertical; }
.req { color: var(--pink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

fieldset.field { border: 0; padding: 0; margin: 0 0 1.15rem; min-width: 0; }
fieldset.field legend { font-weight: 600; font-size: .95rem; padding: 0; margin-bottom: .45rem; }
fieldset.field legend .hint { font-weight: 400; }
.radio-row { display: flex; flex-wrap: wrap; gap: .5rem .6rem; }
.radio-row label {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .9rem; border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--white); font-size: .95rem; cursor: pointer;
  white-space: nowrap; margin: 0; width: auto;
}
.radio-row label:has(input:checked) { border-color: var(--purple-bright); background: #F3EDFB; color: var(--purple); font-weight: 600; }
.radio-row input { accent-color: var(--purple); margin: 0; }

.checkline { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: 1.15rem; }
.checkline input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; flex: 0 0 auto; accent-color: var(--purple); }
.checkline label { font-size: .95rem; font-weight: 400; }

/* ---------- session log ---------- */

.log { display: grid; gap: 1.5rem; }
.log article {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
}
.log time { font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--purple); }
.log h3 { margin: .35rem 0 .5rem; }
.empty {
  border: 2px dashed var(--line); border-radius: var(--r-md);
  padding: clamp(2rem, 5vw, 3rem); text-align: center; background: var(--paper-2);
}
.empty .rule { justify-content: center; }
.empty h2 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }

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

.site-foot { background: #221E2D; color: #CFC8DA; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: 0; }
.site-foot a { color: #E8E2F2; text-decoration-color: rgba(232,226,242,.4); }
.site-foot a:hover { color: var(--lime-bright); }
.foot-grid { display: grid; gap: 2.5rem; }
@media (min-width: 560px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-story { max-width: 34rem; }
.foot-story h2 { font-size: 1.25rem; color: #fff; margin-bottom: .7rem; }
.foot-story p { font-size: .97rem; line-height: 1.62; color: #BFB7CE; }
.foot-story .sig { font-family: var(--display); font-style: italic; color: #E8E2F2; }
.foot-col h2 { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: #8E85A3; font-family: var(--text); font-weight: 700; margin-bottom: .9rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: .5rem; font-size: .97rem; }
.foot-bottom {
  margin-top: 2.8rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between;
  font-size: .86rem; color: #8E85A3;
}
.foot-bottom p { margin: 0; }

/* ---------- utility ---------- */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.stack > * + * { margin-top: 1.1rem; }

table.plain { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .97rem; }
table.plain th, table.plain td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.plain th { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
table.plain tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- print ---------- */

@media print {
  .site-head, .site-foot, .nav-toggle, .btn, .aside, .skip { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .split { display: block; }
  section { padding-block: 1rem; }
  .qa details { display: block; }
  .qa details > * { display: block; }
  .qa summary::after { display: none; }
  a { color: #000; text-decoration: none; }
  .page-head .lede { color: #000; }
}
