/* Base theme styles. WordPress theme metadata remains in /style.css. */
:root {
    --blue-950: #032b53;
    --blue-900: #063b73;
    --blue-800: #07509a;
    --blue-700: #0966bd;
    --blue-100: #e9f3fb;
    --cyan: #1bb7d7;
    --ink: #102235;
    --muted: #5f6f80;
    --line: #dbe3ea;
    --surface: #f4f7fa;
    --white: #fff;
    --orange: #f28c28;
    --shadow: 0 18px 50px rgba(7, 36, 66, .12);
}

*, *:before, *:after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
iframe, video { display: block; max-width: 100%; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-900); }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .65em; color: var(--ink); font-weight: 700; line-height: 1.16; letter-spacing: -.025em; }
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
p { margin: 0 0 1em; }
ul, ol { margin-top: 0; }
.site-shell { width: calc(100% - 48px); max-width: 1240px; margin-right: auto; margin-left: auto; }
.site-shell--narrow { max-width: 920px; }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 10px 16px; color: #fff; background: #000; transform: translateY(-200%); }
.skip-link:focus { transform: none; }

.utility-bar { color: #dceaf6; background: var(--blue-950); font-size: 13px; }
.utility-bar__inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; }
.utility-bar p { margin: 0; }
.utility-bar__links { display: flex; align-items: center; margin-left: 24px; }
.utility-bar__links a { display: inline-block; margin-left: 24px; color: #fff; }
.utility-bar__links a:hover { color: #9cddf2; }

.site-header { position: relative; z-index: 100; border-bottom: 1px solid rgba(12, 54, 93, .1); background: #fff; box-shadow: 0 4px 18px rgba(7, 40, 72, .05); }
.site-header__inner { display: flex; min-height: 86px; align-items: center; }
.site-logo { display: block; flex: 0 0 215px; }
.site-logo img { width: auto; max-width: 215px; max-height: 66px; object-fit: contain; }
.site-navigation { margin-left: auto; }
.site-navigation .menu { display: flex; align-items: stretch; margin: 0; padding: 0; list-style: none; }
.site-navigation .menu-item { position: relative; margin: 0; }
.site-navigation .menu > .menu-item > a { display: flex; min-height: 86px; align-items: center; padding: 0 16px; color: var(--ink); font-size: 15px; font-weight: 700; white-space: nowrap; }
.site-navigation .menu > .menu-item > a:hover,
.site-navigation .current-menu-item > a,
.site-navigation .current-menu-ancestor > a { color: var(--blue-700); }
.site-navigation .sub-menu {
    position: absolute; top: 100%; left: 0; z-index: 20;
    width: 260px; margin: 0; padding: 12px 0; list-style: none;
    visibility: hidden; opacity: 0; transform: translateY(8px);
    background: #f3f5f7; border-top: 3px solid var(--blue-700); box-shadow: var(--shadow);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.site-navigation .sub-menu .sub-menu { top: -12px; left: 100%; }
.site-navigation .menu-item:hover > .sub-menu,
.site-navigation .menu-item:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: none; }
.site-navigation .sub-menu a { display: block; padding: 10px 20px; border-bottom: 1px solid #edf1f4; color: var(--ink); font-size: 14px; }
.site-navigation .sub-menu li:last-child > a { border-bottom: 0; }
.site-navigation .sub-menu a:hover { padding-left: 24px; color: var(--blue-700); background: var(--blue-100); }
.header-quote { display: inline-flex; min-height: 44px; margin-left: 18px; padding: 0 20px; align-items: center; justify-content: center; color: #fff; background: var(--blue-700); font-weight: 700; }
.header-quote:hover { color: #fff; background: var(--blue-900); }
.menu-toggle { display: none; width: 46px; height: 42px; margin-left: auto; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 28px; height: 2px; margin: 5px auto; background: var(--ink); }

.home-hero { position: relative; min-height: 660px; overflow: hidden; background: var(--blue-950); }
.home-hero > picture { position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.home-hero__media, .page-hero > img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero__overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(90deg, rgba(3, 31, 59, .94) 0%, rgba(3, 38, 70, .75) 48%, rgba(4, 42, 78, .12) 78%); }
.home-hero__content { position: relative; z-index: 2; display: flex; min-height: 660px; max-width: 1180px; flex-direction: column; align-items: flex-start; justify-content: center; color: #fff; }
.home-hero h1 { max-width: 760px; margin-bottom: 22px; color: #fff; font-size: 64px; }
.home-hero__content > p:not(.eyebrow) { max-width: 690px; color: #e7f1f9; font-size: 20px; line-height: 1.6; }
.eyebrow { margin-bottom: 12px; color: var(--blue-700); font-size: 13px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow--light { color: #8ee2f2; }
.button-row { display: flex; flex-wrap: wrap; margin: 20px -6px 0; }
.button { display: inline-flex; min-height: 50px; margin: 6px; padding: 0 25px; align-items: center; justify-content: center; border: 2px solid var(--blue-700); color: #fff; background: var(--blue-700); font-weight: 700; line-height: 1.2; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.button:hover { color: #fff; border-color: var(--blue-900); background: var(--blue-900); transform: translateY(-2px); }
.button--outline { border-color: rgba(255,255,255,.75); color: #fff; background: transparent; }
.button--outline:hover { border-color: #fff; color: var(--blue-950); background: #fff; }
.button--dark { border-color: var(--blue-950); background: var(--blue-950); }
.button--light { border-color: #fff; color: var(--blue-900); background: #fff; }
.button--light:hover { border-color: #dff4f8; color: var(--blue-950); background: #dff4f8; }
.text-link { color: var(--blue-700); font-weight: 800; }
.text-link:hover { color: var(--blue-950); }

.section { padding: 92px 0; }
.section--muted { background: var(--surface); }
.section--dark { color: #dce9f4; background: var(--blue-950); }
.section--dark h2 { color: #fff; }
.section-heading { display: flex; margin-bottom: 38px; align-items: flex-end; justify-content: space-between; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > .text-link { margin: 0 0 6px 28px; white-space: nowrap; }
.section-heading--light h2 { color: #fff; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 270px; grid-gap: 18px; }
.category-tile { position: relative; overflow: hidden; color: #fff; background: var(--blue-950); }
.category-tile--wide { grid-column: span 2; grid-row: span 2; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.category-tile__shade { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(0deg, rgba(2, 27, 51, .88), rgba(2, 27, 51, .08) 66%); }
.category-tile__content { position: absolute; right: 22px; bottom: 20px; left: 22px; }
.category-tile__content h3 { max-width: 100%; margin: 0; color: #fff; font-size: 22px; line-height: 1.18; }

.category-tile:hover { color: #fff; }
.category-tile:hover img { transform: scale(1.045); }

.section--split { overflow: hidden; }
.split-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; grid-gap: 72px; }
.split-layout__media { position: relative; }
.split-layout__media > picture { display: block; }
.split-layout__media > img, .split-layout__media > picture > img { width: 100%; min-height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.experience-card { position: absolute; right: -30px; bottom: -30px; display: flex; width: 210px; min-height: 135px; padding: 24px; flex-direction: column; justify-content: center; color: #fff; background: var(--blue-700); box-shadow: var(--shadow); }
.experience-card strong { font-size: 44px; line-height: 1; }
.experience-card span { margin-top: 8px; line-height: 1.35; }
.split-layout__copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.check-list, .trust-list { margin: 26px 0; padding: 0; list-style: none; }
.check-list li, .trust-list li { position: relative; margin: 11px 0; padding-left: 30px; }
.check-list li:before, .trust-list li:before { position: absolute; top: .13em; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue-700); content: "✓"; font-size: 12px; font-weight: 800; }

.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 20px; }
.solution-card { min-width: 0; background: #fff; box-shadow: 0 10px 34px rgba(12, 44, 73, .09); }
.solution-card a { display: block; color: var(--ink); }
.solution-card img { width: 100%; height: 250px; object-fit: cover; }
.solution-card span { display: block; padding: 22px; }
.solution-card strong, .solution-card small { display: block; }
.solution-card strong { min-height: 55px; font-size: 19px; line-height: 1.4; }
.solution-card small { margin-top: 10px; color: var(--blue-700); font-weight: 800; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-gap: 26px; }
.content-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.content-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.content-card__image { display: block; height: 255px; overflow: hidden; background: var(--blue-100); }
.content-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.content-card:hover .content-card__image img { transform: scale(1.04); }
.content-card__placeholder { display: grid; height: 100%; place-items: center; color: rgba(8, 80, 146, .3); font-size: 54px; font-weight: 800; letter-spacing: .12em; }
.content-card__body { padding: 26px; }
.content-card__body h2 { margin-bottom: 12px; font-size: 23px; line-height: 1.35; }
.content-card__body h2 a { color: var(--ink); }
.content-card__body h2 a:hover { color: var(--blue-700); }
.content-card__body > p:not(.eyebrow) { color: var(--muted); }

.page-hero { position: relative; min-height: 430px; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--blue-950), var(--blue-700)); }
.page-hero__shade { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(90deg, rgba(2, 29, 55, .9), rgba(2, 37, 70, .5), rgba(2, 37, 70, .15)); }
.page-hero__content { position: relative; z-index: 2; display: flex; min-height: 430px; padding-top: 58px; padding-bottom: 58px; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.page-hero h1 { max-width: 900px; margin-bottom: 14px; color: #fff; font-size: 52px; }
.page-hero__content > p { max-width: 850px; color: #e8f2f8; font-size: 18px; }
.breadcrumbs { margin-bottom: 10px; font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; margin: 0 -4px; padding: 0; list-style: none; }
.breadcrumbs li { margin: 3px 4px; }
.breadcrumbs li + li:before { margin-right: 8px; content: "/"; opacity: .55; }
.breadcrumbs a { color: inherit; opacity: .82; }
.breadcrumbs a:hover { opacity: 1; }
.term-children { border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 8px 25px rgba(14, 48, 78, .05); }
.term-children__inner { display: flex; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
.term-children a { display: inline-flex; min-height: 40px; margin: 5px 10px 5px 0; padding: 0 14px; align-items: center; color: var(--ink); background: var(--surface); font-size: 14px; font-weight: 700; }
.term-children a:hover { color: #fff; background: var(--blue-700); }
.term-children a span { margin-left: 8px; opacity: .65; }
.archive-description { margin-top: 70px; padding-top: 52px; border-top: 1px solid var(--line); }
.archive-header { padding: 76px 0; color: #fff; background: linear-gradient(120deg, var(--blue-950), var(--blue-700)); }
.archive-header h1 { color: #fff; }
.archive-header .breadcrumbs { color: #fff; }
.archive-header__lead { max-width: 850px; color: #e1edf6; }

.product-intro { padding: 32px 0 78px; background: var(--surface); }
.product-intro .breadcrumbs { margin: 0 0 28px; color: var(--muted); }
.product-intro__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); grid-gap: 56px; align-items: start; }
.product-gallery__main { display: grid; min-height: 520px; padding: 18px; place-items: center; border: 1px solid var(--line); background: #fff; }
.product-gallery__main img { width: 100%; max-height: 610px; object-fit: contain; }
.product-gallery__thumbs { display: grid; margin-top: 12px; grid-template-columns: repeat(5, 1fr); grid-gap: 10px; }
.product-gallery__thumbs button { height: 96px; padding: 5px; overflow: hidden; border: 2px solid transparent; background: #fff; cursor: pointer; }
.product-gallery__thumbs button.is-active { border-color: var(--blue-700); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__empty { display: grid; min-height: 520px; place-items: center; color: var(--blue-700); background: #fff; font-size: 42px; font-weight: 800; }
.product-summary { padding: 38px; background: #fff; box-shadow: var(--shadow); }
.product-summary h1 { font-size: 42px; }
.product-points { color: #33485b; font-size: 17px; }
.product-points ul { padding-left: 22px; }
.product-points li { margin-bottom: 8px; }
.product-categories { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; }
.product-actions { display: flex; flex-wrap: wrap; margin: 24px -6px 0; }
.trust-list { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.video-frame { position: relative; height: 0; overflow: hidden; padding-bottom: 56.25%; background: #000; box-shadow: var(--shadow); }
.video-frame iframe, .video-frame video { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; object-fit: contain; }

.article-header { padding: 72px 0 48px; background: var(--surface); }
.article-header .breadcrumbs { color: var(--muted); }
.article-header h1 { font-size: 52px; }
.article-lead { color: var(--muted); font-size: 20px; }
.article-body, .page-content { padding: 64px 0 92px; }
.article-featured { margin: 0 0 44px; }
.article-featured img { width: 100%; box-shadow: var(--shadow); }
.article-taxonomy { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); }
.article-taxonomy span { color: var(--ink); font-weight: 800; }

.prose { color: #273b4e; font-size: 17px; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { margin-top: 1.8em; font-size: 34px; }
.prose h3 { margin-top: 1.6em; font-size: 26px; }
.prose h4 { margin-top: 1.5em; font-size: 20px; }
.prose p, .prose li { line-height: 1.78; }
.prose img { height: auto; margin: 30px auto; }
.prose figure { max-width: 100%; margin: 32px auto; }
.prose iframe { max-width: 100%; }
.prose table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { color: #fff; background: var(--blue-900); }
.prose tr:nth-child(even) td { background: var(--surface); }
.prose blockquote { margin: 30px 0; padding: 22px 28px; border-left: 4px solid var(--blue-700); background: var(--blue-100); }
.prose .alignleft { float: left; margin: 6px 28px 20px 0; }
.prose .alignright { float: right; margin: 6px 0 20px 28px; }
.prose:after { display: table; clear: both; content: ""; }

.navigation.pagination { margin-top: 52px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; }
.page-numbers { display: grid; min-width: 42px; height: 42px; margin: 4px; padding: 0 12px; place-items: center; border: 1px solid var(--line); color: var(--ink); background: #fff; }
.page-numbers.current, .page-numbers:hover { color: #fff; border-color: var(--blue-700); background: var(--blue-700); }
.empty-state { padding: 64px; border: 1px solid var(--line); text-align: center; background: var(--surface); }

.site-cta { padding: 58px 0; color: #dcecf8; background: linear-gradient(120deg, var(--blue-700), var(--cyan)); }
.site-cta__inner { display: flex; align-items: center; justify-content: space-between; }
.site-cta__inner > div { max-width: 820px; }
.site-cta h2 { margin-bottom: 12px; color: #fff; }
.site-cta p { margin-bottom: 0; }
.site-cta .button { flex: 0 0 auto; margin-left: 40px; }
.site-footer { padding-top: 70px; color: #b8c9d9; background: #031f3a; }
.footer-grid { display: grid; padding-bottom: 58px; grid-template-columns: 1.3fr 1fr .8fr 1fr; grid-gap: 50px; }
.site-logo--footer { margin-bottom: 22px; }
.site-logo--footer img { filter: brightness(0) invert(1); }
.footer-brand p { max-width: 360px; }
.site-footer h2 { margin-bottom: 20px; color: #fff; font-size: 18px; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.site-footer a { color: #dce8f1; }
.site-footer a:hover { color: #70d9ed; }
.site-footer address { font-style: normal; }
.site-footer__bottom { display: flex; min-height: 66px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.site-footer__bottom p { margin: 0; }

.search-form { display: flex; max-width: 620px; margin-top: 24px; }
.search-form label { flex: 1 1 auto; }
.search-field { width: 100%; height: 50px; padding: 0 16px; border: 1px solid var(--line); border-radius: 0; }
.search-submit { min-width: 110px; height: 50px; border: 0; color: #fff; background: var(--blue-700); font-weight: 700; cursor: pointer; }
.error-page { min-height: 680px; padding: 100px 0; text-align: center; background: var(--surface); }
.error-page .search-form, .error-page .button-row { justify-content: center; margin-right: auto; margin-left: auto; }
.error-code { margin: 0; color: var(--blue-700); font-size: 120px; font-weight: 800; line-height: 1; }

@media (max-width: 1120px) {
    h1 { font-size: 44px; }
    .site-logo { flex-basis: 185px; }
    .site-logo img { max-width: 185px; }
    .site-navigation .menu > .menu-item > a { padding-right: 10px; padding-left: 10px; font-size: 13px; }
    .header-quote { padding-right: 15px; padding-left: 15px; }
    .home-hero, .home-hero__content { min-height: 590px; }
    .home-hero h1 { font-size: 54px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .category-tile--wide { grid-column: span 2; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .product-intro__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); grid-gap: 32px; }
    .product-summary { padding: 28px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: span 3; }
}

@media (max-width: 900px) {
    .utility-bar__inner > p { display: none; }
    .utility-bar__links { width: 100%; margin-left: 0; justify-content: space-between; }
    .utility-bar__links a { margin-left: 0; }
    .site-header__inner { min-height: 74px; }
    .site-logo img { max-height: 56px; }
    .menu-toggle { display: block; }
    .header-quote { display: none; }
    .site-navigation { position: fixed; top: 112px; right: 0; bottom: 0; left: 0; margin: 0; padding: 20px 24px 40px; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateX(100%); background: #fff; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
    .menu-open .site-navigation { visibility: visible; opacity: 1; transform: none; }
    .site-navigation .menu { display: block; }
    .site-navigation .menu > .menu-item > a { min-height: 48px; padding: 0; border-bottom: 1px solid var(--line); font-size: 17px; }
    .site-navigation .sub-menu { position: static; width: auto; padding: 0 0 8px 18px; visibility: visible; opacity: 1; transform: none; border-top: 0; box-shadow: none; }
    .site-navigation .sub-menu .sub-menu { position: static; }
    .site-navigation .sub-menu a { padding: 8px 0; border-bottom: 0; }
    .site-navigation .sub-menu a:hover { padding-left: 4px; background: transparent; }
    .home-hero, .home-hero__content { min-height: 540px; }
    .home-hero h1 { font-size: 48px; }
    .section { padding: 72px 0; }
    .category-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .split-layout, .product-intro__grid { grid-template-columns: 1fr; }
    .split-layout { grid-gap: 62px; }
    .experience-card { right: 20px; }
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-gallery__main { min-height: 450px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
    body { font-size: 15px; }
    h1, .page-hero h1, .article-header h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    .site-shell { width: calc(100% - 32px); }
    .utility-bar { display: none; }
    .site-navigation { top: 74px; }
    .site-logo { flex-basis: 175px; }
    .home-hero, .home-hero__content { min-height: 520px; }
    .home-hero__overlay { background: rgba(3, 31, 59, .8); }
    .home-hero h1 { font-size: 42px; }
    .home-hero__content > p:not(.eyebrow) { font-size: 17px; }
    .button { min-height: 46px; padding-right: 18px; padding-left: 18px; }
    .section { padding: 58px 0; }
    .section-heading { display: block; margin-bottom: 28px; }
    .section-heading > .text-link { display: inline-block; margin: 16px 0 0; }
    .category-grid { display: block; }
    .category-tile { display: block; height: 260px; margin-bottom: 14px; }
    .solution-grid, .card-grid, .footer-grid { grid-template-columns: 1fr; }
    .solution-card img, .content-card__image { height: 240px; }
    .split-layout__media > img, .split-layout__media > picture > img { min-height: 380px; }
    .experience-card { right: 12px; bottom: -28px; width: 175px; min-height: 112px; padding: 18px; }
    .page-hero, .page-hero__content { min-height: 360px; }
    .product-intro { padding-top: 22px; }
    .product-gallery__main { min-height: 340px; }
    .product-gallery__thumbs { grid-template-columns: repeat(5, minmax(70px, 1fr)); overflow-x: auto; }
    .product-gallery__thumbs button { height: 78px; }
    .product-summary { padding: 24px; }
    .product-summary h1 { font-size: 34px; }
    .prose { font-size: 16px; }
    .prose h2 { font-size: 29px; }
    .prose table { display: block; width: 100%; overflow-x: auto; }
    .site-cta__inner { display: block; }
    .site-cta .button { margin: 24px 0 0; }
    .footer-grid { grid-gap: 32px; }
    .site-footer__bottom { display: block; padding: 18px 0; text-align: center; }
    .site-footer__bottom p + p { margin-top: 6px; }
    .error-code { font-size: 88px; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
    html { scroll-behavior: auto; }
    *, *:before, *:after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
