/* vfopro docs — brand tokens measured from https://postyield.com/vfopro (2026-09-19) */
@font-face {
  font-family: "Libre Caslon Display";
  src: url("/assets/fonts/LibreCaslonDisplay-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/Nunito-Variable.woff2") format("woff2");
  font-weight: 200 1000; font-style: normal; font-display: swap;
}

:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a43;
  --ink-mute: #727586;
  --bg: #ffffff;
  --bg-warm: #f3f3f2;
  --line: #dcdcdc;
  --primary: #176be0;
  --primary-hover: #0f52b3;      /* darker than #597cff so small text stays AA */
  --primary-soft: #e3ebf9;
  --accent: #597cff;             /* vfo logo blue: fills / large text only */
  --grad: linear-gradient(135deg, #176be0 0%, #8f11a8 100%);
  --success: #00b090; --success-soft: #def4f0; --success-ink: #006b55;
  --warn: #ffcd35;    --warn-soft: #fff8e2;    --warn-ink: #7a4b00;
  --danger: #fc5185;  --danger-soft: #ffe8ef;  --danger-ink: #a61b47;
  --font-display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(26, 26, 26, .08);
  --shadow-lg: 0 10px 30px rgba(26, 26, 26, .12);
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); text-decoration: underline; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }

/* ---------- Header (mirrors postyield.com: light, minimal, underlined active link) ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid transparent; }
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: var(--header-h); display: flex; align-items: center; gap: 40px; }
.brand { display: flex; align-items: center; }
.brand img { height: 26px; width: auto; display: block; }
.primary-nav { display: flex; gap: 28px; align-items: center; }
.primary-nav a { color: var(--ink-soft); font-size: 16px; padding: 6px 0; border-bottom: 2px solid transparent; }
.primary-nav a:hover { color: var(--ink); text-decoration: none; }
.primary-nav a[aria-current] { color: var(--ink); border-bottom-color: var(--ink); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); width: 42px; height: 42px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { display: block; margin: auto; }

/* ---------- Buttons (outlined blue, uppercase, letter-spaced like the main site) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); background: transparent; border: 1px solid var(--primary); border-radius: var(--radius-sm);
  padding: 13px 22px; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; text-decoration: none; }
.btn-solid { background: var(--primary); color: #fff; }
.btn-solid:hover { background: var(--primary-hover); border-color: var(--primary-hover); }

/* ---------- Hub (compact: intro row, two paragraphs, small tiles, large tiles) ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hub { max-width: 1140px; margin: 0 auto; padding: 14px 24px 40px; }
.intro-row { display: flex; align-items: center; gap: 14px; margin: 0 0 14px; }
.intro-logo { height: 44px; width: auto; display: block; }
.intro-tag { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 26px); color: var(--ink-soft); margin: 0; letter-spacing: .005em; }
.hub-copy { max-width: 980px; }
.hub-copy p { font-size: 17px; line-height: 1.6; margin: 0 0 12px; }

.tiles-small { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; list-style: none; padding: 0; margin: 22px 0 18px; }
.tile-sm > a, .tile-sm > .tile-ph {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 100%; min-height: 62px;
  padding: 12px 18px; background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); font-weight: 700; font-size: 16px; line-height: 1.3; transition: border-color .15s, background .15s, box-shadow .15s, color .15s;
}
.tile-sm > a:hover { background: #fff; border-color: var(--primary); box-shadow: var(--shadow); text-decoration: none; color: var(--ink); }
.tile-sm .ico { width: 18px; height: 18px; flex: none; color: var(--primary); }
.tile-sm.download > a { background: #fff; border-color: var(--primary); color: var(--primary); }
.tile-sm.download > a:hover { background: var(--primary); color: #fff; }
.tile-sm.download > a:hover .ico { color: #fff; }
.tile-sm.placeholder > .tile-ph { background: #fafaf9; border-style: dashed; color: var(--ink-mute); font-weight: 600; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; }
.soon { flex: none; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 2px 9px; white-space: nowrap; }

.tiles-large { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.tile-lg { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s, border-color .2s; }
.tile-lg:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: #c4c7cc; }
.tile-lg > a { display: flex; flex-direction: column; height: 100%; color: inherit; }
.tile-lg > a:hover { text-decoration: none; }
.tile-thumb { aspect-ratio: 16 / 9; background: var(--bg-warm); border-bottom: 1px solid var(--line); overflow: hidden; }
.tile-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.tile-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tile-body h3 { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.25; }
.tile-body p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.tile-meta { margin-top: auto; padding-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-soft); background: var(--bg-warm); border-radius: 100px; padding: 3px 11px; }
.chip svg { width: 14px; height: 14px; flex: none; }
.help-line { margin: 20px 0 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- Doc pages ---------- */
.doc-wrap { max-width: 1140px; margin: 0 auto; padding: 28px 24px 72px; }
.crumbs { font-size: 14px; color: var(--ink-mute); margin: 0 0 18px; }
.crumbs a { color: var(--ink-soft); }
.crumbs span[aria-hidden] { margin: 0 8px; }
.doc-header h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 5vw, 50px); line-height: 1.12; margin: 0 0 12px; }
.doc-header .lede { font-size: 19px; color: var(--ink-soft); max-width: 720px; margin: 0 0 24px; }
.meta-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-warm); overflow: hidden; margin: 0 0 40px; }
.meta-strip > div { padding: 14px 18px; border-right: 1px solid var(--line); min-width: 0; }
.meta-strip > div:last-child { border-right: 0; }
.meta-strip dt { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 3px; }
.meta-strip dd { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.4; }

.doc-grid { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 56px; align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 20px); order: 2; }
.toc p { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.toc ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 16px; margin-left: -2px; border-left: 2px solid transparent; color: var(--ink-soft); font-size: 14px; line-height: 1.4; }
.toc a:hover { color: var(--ink); text-decoration: none; }
.toc a.active { color: var(--primary); border-left-color: var(--primary); font-weight: 700; }
.toc-mobile { display: none; }

.prose { min-width: 0; max-width: 740px; order: 1; }
.prose > section { margin: 0 0 48px; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(27px, 3.3vw, 34px); line-height: 1.2; margin: 0 0 16px; padding-top: 44px; border-top: 1px solid var(--line); }
.prose > section:first-child h2 { border-top: 0; padding-top: 0; }
.prose h3 { font-size: 20px; font-weight: 700; margin: 28px 0 8px; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin: 5px 0; }
.prose strong { font-weight: 700; }
.prose code { font-family: var(--font-mono); font-size: .88em; background: var(--bg-warm); border: 1px solid #e6e6e4; padding: .1em .38em; border-radius: 5px; }
.prose kbd { font-family: var(--font-mono); font-size: .82em; background: #fff; border: 1px solid var(--line); border-bottom-width: 2px; padding: .1em .4em; border-radius: 5px; }
.ui { font-weight: 700; color: var(--ink); }          /* exact UI label as it appears in the app */
.brand-name { font-weight: 700; }

/* numbered steps with gradient badges */
ol.steps { list-style: none; padding: 0; margin: 0 0 20px; counter-reset: step; }
ol.steps > li { position: relative; padding: 0 0 22px 52px; margin: 0; counter-increment: step; }
ol.steps > li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; display: grid; place-items: center; }
ol.steps > li::after { content: ""; position: absolute; left: 16px; top: 40px; bottom: 6px; width: 2px; background: var(--line); }
ol.steps > li:last-child::after { display: none; }
ol.steps > li > :first-child { margin-top: 3px; }
ol.steps > li > :last-child { margin-bottom: 0; }

/* checkpoint */
.check { display: flex; gap: 12px; background: var(--success-soft); border: 1px solid #b6e3d9; border-radius: var(--radius-sm); padding: 11px 14px; margin: 12px 0 0; font-size: 15px; color: #0b3d31; }
.check::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: var(--success) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-6.5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat; }
.check > div { min-width: 0; }
.check strong { color: #0b3d31; }

/* callouts */
.callout { border-radius: var(--radius-sm); padding: 14px 16px 14px 18px; margin: 0 0 20px; border: 1px solid; border-left-width: 4px; font-size: 15.5px; }
.callout > :last-child { margin-bottom: 0; }
.callout .callout-title { display: block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.callout.note { background: var(--primary-soft); border-color: #bcd0f3; border-left-color: var(--primary); color: #12336b; }
.callout.tip { background: var(--success-soft); border-color: #b6e3d9; border-left-color: var(--success); color: #0b3d31; }
.callout.warn { background: var(--warn-soft); border-color: #f1dc9c; border-left-color: var(--warn); color: var(--warn-ink); }
.callout.danger { background: var(--danger-soft); border-color: #f6bfd0; border-left-color: var(--danger); color: var(--danger-ink); }
.callout code { background: rgba(255, 255, 255, .7); }

/* screenshots: click to zoom, optional numbered hotspots */
figure.shot { margin: 18px auto 22px; }
.shot-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 18px 0 22px; }
.shot-pair figure.shot { margin: 0; }
figure.shot .frame { position: relative; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid #ececec; background: #fff; cursor: zoom-in; line-height: 0; }
figure.shot .frame img { width: 100%; display: block; }
figure.shot .frame:hover { box-shadow: var(--shadow-lg); }
figure.shot .zoom-hint { position: absolute; right: 10px; bottom: 10px; line-height: 1; font-size: 12px; font-weight: 700; color: #fff; background: rgba(26, 26, 26, .72); padding: 6px 10px; border-radius: 100px; opacity: 0; transition: opacity .15s; }
figure.shot .frame:hover .zoom-hint, figure.shot .frame:focus-visible .zoom-hint { opacity: 1; }
figure.shot figcaption { font-size: 14px; color: var(--ink-mute); margin-top: 10px; text-align: center; line-height: 1.5; }
.pin { position: absolute; transform: translate(-50%, -50%); width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #fff; font: 800 12px/22px var(--font-body); text-align: center; box-shadow: 0 0 0 2px rgba(255,255,255,.95), 0 2px 6px rgba(0,0,0,.3); pointer-events: none; }
/* hotspot pins scale down with a half-size screenshot */
figure.shot-sm .pin { width: 15px; height: 15px; font: 800 9px/15px var(--font-body); box-shadow: 0 0 0 1.5px rgba(255,255,255,.95), 0 1px 4px rgba(0,0,0,.3); }
ol.legend { list-style: none; margin: 0 0 20px; padding: 0; counter-reset: pin; display: grid; gap: 8px; }
ol.legend li { counter-increment: pin; padding-left: 38px; position: relative; margin: 0; font-size: 15.5px; }
ol.legend li::before { content: counter(pin); position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; font-size: 12px; display: grid; place-items: center; }

/* code + copyable prompt blocks */
pre { position: relative; background: #1d1e20; color: #eceef2; border-radius: var(--radius-sm); padding: 16px 18px; overflow-x: auto; font-size: 14px; line-height: 1.6; margin: 0 0 20px; }
pre code { background: none; border: 0; padding: 0; font-size: inherit; color: inherit; }
.copy-btn { position: absolute; top: 8px; right: 8px; font: 700 12px var(--font-body); letter-spacing: .04em; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 6px; padding: 4px 10px; cursor: pointer; }
.copy-btn:hover { background: rgba(255,255,255,.26); }
.prompt { position: relative; background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 84px 12px 16px; margin: 0 0 12px; font-size: 15.5px; }
.prompt .copy-btn { color: var(--ink-soft); background: #fff; border-color: var(--line); top: 50%; transform: translateY(-50%); }
.prompt .copy-btn:hover { background: var(--primary-soft); }

/* tables */
.table-wrap { overflow-x: auto; margin: 0 0 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--bg-warm); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
tr:last-child td { border-bottom: 0; }

/* accordions */
details.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); margin: 0 0 10px; background: #fff; }
details.faq summary { cursor: pointer; padding: 14px 18px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--ink-mute); flex: none; }
details.faq[open] summary::after { content: "–"; }
details.faq[open] summary { border-bottom: 1px solid var(--line); }
details.faq .faq-body { padding: 14px 18px 4px; }
details.faq .faq-body > :last-child { margin-bottom: 14px; }

/* feedback + prev/next */
.feedback { margin: 40px 0 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-warm); display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.feedback strong { font-size: 16px; }
.feedback .btn-row { display: flex; gap: 10px; }
.feedback .btn { padding: 9px 16px; }
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 0; }
.pager a { display: block; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.pager a:hover { border-color: var(--primary); box-shadow: var(--shadow); text-decoration: none; }
.pager .dir { display: block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 2px; }
.pager .ttl { font-weight: 700; font-size: 18px; color: var(--primary); }
.pager .next { text-align: right; grid-column: 2; }
.pager .prev { grid-column: 1; }

/* stub notice for pages still being written */
.draft-note { border: 2px dashed var(--line); border-radius: var(--radius); padding: 28px; text-align: center; color: var(--ink-soft); background: var(--bg-warm); }
.draft-note h2 { border: 0 !important; padding: 0 !important; margin: 0 0 8px !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-warm); border-top: 1px solid var(--line); margin-top: 24px; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 36px 24px; display: flex; gap: 32px; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; }
.footer-inner img { height: 24px; width: auto; display: block; margin-bottom: 10px; }
.footer-inner p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: var(--ink-soft); font-size: 15px; }
.footer-fine { max-width: 1140px; margin: 0 auto; padding: 0 24px 26px; font-size: 13px; color: var(--ink-mute); }

/* ---------- Lightbox ---------- */
dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: 96vw; max-height: 96vh; overflow: visible; }
dialog.lightbox::backdrop { background: rgba(20, 20, 24, .82); }
dialog.lightbox img { max-width: 96vw; max-height: 88vh; border-radius: var(--radius-sm); background: #fff; display: block; margin: 0 auto; }
dialog.lightbox .lb-cap { color: #fff; text-align: center; font-size: 14px; margin-top: 10px; }
dialog.lightbox .lb-close { position: absolute; top: -14px; right: -6px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: #fff; color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-lg); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .doc-grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .toc { display: none; }
  .toc-mobile { display: block; border: 1px solid var(--line); border-radius: var(--radius); margin: 0 0 32px; background: #fff; }
  .toc-mobile summary { cursor: pointer; font-weight: 700; padding: 13px 18px; }
  .toc-mobile ol { list-style: none; margin: 0; padding: 0 18px 12px; }
  .toc-mobile a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: 15px; }
  .meta-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .meta-strip > div:nth-child(2) { border-right: 0; }
  .meta-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 1000px) {
  .tiles-large { grid-template-columns: minmax(0, 1fr); }
  .tile-lg > a { flex-direction: row; }
  .tile-thumb { flex: 0 0 40%; aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--line); }
  .tile-thumb img { object-position: left top; }
}
@media (max-width: 820px) {
  .tiles-small { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: var(--header-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 16px; display: none; }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid #efefef; }
  .header-inner { gap: 16px; }
}
@media (max-width: 560px) {
  .header-inner, .doc-wrap, .hub, .footer-inner, .footer-fine { padding-left: 16px; padding-right: 16px; }
  .tile-lg > a { flex-direction: column; }
  .tile-thumb { flex: none; aspect-ratio: 16 / 9; border-right: 0; border-bottom: 1px solid var(--line); }
  .tile-sm > a, .tile-sm > .tile-ph { padding: 12px 14px; font-size: 15px; }
  .meta-strip { grid-template-columns: minmax(0, 1fr); }
  .meta-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .meta-strip > div:last-child { border-bottom: 0; }
  .shot-pair { grid-template-columns: minmax(0, 1fr); }
  .pager { grid-template-columns: 1fr; }
  .pager .next, .pager .prev { grid-column: 1; text-align: left; }
  ol.steps > li { padding-left: 46px; }
}
@media print {
  .site-header, .toc, .toc-mobile, .feedback, .pager, .copy-btn, .nav-toggle { display: none !important; }
  .doc-grid { display: block; }
  details.faq:not([open]) .faq-body { display: block; }
}
