/* 7.0.0 — launch refinements. Loaded after the page-specific styles and QA. */
:root {
  --sfd-admin-offset: 0px;
  --sfd-header-height: 96px;
  --sfd-anchor-height: 76px;
  --sfd-fab-bottom: max(16px, env(safe-area-inset-bottom));
}

/* Use one sticky navigation, with an offset for the WordPress admin bar. */
body > .site-header {
  position: sticky;
  top: var(--sfd-admin-offset);
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid #deded9;
}
html[data-theme="dark"] body > .site-header {
  background: #111110;
  border-bottom-color: #383835;
}
body.sfd-has-page-nav > .site-header,
body:has(.page-anchor-nav, .services-anchor-nav) > .site-header {
  position: relative;
  top: auto;
}
body :is(.page-anchor-wrap, .services-anchor-wrap) {
  position: sticky;
  top: var(--sfd-admin-offset);
  z-index: 40;
}
body main :is(section[id], article[id], h2[id], h3[id]) {
  scroll-margin-top: calc(var(--sfd-admin-offset) + var(--sfd-header-height) + 24px);
}
body.sfd-has-page-nav main :is(section[id], article[id], h2[id], h3[id]),
body:has(.page-anchor-nav, .services-anchor-nav) main :is(section[id], article[id], h2[id], h3[id]) {
  scroll-margin-top: calc(var(--sfd-admin-offset) + var(--sfd-anchor-height) + 24px);
}
body.admin-bar { --sfd-admin-offset: 32px; }
body .nav-flyout-panel { max-height: calc(100dvh - var(--sfd-header-height) - var(--sfd-admin-offset) - 20px); overflow-y: auto; overscroll-behavior: contain; }
/* Escape must also override the older :focus-within opening rules. */
.main-navigation .nav-flyout.is-escape-dismissed > .nav-flyout-panel,
.main-navigation .nav-flyout.is-arrival-guarded > .nav-flyout-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.main-navigation .nav-flyout.is-escape-dismissed > .nav-flyout-trigger svg,
.main-navigation .nav-flyout.is-arrival-guarded > .nav-flyout-trigger svg { transform: none; }
body .article-toc { top: calc(var(--sfd-admin-offset) + var(--sfd-header-height) + 24px); }

/* Hero colours inherit the original blue/purple design from 6.49.0. */
.sfh-location { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.sfh-eyebrow .sfh-norway-flag {
  display: inline-block;
  width: 16px;
  height: auto;
  flex: 0 0 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
  vertical-align: middle;
}
.sfh-hero--final .sfh-eyebrow { line-height: 1.8; }
.sfh-hero--final .sfh-always-yellow {
  color: var(--yellow);
  background: none;
}
html[data-theme="dark"] .sfh-control-board { border-color: #4b4b46; }

/* The illustration uses fixed light surfaces in both colour modes. */
.sfh-control-streams,
html[data-theme="dark"] .sfh-control-streams,
.sfh-control-streams :is(strong, small, span),
html[data-theme="dark"] .sfh-control-streams :is(strong, small, span),
.sfh-control-journey,
html[data-theme="dark"] .sfh-control-journey,
.sfh-control-journey :is(small, span, b, footer),
html[data-theme="dark"] .sfh-control-journey :is(small, span, b, footer) { color: #111110; }
.sfh-control-goal > strong,
html[data-theme="dark"] .sfh-control-goal > strong { color: #fff; }

/* Avoid losing the end of the menu; primary contact is always within reach. */
.mobile-contact-fab { display: none; }
body .mobile-contact-fab[hidden] { display: none !important; }
body .floating-site-controls { bottom: var(--sfd-fab-bottom); right: max(16px, env(safe-area-inset-right)); }
body .floating-site-controls :is(.theme-toggle, .back-to-top) { min-width: 48px; min-height: 48px; }
/* Lock the viewport, not a new body scroll container: sticky headers must keep
   their position when the menu opens partway down the document. */
html.mobile-menu-open { overflow: hidden; }
body.mobile-menu-open { overflow: clip; }
body.mobile-menu-open :is(.mobile-contact-fab, .floating-site-controls) { visibility: hidden; pointer-events: none; }
body .mobile-menu-panel:not([hidden]) {
  top: calc(var(--sfd-admin-offset) + var(--sfd-header-height) + 10px);
  max-height: calc(100dvh - var(--sfd-admin-offset) - var(--sfd-header-height) - 28px - env(safe-area-inset-bottom));
  overscroll-behavior: contain;
}
body .mobile-menu-backdrop { top: calc(var(--sfd-admin-offset) + var(--sfd-header-height)); }
body :is(.page-anchor-nav, .services-anchor-nav) a { min-height: 44px; }
body :is(.page-anchor-nav, .services-anchor-nav) a:not(.anchor-home-link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  font-size: 13px;
}

/* Visible focus on both white and coloured cards. */
:is(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid #344bb9;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #fff;
}
html[data-theme="dark"] :is(a, button, summary, input, textarea, select):focus-visible {
  outline-color: var(--sf-yellow);
  box-shadow: 0 0 0 2px #111110;
}

@media (min-width: 651px) {
  .sfh-hero--final .sfh-hero-visual { margin-bottom: 28px; }
  .sfh-hero--final .sfh-control-journey { bottom: -5%; }
  .sfh-hero--final .sfh-control-code { bottom: -10%; right: -2%; }
}
@media (max-width: 1180px) {
  body .mobile-menu-panel:not([hidden]) {
    position: fixed;
    right: 14px;
  }
  body .mobile-contact-fab {
    position: fixed;
    z-index: 55;
    left: max(16px, env(safe-area-inset-left));
    bottom: var(--sfd-fab-bottom);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 20px;
    border: 2px solid #111110;
    border-radius: 999px;
    background: var(--sf-yellow);
    color: #111110;
    box-shadow: 0 4px 18px rgba(0,0,0,.16);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  html[data-theme="dark"] body .mobile-contact-fab,
  html[data-theme="dark"] body .mobile-contact-fab svg { color: #111110 !important; }
  body .site-footer { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
}
@media (max-width: 782px) { body.admin-bar { --sfd-admin-offset: 46px; } }
@media (max-width: 720px) {
  :root { --sfd-header-height: 72px; }
  body :is(.page-anchor-wrap, .services-anchor-wrap) { padding-block: 8px; }
  body :is(.page-anchor-nav, .services-anchor-nav) > div {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: #707069 transparent;
    scroll-padding-inline: 8px;
    padding-bottom: 3px;
  }
  body :is(.page-anchor-nav, .services-anchor-nav) > div::-webkit-scrollbar { display: block; height: 3px; }
  body :is(.page-anchor-nav, .services-anchor-nav) > div::-webkit-scrollbar-thumb { background: #707069; border-radius: 3px; }
  body :is(.page-anchor-nav, .services-anchor-nav) a:not(.anchor-home-link) { font-size: 12px; padding-inline: 12px; }
  body :is(.page-anchor-nav, .services-anchor-nav) > .anchor-home-link { display: grid; width: 44px; min-width: 44px; height: 44px; padding: 6px; }
  :is(.field input, .field textarea, .field select, .contact-form input, .contact-form textarea) { font-size: 16px; }
  .footer-bottom { gap: 16px; }
  .footer-bottom > div { display: flex; flex-wrap: wrap; gap: 16px; }
  .footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; }
}
@media (max-width: 600px) { body.admin-bar { --sfd-admin-offset: 0px; } }

/* Keep the small cards in layout flow, overlapping only the board's bottom frame. */
@media (max-width: 650px) {
  .sfh-hero--final { padding-top: 44px; padding-bottom: 48px; gap: 34px; }
  .sfh-hero--final .sfh-eyebrow { font-size: 10px; letter-spacing: .1em; margin-bottom: 24px; }
  .sfh-hero--final .sfh-hero-lead { font-size: 16px; margin: 26px 0; }
  .sfh-hero--final .sfh-hero-actions { gap: 18px; flex-wrap: wrap; }
  .sfh-hero--final .sfh-text-link { min-height: 44px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-hero-visual {
    min-height: 0;
    margin: 0 auto;
    padding: 44px 5px 12px 0;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    align-items: start;
    gap: 0 10px;
  }
  .sfh-hero--kontrollrom .sfh-control-status { left: 0; top: 0; font-size: 8px; padding: 10px 12px; }
  .sfh-hero--kontrollrom .sfh-control-board {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    padding-bottom: 18px;
    animation: none;
    transform: none;
    translate: none;
    box-shadow: 5px 6px 0 var(--yellow);
  }
  .sfh-hero--kontrollrom .sfh-control-board > header { min-height: 48px; gap: 6px; }
  .sfh-hero--kontrollrom .sfh-control-board > header strong { font-size: 8px; }
  .sfh-hero--kontrollrom .sfh-control-board > header small { font-size: 7px; }
  .sfh-hero--kontrollrom .sfh-control-body { grid-template-columns: minmax(0,.7fr) minmax(0,1.3fr); gap: 8px; padding: 10px; }
  .sfh-hero--kontrollrom .sfh-control-goal { padding: 10px; }
  .sfh-hero--kontrollrom .sfh-control-goal > small { font-size: 6.5px; }
  .sfh-hero--kontrollrom .sfh-control-goal > strong { font-size: clamp(16px,4.8vw,21px); line-height: 1.02; overflow-wrap: normal; }
  .sfh-hero--kontrollrom .sfh-control-goal > p { font-size: 8px; }
  .sfh-hero--kontrollrom .sfh-control-goal > div { margin-top: 22px; }
  .sfh-hero--kontrollrom .sfh-control-streams > header { gap: 5px; padding: 7px; min-height: 38px; }
  .sfh-hero--kontrollrom .sfh-control-streams > header strong { font-size: 6px; }
  .sfh-hero--kontrollrom .sfh-control-streams > header small { font-size: 5px; }
  .sfh-hero--kontrollrom .sfh-control-streams article { min-height: 70px; padding: 8px; gap: 7px; }
  .sfh-hero--kontrollrom .sfh-control-streams article small { font-size: 6px; letter-spacing: .025em; }
  .sfh-hero--kontrollrom .sfh-control-streams article strong { font-size: 9px; line-height: 1.35; }
  .sfh-hero--kontrollrom .sfh-control-streams > footer span { font-size: 5.5px; padding: 4px; }
  .sfh-hero--kontrollrom .sfh-control-board > footer { min-height: 36px; font-size: 6px; }
  .sfh-hero--kontrollrom .sfh-control-board > footer b { font-size: 5.5px; }
  .sfh-hero--final.sfh-hero--kontrollrom :is(.sfh-control-journey, .sfh-control-code) {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    margin: 0;
    transform: none;
    animation: sfd-mobile-card 6s ease-in-out infinite;
    border-radius: 14px;
    box-shadow: 4px 5px 0 var(--ink);
  }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-journey { margin-top: -22px; padding: 12px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-journey small { font-size: 7.5px; letter-spacing: .06em; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-journey > div { margin: 14px 0; gap: 4px; font-size: 10px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-journey footer { font-size: 8px; line-height: 1.5; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-journey footer i { width: 6px; height: 6px; margin-right: 4px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-code { margin-top: -12px; animation-delay: -3s; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-code header { padding: 8px; font-size: 7.5px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-code code { padding: 10px 8px; font-size: 8px; line-height: 1.75; white-space: normal; overflow-wrap: anywhere; }
}
@keyframes sfd-mobile-card { 0%,100% { translate: 0 0; } 50% { translate: 0 -3px; } }
@media (max-width: 360px) {
  .sfh-hero--final .sfh-hero-actions { gap: 12px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-journey { padding: 10px 8px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-journey > div { font-size: 9px; gap: 2px; }
  .sfh-hero--final.sfh-hero--kontrollrom .sfh-control-code code { font-size: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sfh-hero--final.sfh-hero--kontrollrom :is(.sfh-control-journey, .sfh-control-code) { animation: none !important; }
}

/* Confirmed contrast defects in 6.49.0. Scope to the actual surface, including
 * nested dark toolbars inside light illustrations. */
html[data-theme="dark"] main.gcs-page .gcs-delivery-grid article :is(h3, p),
html[data-theme="dark"] main.gcs-page .gcs-format-grid article:nth-child(1) :is(h3, p, span) {
  color: #fff !important;
}
html[data-theme="dark"] main .sp-crm-delivery article :is(h3, p, small) { color: #111110 !important; }
html[data-theme="dark"] main .shop-launch-board > footer :is(b, span) { color: #fff !important; }
html[data-theme="dark"] main .shop-launch-board > footer > b { color: var(--sf-yellow) !important; }
html[data-theme="dark"] main.case-detail-page .compact-case-goals .compact-delivery-grid article:nth-child(4) :is(h3, p) { color: #fff !important; }
html[data-theme="dark"] main .engine-foundation :is(small, strong, span) { color: #fff !important; }
html[data-theme] main .rich-integrasjoner-automatisering .ext-middle li > span,
html[data-theme] main.rich-integrasjoner-automatisering .ext-middle li > span { color: #fff !important; }

/* The remaining blue sections need white body copy, without a grey tint. */
html[data-theme] main .priority-proof-web .priority-proof-copy > :is(p, .eyebrow),
html[data-theme] main :is(.ops-improve-copy, .sp-intent-copy, .ext-tech-copy) > :is(p, .eyebrow),
html[data-theme] main .shop-journey-head > p,
html[data-theme] main .shop-journey-head > div > .eyebrow,
html[data-theme] main :is(.shop-booking-layout, .gcs-material-layout, .sp-copy-source-layout, .sp-design-system-layout, .sp-photo-editing-layout, .sp-m365-workplace-layout) > div > :is(p, .eyebrow),
html[data-theme] main :is(.sp-3d-accuracy, .sp-crm-delivery) > .site-container > header :is(p, .eyebrow),
html[data-theme] main .case-result-grid > div > p,
html[data-theme] main .compact-case-principle > p { color: #fff !important; }

/* Article metadata sits on the retained yellow hero in both modes. */
html[data-theme] main .article-header .article-meta { color: #45453f; }
html[data-theme="dark"] main.services-page .services-faq .eyebrow { color: #fff !important; }
.sf-concept-home .sfh-control-streams > header small { color: #174c3c; }

/* The active section must change foreground and background together. */
html[data-theme] body :is(.page-anchor-nav, .services-anchor-nav) a.is-active {
  color: #111110 !important;
  background: var(--sf-yellow);
  transition: none;
}

/* These are customer-facing paragraphs, not miniature illustration labels.
 * Several older mobile rules reduced them to 11–13px. Let cards grow with text. */
@media (max-width: 720px) {
  body main#main :is(
    .page-hero-insight,
    .simple-web-audience-grid,
    .simple-web-feature-grid,
    .simple-web-scope-grid,
    .simple-web-process-grid,
    .compact-goal-grid,
    .compact-delivery-grid,
    .case-goal-grid,
    .case-process-track,
    .case-measure-grid,
    .sp-crm-delivery article,
    .ops-ai-note,
    .web-starter-note,
    .article-steps
  ) p { font-size: 15.5px; line-height: 1.65; }
  body main .case-compare-controls > p { font-size: 13px; line-height: 1.6; }
  body main .contact-form > p { font-size: 14px; line-height: 1.6; }
  body main .article-header .article-meta { font-size: 12px; line-height: 1.6; }
  body main :is(.case-process-track, .case-measure-grid, .compact-delivery-grid) article { min-width: 0; height: auto; }
}
html[data-theme="dark"] main.gcs-page .gcs-delivery-grid article:first-child > span svg { color: #fff !important; }

/* 6.50.3 — readable content at every breakpoint. Keep miniature artwork
 * typography separate from paragraphs, offer details and comparison lists. */
body main#main :is(
  .page-hero-insight,
  .simple-web-audience-grid,
  .simple-web-feature-grid,
  .simple-web-scope-grid,
  .simple-web-process-grid,
  .simple-web-addon-card,
  .compact-goal-grid,
  .compact-delivery-grid,
  .case-goal-grid,
  .case-process-track,
  .case-measure-grid,
  .sp-crm-delivery article,
  .ops-ai-note,
  .web-starter-note,
  .article-steps
) p {
  font-size: 1rem;
  line-height: 1.65;
}
body main#main :is(
  .simple-web-scope-grid,
  .simple-web-example-copy,
  .case-challenge-lists,
  .ops-cycle-copy
) li {
  font-size: .9375rem;
  line-height: 1.65;
}
body main#main .simple-web-hero-copy > small {
  font-size: .875rem;
  line-height: 1.6;
}
body main#main .simple-web-offer-board li {
  align-items: flex-start;
  font-size: .875rem;
  line-height: 1.5;
}
body main#main .simple-web-offer-board li svg { margin-top: .15em; }
body main#main :is(.simple-web-offer-price, .simple-web-growth-path) small,
body main#main .simple-web-addon-card > footer,
body main#main .simple-web-addon-card > div > span {
  font-size: .8125rem;
  line-height: 1.55;
}
body main#main :is(.ops-takeover-audit, .priority-feature-copy) small,
body main#main .ops-opening-principles small,
body main#main .about-capability-flow small,
body main#main .reference-project-description {
  font-size: .9375rem;
  line-height: 1.6;
}
body main#main :is(
  .sp-ai-note,
  .sp-copy-delivery,
  .sp-design-delivery-v2,
  .sp-crm-delivery,
  .case-detail-facts,
  .simple-web-scope-grid,
  .services-marketing-card
) small,
body main#main .reference-project-copy > small,
body main#main .reference-project-copy li,
body main#main .article-toc > small {
  font-size: .75rem;
  line-height: 1.5;
}
body main#main .services-system-scope :is(small, em) {
  font-size: .875rem;
  line-height: 1.55;
}
body main#main .services-system-scope b { font-size: .9375rem; }
body main#main .article-toc li { font-size: .875rem; line-height: 1.5; }
body main#main .case-compare-controls > p { font-size: .875rem; line-height: 1.6; }
body main#main .case-compare-scene > span { font-size: .8125rem; line-height: 1.5; }
body main#main .case-compare-scene > strong { font-size: .9375rem; line-height: 1.3; }
body main#main .case-compare-view-controls button { font-size: .8125rem; }
/* Older hero insight rules use !important at both mobile and desktop widths. */
body main#main .page-hero-insight p { font-size: 1rem !important; line-height: 1.65 !important; }
body main#main :is(
  .simple-web-audience-grid,
  .simple-web-feature-grid,
  .simple-web-scope-grid,
  .compact-goal-grid,
  .compact-delivery-grid,
  .case-goal-grid,
  .case-process-track,
  .case-measure-grid
) article { min-width: 0; height: auto; }

/* 6.50.4 — paired actions stay beside each other on small screens. */
@media (max-width: 720px) {
  body main#main :is(
    .sfh-hero-actions,
    .services-overview-actions,
    .simple-web-hero-actions,
    .simple-web-example-copy > div,
    .compact-result-actions,
    .case-link-pair
  ) {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
  }
  body main#main :is(
    .sfh-hero-actions,
    .services-overview-actions,
    .simple-web-hero-actions,
    .simple-web-example-copy > div,
    .compact-result-actions,
    .case-link-pair
  ) > a {
    display: inline-flex;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    min-width: 0;
    min-height: 44px;
    margin-top: 0;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  body main#main :is(
    .sfh-hero-actions,
    .services-overview-actions,
    .simple-web-hero-actions,
    .simple-web-example-copy > div,
    .compact-result-actions
  ) > :is(.button, .sfh-button),
  body main#main .case-link-pair > .case-study-button,
  body main#main .services-overview-actions > a:first-child {
    padding: 11px 12px;
  }
  body main#main :is(
    .sfh-hero-actions,
    .services-overview-actions,
    .simple-web-hero-actions,
    .simple-web-example-copy > div,
    .compact-result-actions,
    .case-link-pair
  ) > a svg { flex: 0 0 14px; width: 14px; height: 14px; }

  /* Reserve an icon column so long questions cannot run behind the +/- sign. */
  body main#main .faq-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    min-height: 64px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
    list-style: none;
  }
  body main#main .faq-list summary::marker { content: ''; }
  body main#main .faq-list summary::after {
    content: '+';
    position: static;
    inset: auto;
    display: grid;
    place-items: center;
    justify-self: end;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    transform: none;
  }
  body main#main .faq-list details[open] > summary::after { content: '−'; }
  body main#main .faq-list details > p {
    margin: 0;
    padding: 0 20px 24px;
    font-size: 16px;
    line-height: 1.65;
  }

  /* Fixed internal spacing prevents the icon/title gap collapsing as copy grows. */
  body main#main :is(.simple-web-audience-grid, .simple-web-feature-grid) article {
    min-height: 0;
    height: auto;
    padding: 26px 24px;
  }
  body main#main :is(.simple-web-audience-grid, .simple-web-feature-grid) article > span { flex-shrink: 0; }
  body main#main :is(.simple-web-audience-grid, .simple-web-feature-grid) h3 {
    margin: 24px 0 12px;
    line-height: 1.15;
  }
  body main#main :is(.simple-web-audience-grid, .simple-web-feature-grid) p { margin: 0; }
  body main#main .simple-web-scope-grid article { padding: 26px 24px; }
  body main#main .simple-web-process-grid > ol > li { padding: 20px; gap: 16px; }
}

/* 6.50.5 — keep desktop FAQ icons inside the card, centred beside the question. */
@media (min-width: 721px) {
  body main#main .faq-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    padding-right: 20px;
    list-style: none;
  }
  body main#main .faq-list summary::marker { content: ''; }
  body main#main .faq-list summary::after {
    content: '+';
    position: static;
    inset: auto;
    display: grid;
    place-items: center;
    justify-self: end;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    transform: none;
  }
  body main#main .faq-list details[open] > summary::after { content: '−'; }
}

/* 7.0.2: Legal documents use a text-only hero. */
body main#main .page-hero.page-hero-document .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}
