@font-face {
  font-family: Bricolage;
  src: url("/fonts/bricolage-grotesque.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}
:root {
  --cream: #ffffff;
  --cream-soft: #f1f6fa;
  --paper: #ffffff;
  --ink: #001449;
  --graphite: #084a91;
  --brass: #2291d1;
  --brass-dark: #084a91;
  --muted: #536579;
  --line: rgb(0 20 73 / 0.13);
  --line-light: rgb(255 255 255 / 0.16);
  --shadow: 0 24px 70px rgb(0 20 73 / 0.08);
  --radius: 0.65rem;
  --content: 74rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 88% 5%,
      rgb(34 145 209 / 0.12),
      transparent 24rem
    ),
    var(--cream);
  color: var(--ink);
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-color: var(--brass);
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

::selection {
  background: rgb(34 145 209 / 0.3);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: clamp(1.1rem, 2.4vw, 2rem);
  margin-left: auto;
}

.primary-nav a {
  color: rgb(0 20 73 / 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 0.55rem;
}

.language-link {
  min-width: 2.6rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--cream-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: var(--graphite);
  text-decoration: none;
  transform: translateY(-1px);
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-light:hover {
  background: var(--paper);
}

.button-outline {
  border-color: rgb(0 20 73 / 0.2);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: rgb(255 253 248 / 0.54);
}

.arrow {
  font-size: 1.08em;
  line-height: 1;
}

.hero {
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4.5rem, 9vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--brass-dark);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 7.4vw, 6.65rem);
  font-weight: 700;
  line-height: 0.96;
}

.work-hero h1 {
  max-width: 10ch;
}

.lead {
  max-width: 42rem;
  margin: 0;
  color: rgb(0 20 73 / 0.68);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--cream);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 50%;
}

.hero-panel::before {
  width: 21rem;
  height: 21rem;
  top: -8rem;
  right: -6rem;
  box-shadow:
    0 0 0 2.6rem rgb(255 255 255 / 0.025),
    0 0 0 5.2rem rgb(255 255 255 / 0.018);
}

.hero-panel::after {
  width: 7rem;
  height: 7rem;
  top: 5.25rem;
  right: 3.25rem;
  border-color: var(--brass);
  background: radial-gradient(circle, rgb(34 145 209 / 0.24), transparent 64%);
}

.panel-label {
  margin: 0 0 1.4rem;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  min-height: 4.6rem;
  padding: 0.9rem 0.65rem 0.9rem 0;
  border-top: 1px solid var(--line-light);
  color: rgb(255 255 255 / 0.83);
  font-size: 0.88rem;
  line-height: 1.4;
}

.panel-list li:nth-child(even) {
  padding-left: 0.8rem;
  border-left: 1px solid var(--line-light);
}

.context-strip {
  border-block: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--cream);
}

.strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding-block: 2.25rem;
}

.strip-grid p {
  margin: 0;
}

.strip-statement {
  max-width: 43rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 620;
  line-height: 1.35;
}

.strip-note {
  color: rgb(255 255 255 / 0.65);
  font-size: 0.92rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-soft {
  border-block: 1px solid rgb(0 20 73 / 0.06);
  background: var(--cream-soft);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}

.section-dark .eyebrow {
  color: #8cccf1;
}

.section-heading {
  max-width: 49rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
}

.section-heading h2,
.split-copy h2,
.cta h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 680;
  line-height: 1.03;
}

.section-heading > p:last-child,
.split-copy > p,
.cta p {
  margin-bottom: 0;
  color: rgb(0 20 73 / 0.64);
  font-size: 1.06rem;
}

.section-dark .section-heading > p:last-child,
.section-dark .split-copy > p,
.section-dark .cta p {
  color: rgb(255 255 255 / 0.66);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 7.5rem;
}

.split-copy h2 {
  max-width: 12ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  background: var(--line);
}

.card {
  min-height: 15rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--cream-soft);
}

.card-number {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 2.5rem;
  border-radius: 0.4rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 750;
}

.card h3,
.process-step h3,
.product-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.24rem;
  font-weight: 690;
  line-height: 1.25;
}

.card p,
.process-step p {
  margin: 0;
  color: rgb(0 20 73 / 0.62);
  font-size: 0.93rem;
}

.deliverables {
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  position: relative;
  padding: 1.35rem 1rem 1.35rem 2.25rem;
  border-top: 1px solid var(--line-light);
  color: rgb(255 255 255 / 0.75);
}

.deliverables li::before {
  content: "";
  position: absolute;
  top: 1.85rem;
  left: 0.25rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--brass);
  border-radius: 50%;
}

.deliverables strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  background: var(--line);
}

.process-step {
  min-height: 18rem;
  padding: 1.75rem;
  background: var(--cream-soft);
}

.process-step .card-number {
  margin-bottom: 3.25rem;
}

.note-box {
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--brass);
  background: rgb(34 145 209 / 0.09);
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 1.2rem;
  right: 0.3rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 50rem;
  margin: -0.25rem 0 1.6rem;
  color: rgb(0 20 73 / 0.64);
}

.product-list {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  min-height: 14.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  background: var(--cream-soft);
  box-shadow: 0 12px 40px transparent;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.product-card:hover {
  border-color: rgb(0 20 73 / 0.26);
  box-shadow: 0 20px 50px rgb(0 20 73 / 0.06);
  transform: translateY(-2px);
}

.product-index {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  padding-top: 0.15rem;
  border-right: 1px solid var(--line);
  color: var(--brass-dark);
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.product-copy {
  max-width: 45rem;
}

.product-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.product-card p {
  margin: 0;
  color: rgb(0 20 73 / 0.64);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.tag {
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 99rem;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-link {
  white-space: nowrap;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.principle {
  padding: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.principle h3 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.principle p {
  margin: 0;
  color: rgb(255 255 255 / 0.64);
  font-size: 0.9rem;
}

.cta-wrap {
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.65fr);
  gap: 2.5rem;
  align-items: end;
  padding: clamp(2rem, 6vw, 4.25rem);
  border-radius: calc(var(--radius) + 0.3rem);
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 15ch;
  margin-bottom: 0;
  color: var(--cream);
}

.cta p {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-block: 2.25rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-weight: 750;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.25rem;
  font-size: 0.84rem;
  font-weight: 600;
}

@media (max-width: 58rem) {
  .primary-nav {
    display: none;
  }

  .hero-grid,
  .split,
  .strip-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 24rem;
  }

  .split-copy {
    position: static;
  }

  .split-copy h2 {
    max-width: 18ch;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-template-columns: 5rem minmax(0, 1fr);
  }

  .product-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 42rem) {
  .container {
    width: min(calc(100% - 2rem), var(--content));
  }

  .header-inner {
    min-height: 4.25rem;
  }

  .header-actions .button {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-panel {
    min-height: 22rem;
  }

  .card-grid,
  .process-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .process-step {
    min-height: auto;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-index {
    min-height: 3.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-link {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .skip-link,
  .hero-actions,
  .cta-wrap,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .hero {
    padding: 2rem 0;
  }

  .hero-panel,
  .section-dark {
    background: white;
    color: black;
  }

  .hero-panel *,
  .section-dark * {
    color: black !important;
  }
}

/* Shared MDose white-and-blue identity. */
h1,
h2,
h3,
.strip-statement {
  font-family: Bricolage, Arial, sans-serif;
  font-weight: 550;
}
body {
  background: #fff;
}
.brand img {
  width: 150px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
}
.header-inner {
  min-height: 88px;
}
.brand {
  width: 150px;
}
.button {
  font-weight: 500;
  border-radius: 6px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
}
h1 {
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero-panel {
  background: linear-gradient(135deg, #084a91, #001449 70%);
}
.work-hero h1 {
  max-width: 14ch;
}
.hero-panel .panel-list li {
  min-height: 3.6rem;
}
.case-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 45px;
  background: #001449;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 45px;
  align-items: center;
}
.case-feature h2 {
  color: #fff;
  font-size: 44px;
  margin-bottom: 18px;
}
.case-feature p {
  color: #b8cce1;
  font-size: 15px;
  line-height: 1.8;
}
.case-feature .eyebrow {
  color: #8cccf1;
  margin-bottom: 14px;
}
.case-feature .button {
  margin-top: 24px;
}
.case-feature ul {
  padding-left: 20px;
  color: #d7e4f1;
  font-size: 15px;
  line-height: 1.75;
}
.case-feature li + li {
  margin-top: 16px;
}
.case-breadcrumb {
  font-size: 12px;
  color: #536579;
  margin-bottom: 30px;
}
.case-breadcrumb a {
  text-decoration: none;
}
.case-hero {
  padding-top: 46px;
}
.case-hero h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  max-width: 15ch;
}
.case-hero .hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: stretch;
}
.case-hero .hero-panel {
  min-height: 360px;
}
.case-hero .hero-panel h2 {
  color: white;
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.case-hero .hero-panel > p {
  color: #b8cce1;
  font-size: 14px;
  line-height: 1.8;
}
.case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-block: 1px solid var(--line);
  padding-block: 25px;
}
.case-facts dt {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #536579;
  margin-bottom: 6px;
}
.case-facts dd {
  margin: 0;
  font-size: 14px;
}
.case-body {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 70px;
  padding-block: 75px;
}
.case-toc {
  position: sticky;
  top: 115px;
  align-self: start;
  display: grid;
  gap: 16px;
  font-size: 12px;
}
.case-toc a {
  text-decoration: none;
  color: #536579;
}
.case-toc a:hover {
  color: #084a91;
}
.case-article section + section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.case-article h2 {
  font-size: 38px;
  line-height: 1.12;
  margin-bottom: 20px;
}
.case-article p,
.case-article li {
  font-size: 15px;
  line-height: 1.85;
  color: #536579;
}
.case-article p + p {
  margin-top: 18px;
}
.case-article ul {
  padding-left: 21px;
}
.case-article li + li {
  margin-top: 10px;
}
.case-article .eyebrow {
  font-size: 10px;
  color: #084a91;
  margin-bottom: 14px;
}
.case-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #b9d4e6;
  background: #eef6fa;
  color: #084a91;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  margin-bottom: 20px;
}
.case-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2291d1;
}
.scope-note {
  background: #eef6fa;
  border-left: 2px solid #2291d1;
  padding: 21px 25px;
  margin-top: 26px;
  font-size: 13px !important;
}
.case-article .case-outcome {
  font-family: Bricolage, Arial, sans-serif;
  font-size: 27px;
  line-height: 1.4;
  color: #001449;
}
@media (max-width: 850px) {
  .case-feature {
    gap: 30px;
    padding: 32px;
  }
  .case-hero .hero-grid {
    gap: 35px;
  }
  .case-body {
    grid-template-columns: 170px 1fr;
    gap: 35px;
  }
  .case-article h2 {
    font-size: 32px;
  }
  .case-hero .hero-panel {
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  .brand,
  .brand img {
    width: 130px;
  }
  .brand img {
    height: 49px;
  }
  .header-inner {
    min-height: 72px;
  }
  .header-actions .button {
    font-size: 11px;
    padding: 10px 12px;
  }
  .case-feature {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }
  .case-feature h2 {
    font-size: 37px;
  }
  .case-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .case-hero h1 {
    font-size: 48px;
  }
  .case-hero .hero-panel {
    min-height: 290px;
  }
  .case-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .case-body {
    grid-template-columns: 1fr;
    padding-block: 45px;
    gap: 30px;
  }
  .case-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 23px;
  }
  .case-article h2 {
    font-size: 32px;
  }
}

.case-overview {
  padding-block: 75px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.case-overview h2 {
  font-size: 42px;
  line-height: 1.1;
  max-width: 400px;
}
.case-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}
.case-areas li {
  display: flex;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
  font-family: Bricolage, Arial, sans-serif;
  font-size: 27px;
  letter-spacing: -0.025em;
}
.case-areas li:first-child {
  padding-top: 0;
}
.case-areas span {
  font: 11px Roboto;
  color: #084a91;
  width: 30px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .case-overview {
    padding-block: 48px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .case-overview h2 {
    font-size: 32px;
  }
  .case-areas li {
    font-size: 24px;
    gap: 20px;
  }
}

.case-feature {
  margin-top: 65px;
}
