:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--av-color-background);
  color: var(--av-color-foreground);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--av-color-background); color: var(--av-color-foreground); }
a { color: var(--av-color-primary); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, [tabindex="0"]:focus-visible { outline: 3px solid var(--av-color-blue-500); outline-offset: 3px; }
.shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 2000; padding: 10px 14px; border-radius: var(--av-radius-md); background: var(--av-color-foreground); color: var(--av-color-background); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--av-color-border); background: color-mix(in srgb, var(--av-color-surface) 94%, transparent); backdrop-filter: blur(12px); }
.header-inner { min-height: 68px; display: grid; grid-template-columns: auto 1fr auto; gap: var(--av-spacing-6); align-items: center; }
.brand { display: inline-flex; gap: var(--av-spacing-3); align-items: center; color: var(--av-color-foreground); text-decoration: none; font-weight: 760; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: var(--av-radius-md); background: var(--av-color-foreground); color: var(--av-color-surface); font-size: .72rem; letter-spacing: .08em; }
.primary-nav { display: flex; gap: var(--av-spacing-5); justify-content: center; }
.primary-nav a, .locale-nav a { color: var(--av-color-muted-foreground); text-decoration: none; font-size: .9rem; font-weight: 650; }
.primary-nav a:hover, .locale-nav a:hover, .locale-nav a[aria-current="page"] { color: var(--av-color-primary); }
.locale-nav { display: flex; gap: var(--av-spacing-2); }
.locale-nav a { padding: 6px 7px; border-radius: var(--av-radius-sm); }
.locale-nav a[aria-current="page"] { background: var(--av-color-muted); }

.page-shell { padding-block: clamp(40px, 8vw, 96px); }
.hero { max-width: 920px; padding-bottom: clamp(48px, 8vw, 88px); }
.eyebrow { margin: 0 0 12px; color: var(--av-color-primary); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 900px; margin-bottom: 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 7vw, 5.9rem); line-height: .98; letter-spacing: -.045em; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 3vw, 2.3rem); line-height: 1.1; }
h3 { font-size: .95rem; }
.lead { max-width: 760px; color: var(--av-color-muted-foreground); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 18px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-md); text-decoration: none; font-weight: 750; }
.button.primary { border-color: var(--av-color-primary); background: var(--av-color-primary); color: var(--av-color-primary-foreground); }
.button.secondary { background: var(--av-color-surface); color: var(--av-color-foreground); }

.notice { display: flex; gap: 14px; align-items: flex-start; margin: 0 0 64px; padding: 20px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-lg); background: var(--av-color-surface); box-shadow: var(--av-shadow-sm); }
.notice h2 { margin-bottom: 6px; font-family: inherit; font-size: 1rem; }
.notice p { margin-bottom: 0; color: var(--av-color-muted-foreground); }
.status-dot { flex: 0 0 auto; width: 11px; height: 11px; margin-top: 6px; border-radius: 50%; background: var(--av-color-amber-800); box-shadow: 0 0 0 5px var(--av-color-amber-100); }
.notice.success .status-dot { background: var(--av-color-green-700); box-shadow: 0 0 0 5px var(--av-color-green-100); }
.notice.warning .status-dot { background: var(--av-color-red-600); box-shadow: 0 0 0 5px var(--av-color-red-100); }
.section-heading { margin-bottom: 24px; }
.pipeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0 0 72px; padding: 0; list-style: none; }
.pipeline li { min-height: 124px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-lg); background: var(--av-color-surface); }
.pipeline strong { color: var(--av-color-primary); font-family: Georgia, serif; font-size: 1.45rem; }
.pipeline span { font-weight: 720; }
.two-column, .card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.panel { padding: clamp(22px, 4vw, 34px); border: 1px solid var(--av-color-border); border-radius: var(--av-radius-xl); background: var(--av-color-surface); box-shadow: var(--av-shadow-sm); }
.muted-panel { background: var(--av-color-muted); }
.panel ul { padding-left: 20px; }
.panel li + li { margin-top: 8px; }
.check-list li::marker { color: var(--av-color-green-700); }
.block-list li::marker { color: var(--av-color-red-600); }
.page-intro { max-width: 820px; margin-bottom: 48px; }
.page-intro h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.content-intro { margin-bottom: 26px; }
.content-status { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin: 0 0 34px; color: var(--av-color-muted-foreground); font-size: .78rem; }
.content-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.content-section { align-self: start; min-width: 0; }
.content-section h2 { margin-bottom: 12px; }
.content-section li { overflow-wrap: anywhere; }
.content-section p:last-of-type { margin-bottom: 0; }
.inline-links { margin: 18px 0 0; font-weight: 720; }
.inline-links a { text-underline-offset: 3px; }
.home-value { margin-bottom: 64px; }
.home-value .section-heading { max-width: 780px; }
.value-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.value-card { display: flex; flex-direction: column; min-height: 220px; padding: 22px; }
.value-card p:not(.eyebrow) { color: var(--av-color-muted-foreground); }
.value-card .text-link { margin-top: auto; font-weight: 750; text-underline-offset: 3px; }
.home-links { margin-top: 20px; }
.method-card h2 { margin-top: 18px; }
.governance-panel { margin-bottom: 18px; }
.governance-panel > p:not(.eyebrow) { max-width: 760px; color: var(--av-color-muted-foreground); }
.compact-metrics { margin: 24px 0 0; }
.card-meta { display: flex; align-items: center; justify-content: space-between; }
.badge { display: inline-flex; width: fit-content; padding: 4px 8px; border-radius: var(--av-radius-full); background: var(--av-color-muted); color: var(--av-color-muted-foreground); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.badge.reviewed { background: var(--av-color-green-100); color: var(--av-color-green-700); }
.badge.blocked { background: var(--av-color-red-100); color: var(--av-color-red-600); }
.readiness-grid { margin-bottom: 52px; }
.readiness-card { align-self: start; }
.readiness-card h2 { margin-top: 18px; font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
.external-heading { margin-top: 24px; }
code { font-family: "SFMono-Regular", Consolas, monospace; font-size: .82em; overflow-wrap: anywhere; }
.meta-line { color: var(--av-color-muted-foreground); font-size: .85rem; }
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 24px; }
.metric { display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-lg); background: var(--av-color-surface); }
.metric strong { font: 700 2rem/1 Georgia, serif; }
.metric span { margin-top: 8px; color: var(--av-color-muted-foreground); font-size: .8rem; }
.table-panel { margin-bottom: 24px; }
.table-scroll { overflow: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; }
th, td { padding: 13px 12px; border-bottom: 1px solid var(--av-color-border); vertical-align: top; }
th { color: var(--av-color-muted-foreground); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer { border-top: 1px solid var(--av-color-border); background: var(--av-color-surface); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; padding-block: 26px; color: var(--av-color-muted-foreground); font-size: .8rem; }
.footer-inner p { margin: 0; }
.footer-inner a { display: inline-block; padding-block: 2px; color: inherit; }
.footer-links { line-height: 1.9; }

.glossary-term { position: relative; border-bottom: 1px dotted currentColor; font-style: inherit; text-decoration: none; cursor: help; }
.glossary-tooltip { position: fixed; left: 50%; bottom: 20px; z-index: 500; display: none; width: min(420px, calc(100vw - 32px)); max-height: min(40vh, 240px); overflow: auto; padding: 10px 12px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-md); background: var(--av-color-foreground); color: var(--av-color-background); box-shadow: var(--av-shadow-lg); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .78rem; font-weight: 500; line-height: 1.45; letter-spacing: normal; text-align: left; text-transform: none; opacity: 0; visibility: hidden; transform: translate(-50%, 4px); pointer-events: none; }
.glossary-term:hover .glossary-tooltip, .glossary-term:focus-visible .glossary-tooltip { display: block; opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.workbench-intro { max-width: 940px; }
.featured-case { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin: 36px 0 72px; }
.featured-case > div { max-width: 760px; }
.featured-case h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); }
.spaced-heading { margin-top: 72px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.workflow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.workflow-grid a { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: start; padding: 20px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-lg); background: var(--av-color-surface); color: var(--av-color-foreground); text-decoration: none; box-shadow: var(--av-shadow-sm); }
.workflow-grid a:hover { border-color: var(--av-color-primary); }
.workflow-grid strong, .workflow-grid small { display: block; }
.workflow-grid strong { margin-bottom: 7px; font-size: 1.05rem; }
.workflow-grid small { color: var(--av-color-muted-foreground); line-height: 1.45; }
.workflow-index, .persona-mark, .decision-number { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--av-color-primary); color: var(--av-color-primary-foreground); font: 700 .8rem/1 Inter, sans-serif; }
.persona-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.persona-card { padding: 20px; }
.persona-card h3 { margin: 18px 0 8px; font-size: 1rem; }
.persona-card p { margin-bottom: 0; color: var(--av-color-muted-foreground); font-size: .88rem; }
.reference-card { display: flex; flex-direction: column; gap: 12px; }
.reference-card h2 { margin-bottom: 0; }
.reference-card p { color: var(--av-color-muted-foreground); }
.reference-card .button { align-self: flex-start; margin-top: auto; }
.reference-mode-panel { margin: -18px 0 42px; }
.mode-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }

.back-link { display: inline-flex; margin-bottom: 28px; color: var(--av-color-muted-foreground); text-decoration: none; font-weight: 700; }
.case-header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 320px); gap: 48px; align-items: end; margin-bottom: 40px; }
.case-header h1 { font-size: clamp(2.3rem, 5vw, 4.8rem); }
.case-facts, .detail-list { margin: 0; }
.case-facts div, .detail-list div { display: grid; grid-template-columns: minmax(110px, .8fr) minmax(0, 1.2fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--av-color-border); }
.case-facts dt, .detail-list dt { color: var(--av-color-muted-foreground); font-size: .75rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.case-facts dd, .detail-list dd { margin: 0; overflow-wrap: anywhere; }
.case-tabs { position: sticky; top: 70px; z-index: 80; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0 0 48px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-lg); background: var(--av-color-surface); box-shadow: var(--av-shadow-sm); overflow: hidden; }
.case-tabs a { display: flex; gap: 8px; align-items: center; justify-content: center; min-height: 50px; padding: 9px; border-right: 1px solid var(--av-color-border); color: var(--av-color-muted-foreground); text-decoration: none; font-size: .82rem; font-weight: 750; }
.case-tabs a:last-child { border-right: 0; }
.case-tabs a[aria-current="page"] { background: var(--av-color-primary); color: var(--av-color-primary-foreground); }
.case-tabs a span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--av-color-muted); color: var(--av-color-foreground); font-size: .7rem; }
.case-tabs a[aria-current="page"] span { background: color-mix(in srgb, var(--av-color-white) 24%, transparent); color: inherit; }
.case-tabs small { color: inherit; opacity: .72; }
.workbench-columns { margin-bottom: 24px; }
.large-copy { font: 600 clamp(1.15rem, 2vw, 1.5rem)/1.4 Georgia, serif; }
.timeline-panel, .protocol-panel, .tool-form, .assessment-panel { margin: 24px 0; }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 92px auto minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--av-color-border); }
.timeline li > * { min-width: 0; }
.timeline time { color: var(--av-color-muted-foreground); font-size: .8rem; }
.timeline strong, .timeline code { overflow-wrap: anywhere; }
.timeline code { text-align: right; }
.detail-list-wide { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.detail-list-wide div { display: block; border: 0; }
.detail-list-wide dd { margin-top: 5px; font-size: 1.1rem; font-weight: 750; }
.source-card h2, .evidence-card h2 { margin-top: 18px; font-size: clamp(1.35rem, 2.5vw, 2rem); }

button, input, select { font: inherit; }
button { min-height: 44px; padding: 9px 16px; border: 1px solid var(--av-color-primary); border-radius: var(--av-radius-md); background: var(--av-color-primary); color: var(--av-color-primary-foreground); font-weight: 750; cursor: pointer; }
input, select { min-height: 44px; width: 100%; padding: 9px 12px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-md); background: var(--av-color-surface); color: var(--av-color-foreground); }
label { display: block; margin-bottom: 7px; font-size: .82rem; font-weight: 750; }
.inline-form { margin-top: 24px; }
.inline-form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.result-panel { margin-top: 18px; padding: 16px; border: 1px solid var(--av-color-border); border-left-width: 5px; border-radius: var(--av-radius-md); background: var(--av-color-muted); }
.result-pass { border-left-color: var(--av-color-green-700); }
.result-blocked { border-left-color: var(--av-color-red-600); }
.result-panel > :last-child { margin-bottom: 0; }
.search-results { margin-top: 24px; }
.search-results ol { margin: 0; padding: 0; list-style: none; }
.search-results li { display: grid; grid-template-columns: auto 1fr; gap: 8px 12px; padding: 15px 0; border-top: 1px solid var(--av-color-border); }
.search-results li p, .search-results li code { grid-column: 2; margin: 0; }
.evidence-flow { display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr) auto minmax(180px, 1fr); gap: 12px; align-items: stretch; margin-bottom: 24px; }
.evidence-flow article { display: flex; flex-direction: column; gap: 10px; padding: 18px; border: 1px solid var(--av-color-border); border-radius: var(--av-radius-lg); background: var(--av-color-surface); }
.evidence-flow blockquote { margin: 0; font-family: Georgia, serif; font-size: 1.1rem; }
.flow-arrow { align-self: center; color: var(--av-color-primary); font-size: 1.7rem; }
.claim-card { margin-bottom: 24px; }
.claim-card > h2 { max-width: 900px; margin-top: 22px; font-size: clamp(1.7rem, 4vw, 3rem); }
.three-column { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.compact-panels section { padding: 18px; border-radius: var(--av-radius-md); background: var(--av-color-muted); }
.assessment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 28px; }
.assessment-grid > div > div { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.assessment-grid meter { width: 100%; height: 12px; accent-color: var(--av-color-primary); }
.decision-stack { display: grid; gap: 14px; margin-bottom: 24px; }
.decision-card { display: flex; gap: 18px; align-items: flex-start; }
.decision-card h2 { margin-bottom: 8px; }
.decision-card > div { flex: 1; }

.filter-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; align-items: end; margin-bottom: 22px; padding: 20px; }
.filter-actions { display: flex; gap: 12px; align-items: center; min-height: 44px; }
.filter-actions a { font-weight: 700; }
.result-count { color: var(--av-color-muted-foreground); }
.source-atlas-grid, .tool-grid, .glossary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.source-guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.source-guide-card { display: flex; flex-direction: column; align-self: start; min-height: 260px; }
.source-guide-card h2 { margin-top: 18px; font-size: clamp(1.25rem, 2.4vw, 1.8rem); }
.source-guide-card p { color: var(--av-color-muted-foreground); }
.source-guide-card .text-link { margin-top: auto; font-weight: 750; }
.guide-detail { margin-bottom: 24px; }
.guide-detail h2 { margin-top: 20px; font-size: clamp(1.8rem, 4vw, 3.2rem); overflow-wrap: anywhere; }
.guide-detail-columns { margin-top: 24px; }
.guide-context { margin-top: 28px; }
.science-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.science-registry-card { align-self: start; }
.science-registry-card h2 { margin-top: 18px; font-size: clamp(1.35rem, 2.4vw, 1.95rem); }
.science-registry-card h3 { margin-top: 20px; }
.science-tree-panel { margin-top: 28px; }
.science-route-list { display: grid; gap: 8px; }
.science-route-list a { display: flex; justify-content: space-between; gap: 18px; align-items: start; padding: 13px 0; border-top: 1px solid var(--av-color-border); color: var(--av-color-foreground); text-decoration: none; }
.science-route-list a[aria-current="page"] { color: var(--av-color-primary); }
.science-route-list strong, .science-route-list small { display: block; }
.science-route-list small { max-width: 760px; margin-top: 4px; color: var(--av-color-muted-foreground); line-height: 1.45; }
.atlas-card, .adapter-card, .glossary-card { align-self: start; padding: 22px; }
.atlas-card h2, .adapter-card h2, .glossary-card h2 { margin-top: 18px; font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.glossary-card h2 { overflow-wrap: anywhere; }
.atlas-card details { margin: 18px 0; }
.atlas-card summary { cursor: pointer; font-weight: 750; }
.glossary-card h3 { margin: 22px 0 8px; }
.demo-actions { margin: -20px 0 32px; }

@media (max-width: 760px) {
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; padding-block: 10px; }
  .primary-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; overscroll-behavior-inline: contain; padding-bottom: 4px; scrollbar-color: var(--av-color-border) transparent; scrollbar-width: thin; }
  .pipeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-column, .card-grid { grid-template-columns: 1fr; }
  .content-sections { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; }
  .featured-case { align-items: flex-start; flex-direction: column; }
  .workflow-grid, .persona-grid, .source-atlas-grid, .source-guide-grid, .science-card-grid, .tool-grid, .glossary-grid { grid-template-columns: 1fr; }
  .case-header { grid-template-columns: 1fr; gap: 18px; }
  .case-tabs { top: 116px; display: flex; overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-inline: var(--av-spacing-4); scrollbar-color: var(--av-color-border) transparent; scrollbar-width: thin; }
  .case-tabs a { flex: 0 0 auto; min-width: 128px; }
  .timeline li { grid-template-columns: 74px minmax(0, 1fr); gap: 8px 12px; align-items: start; }
  .timeline li > :nth-child(1) { grid-column: 1; grid-row: 1 / span 3; }
  .timeline li > :nth-child(2) { grid-column: 2; grid-row: 1; }
  .timeline li > :nth-child(3) { grid-column: 2; grid-row: 2; }
  .timeline li > :nth-child(4) { grid-column: 2; grid-row: 3; }
  .timeline code { text-align: left; }
  .detail-list-wide, .three-column, .assessment-grid { grid-template-columns: 1fr; }
  .evidence-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .filter-form { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .evidence-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (min-width: 591px) and (max-width: 760px) {
  .case-tabs { top: 96px; }
}

@media (max-width: 420px) {
  .shell { width: min(100% - 22px, 1180px); }
  .brand > span:last-child { display: none; }
  .pipeline { grid-template-columns: 1fr; }
  .pipeline li { min-height: 96px; }
  .value-grid { grid-template-columns: 1fr; }
  h1 { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .site-header, .actions, .site-footer, .case-tabs, .back-link, .filter-form, .tool-form { display: none; }
  .page-shell { padding: 0; }
  .panel, .notice, .pipeline li { box-shadow: none; break-inside: avoid; }
  .glossary-term { border: 0; }
  .glossary-tooltip { display: none; }
}

.print-view .site-header, .print-view .site-footer, .print-view .case-tabs, .print-view .back-link, .print-view .actions { display: none; }
.print-view .page-shell { padding-block: 24px; }
