@font-face {
  font-family: "MADE TOMMY";
  src:
    url("../fonts/made-tommy.woff2") format("woff2"),
    url("../fonts/made-tommy.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Geom Graphic";
  src:
    url("../fonts/geom-graphic-semibold.woff2") format("woff2"),
    url("../fonts/geom-graphic-semibold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src:
    url("../fonts/poppins-regular.woff2") format("woff2"),
    url("../fonts/poppins-regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src:
    url("../fonts/poppins-bold.woff2") format("woff2"),
    url("../fonts/poppins-bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --pale-grey: #f1f2f2;
  --charcoal: #414042;
  --deep-grey: #131413;
  --electric-blue: #25a2ce;
  --deep-red: #c13021;
  --builder-yellow: #e5bd13;
  --line: rgba(65, 64, 66, 0.22);
  --heading-font: "MADE TOMMY", "Poppins", Arial, sans-serif;
  --subheading-font: "Geom Graphic", "Poppins", Arial, sans-serif;
  --body-font: "Poppins", Arial, sans-serif;
  --container: 76rem;
  --narrow: 48rem;
  --header-height: 6rem;
  --shadow: 0 1rem 3.5rem rgba(0, 0, 0, 0.1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--deep-grey);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--charcoal);
  text-decoration-color: var(--electric-blue);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--deep-grey);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--black);
  outline-offset: 0.22rem;
}

.hero :focus-visible,
.page-hero :focus-visible,
.section--dark :focus-visible,
.quote-panel :focus-visible,
.site-footer :focus-visible,
.error-hero :focus-visible {
  outline-color: var(--electric-blue);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

::selection {
  background: var(--electric-blue);
  color: var(--deep-grey);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  line-height: 1.08;
}

h1 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2,
h3,
h4 {
  font-family: var(--subheading-font);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.45rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  letter-spacing: -0.01em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  background: var(--white);
  color: var(--deep-grey);
  border: 0.15rem solid var(--electric-blue);
}

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

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

.container--narrow {
  width: min(100% - 3rem, var(--narrow));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 0.4rem 1.6rem rgba(19, 20, 19, 0.08);
}

.header-inner {
  display: flex;
  width: min(100% - 4rem, var(--container));
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--deep-grey);
  text-decoration: none;
}

.brand img {
  width: 14.25rem;
  height: auto;
}

.primary-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--deep-grey);
  font-size: 0.84rem;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.22rem;
  left: 0;
  height: 0.16rem;
  content: "";
  background: var(--electric-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--deep-grey);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--white);
  color: var(--deep-grey);
  border: 1px solid var(--deep-grey);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 1.25rem;
  height: 0.12rem;
  background: currentColor;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -0.4rem;
}

.menu-toggle-lines::after {
  top: 0.4rem;
}

.header-cta {
  flex: 0 0 auto;
}

.nav-application-mobile {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  background: var(--electric-blue);
  color: var(--deep-grey);
  border: 2px solid var(--electric-blue);
  font-family: var(--body-font);
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.button::after {
  content: "→";
  font-size: 1.2em;
  line-height: 1;
}

.button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.button--dark {
  background: var(--deep-grey);
  color: var(--white);
  border-color: var(--deep-grey);
}

.button--dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.button--light {
  background: var(--white);
  color: var(--deep-grey);
  border-color: var(--white);
}

.button--light:hover {
  background: var(--pale-grey);
  color: var(--deep-grey);
  border-color: var(--pale-grey);
}

.button--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button--outline-light:hover {
  background: var(--white);
  color: var(--deep-grey);
  border-color: var(--white);
}

.button--outline-dark {
  background: transparent;
  color: var(--deep-grey);
  border-color: var(--deep-grey);
}

.button--outline-dark:hover {
  background: var(--deep-grey);
  color: var(--white);
  border-color: var(--deep-grey);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  color: var(--electric-blue);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 0.18rem;
  content: "";
  background: currentColor;
}

.eyebrow--dark {
  color: var(--charcoal);
}

.eyebrow--dark::before {
  background: var(--electric-blue);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    var(--deep-grey);
  background-size: 4rem 4rem;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(23rem, 0.82fr);
  gap: clamp(3rem, 6vw, 6rem);
  min-height: min(43rem, calc(100vh - var(--header-height)));
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5.8rem 0 5.6rem;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

.hero .lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: var(--pale-grey);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero .button-row {
  margin-bottom: 2.2rem;
}

.hero-identity {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  margin: 0;
  color: var(--pale-grey);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero-portrait {
  position: relative;
  min-height: 36rem;
  margin: 0;
  background: var(--charcoal);
  border-left: 0.35rem solid var(--electric-blue);
}

.hero-portrait picture,
.hero-portrait img {
  width: 100%;
  height: 100%;
}

.hero-portrait img {
  object-fit: cover;
  object-position: 50% 23%;
}

.portrait-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.1rem 1.3rem;
  background: rgba(19, 20, 19, 0.9);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.35rem);
}

.portrait-label strong,
.portrait-label span {
  display: block;
}

.portrait-label strong {
  font-family: var(--subheading-font);
  font-size: 1rem;
  font-weight: 600;
}

.portrait-label span {
  color: var(--pale-grey);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.credential-item {
  min-height: 7.2rem;
  padding: 1.45rem 2rem;
  border-left: 1px solid var(--line);
}

.credential-item:last-child {
  border-right: 1px solid var(--line);
}

.credential-item span,
.credential-item strong {
  display: block;
}

.credential-item span {
  margin-bottom: 0.2rem;
  color: var(--charcoal);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-item strong {
  color: var(--deep-grey);
  font-family: var(--subheading-font);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 600;
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section--tight {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section--grey {
  background: var(--pale-grey);
}

.section--dark {
  background: var(--deep-grey);
  color: var(--white);
}

.section--blue-soft {
  background: var(--pale-grey);
}

.section-heading {
  max-width: 56rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  margin-bottom: 1.35rem;
}

.section-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section--dark .section-heading p {
  color: var(--pale-grey);
}

.section--dark .prose p,
.section--dark .prose li {
  color: var(--pale-grey);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

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

.editorial-kicker {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  max-width: 27rem;
}

.editorial-kicker h2 {
  margin-bottom: 1.2rem;
}

.editorial-kicker p {
  color: var(--charcoal);
}

.rule-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 2px solid var(--deep-grey);
}

.rule-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.rule-list .number {
  color: var(--charcoal);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.rule-list h3 {
  margin-bottom: 0.65rem;
}

.rule-list p {
  max-width: 40rem;
  margin: 0;
  color: var(--charcoal);
  font-weight: 400;
}

.program-list {
  border-top: 2px solid var(--deep-grey);
}

.program-row {
  display: grid;
  grid-template-columns: 4rem minmax(10rem, 0.7fr) minmax(18rem, 1.3fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  color: var(--deep-grey);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.program-row:hover {
  background: linear-gradient(90deg, transparent 0, var(--pale-grey) 12%, var(--pale-grey) 88%, transparent 100%);
  color: var(--deep-grey);
}

.program-row .number {
  color: var(--charcoal);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.program-row h3 {
  margin: 0;
}

.program-row p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 400;
}

.program-row .arrow {
  color: var(--charcoal);
  font-size: 1.5rem;
}

.program-row--static {
  text-decoration: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid currentColor;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.step {
  position: relative;
  padding: 2.4rem clamp(1.5rem, 3vw, 2.5rem) 2.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.step:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.step .number {
  display: block;
  margin-bottom: 3.2rem;
  color: var(--electric-blue);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.step h3 {
  margin-bottom: 0.9rem;
}

.step p {
  margin: 0;
  color: var(--pale-grey);
  font-weight: 400;
}

.quote-panel {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--deep-grey);
  color: var(--white);
}

.quote-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  content: "";
  background: var(--electric-blue);
}

.quote-panel .quote {
  max-width: 23ch;
  margin-bottom: 1.7rem;
  font-family: var(--subheading-font);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.quote-panel p:not(.quote) {
  max-width: 44rem;
  color: var(--pale-grey);
  font-weight: 400;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--electric-blue);
  color: var(--deep-grey);
}

.cta-band::after {
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 18rem;
  height: 18rem;
  content: "";
  border: 1px solid rgba(19, 20, 19, 0.24);
  transform: rotate(32deg);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-band h2 {
  max-width: 18ch;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-band p {
  max-width: 40rem;
  margin: 0;
}

.cta-band .button-row {
  justify-content: flex-end;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--deep-grey);
  background-size: 4rem 4rem;
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: clamp(1.5rem, 6vw, 6rem);
  width: 0.35rem;
  height: 44%;
  content: "";
  background: var(--electric-blue);
}

.breadcrumbs {
  margin-bottom: 2rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0;
  margin: 0;
  color: var(--pale-grey);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li + li::before {
  margin-right: 0.5rem;
  color: var(--electric-blue);
  content: "/";
}

.breadcrumbs a {
  color: var(--white);
}

.page-hero--light .breadcrumbs ol {
  color: var(--charcoal);
}

.page-hero--light .breadcrumbs a {
  color: var(--charcoal);
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.page-hero .lead {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--pale-grey);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.page-hero--light {
  background: var(--pale-grey);
  color: var(--deep-grey);
}

.page-hero--light .lead {
  color: var(--charcoal);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.page-hero-photo {
  position: relative;
  min-height: 32rem;
  margin: -2.5rem 0;
  border-left: 0.35rem solid var(--electric-blue);
}

.page-hero-photo picture,
.page-hero-photo img {
  width: 100%;
  height: 100%;
}

.page-hero-photo img {
  object-fit: cover;
  object-position: 50% 24%;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.intro-label {
  padding-top: 0.7rem;
  border-top: 0.25rem solid var(--electric-blue);
  color: var(--charcoal);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 47rem;
}

.intro-copy h2 {
  margin-bottom: 1.5rem;
}

.intro-copy p {
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.content-grid > * {
  min-width: 0;
}

.prose {
  min-width: 0;
  max-width: 46rem;
  font-weight: 400;
}

.prose h2,
.prose h3 {
  font-weight: 600;
}

.prose h2 {
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.prose p,
.prose li {
  color: var(--charcoal);
  line-height: 1.85;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: 0.7rem;
}

.prose a {
  font-weight: 700;
}

.answer-first {
  padding: 1.4rem 0 1.4rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--deep-grey) !important;
  border-left: 0.3rem solid var(--electric-blue);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.75 !important;
}

.article-hero,
.blog-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--deep-grey);
  background-size: 4rem 4rem;
}

.article-hero::after,
.blog-hero::after {
  position: absolute;
  top: 0;
  right: clamp(1.5rem, 6vw, 6rem);
  width: 0.35rem;
  height: 33%;
  content: "";
  background: var(--electric-blue);
}

.article-hero {
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(15rem, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.article-hero h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.article-hero .lead {
  max-width: 47rem;
  margin-bottom: 0;
  color: var(--pale-grey);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.75;
}

.article-edition {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem 1.2rem;
  padding: 1.5rem 0;
  border-top: 0.2rem solid var(--electric-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
}

.article-edition span {
  color: var(--pale-grey);
  font-weight: 400;
  text-transform: uppercase;
}

.article-edition strong {
  color: var(--white);
}

.article-edition a {
  color: var(--white);
}

.article-cover {
  position: relative;
  z-index: 1;
  width: min(100%, 75rem);
  margin: clamp(2.5rem, 6vw, 5rem) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.article-aside hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.article-toc {
  padding: 0;
  margin: 0;
  counter-reset: toc;
  list-style: none;
}

.article-toc li {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: toc;
}

.article-toc li::before {
  color: var(--charcoal);
  content: "0" counter(toc);
  font-size: 0.65rem;
  font-weight: 700;
}

.article-toc a {
  color: var(--deep-grey);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration-color: transparent;
}

.article-toc a:hover {
  text-decoration-color: var(--electric-blue);
}

.aside-note {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem !important;
}

.article-callout,
.role-boundary {
  padding: clamp(1.5rem, 4vw, 2.2rem);
  margin: 2.2rem 0;
  background: var(--pale-grey);
}

.article-callout {
  border-left: 0.3rem solid var(--builder-yellow);
}

.article-callout p:last-child,
.article-callout li:last-child,
.role-boundary p:last-child {
  margin-bottom: 0;
}

.article-callout ul {
  margin-bottom: 0;
}

.role-boundary {
  border-top: 0.3rem solid var(--electric-blue);
}

.role-boundary p {
  color: var(--deep-grey);
}

.timeline-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.5rem 0;
  border-top: 2px solid var(--deep-grey);
  border-bottom: 1px solid var(--line);
}

.timeline-visual--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-visual > div {
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.timeline-visual > div:last-child {
  border-right: 0;
}

.timeline-visual span,
.role-grid span {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-family: var(--subheading-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.timeline-visual strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--deep-grey);
  font-family: var(--subheading-font);
  font-size: 1.05rem;
}

.timeline-visual p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.82rem;
  line-height: 1.65;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2.5rem 0;
  border-top: 2px solid var(--deep-grey);
}

.role-grid section {
  padding: 1.8rem 1.8rem 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.role-grid section:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.role-grid section:nth-child(even) {
  padding-left: 2rem;
}

.role-grid span {
  margin-bottom: 0.7rem;
}

.role-grid h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.role-grid p {
  margin: 0;
  font-size: 0.86rem;
}

.comparison-table-wrap {
  width: 100%;
  margin: 2.3rem 0;
  overflow-x: auto;
  border-top: 2px solid var(--deep-grey);
}

.comparison-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  color: var(--charcoal);
  font-size: 0.86rem;
  line-height: 1.6;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: var(--deep-grey);
  font-family: var(--subheading-font);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-list {
  padding: 0 !important;
  margin-top: 1.5rem;
  list-style: none;
  counter-reset: source;
  border-top: 2px solid var(--deep-grey);
}

.source-list li {
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: source;
}

.source-list a::before {
  margin-right: 0.55rem;
  color: var(--charcoal);
  content: "[" counter(source) "]";
  font-size: 0.72rem;
}

.source-list span {
  color: var(--charcoal);
  font-size: 0.84rem;
}

.article-review-note {
  padding: 1.3rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-review-note p {
  margin: 0;
  font-size: 0.82rem;
}

.related-reading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 2px solid var(--deep-grey);
  border-bottom: 1px solid var(--line);
}

.related-reading h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.related-reading-links {
  display: grid;
}

.related-reading-links a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep-grey);
  font-size: 0.9rem;
  text-decoration-color: transparent;
}

.related-reading-links a::after {
  content: "→";
}

.blog-hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
  gap: clamp(3rem, 10vw, 9rem);
  align-items: end;
}

.blog-hero h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.blog-hero-copy {
  padding-top: 1.4rem;
  border-top: 0.25rem solid var(--electric-blue);
}

.blog-hero-copy > p:first-child {
  color: var(--pale-grey);
  font-weight: 400;
  line-height: 1.8;
}

.blog-issue {
  display: flex;
  justify-content: space-between;
  padding-top: 1.4rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--subheading-font);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-issue span {
  color: var(--electric-blue);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.45fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
  max-width: none;
}

.section-heading--split h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.blog-card {
  grid-column: span 4;
  min-height: 27rem;
  border-top: 0.25rem solid var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.blog-card--featured {
  grid-column: span 8;
  background: var(--deep-grey);
  border-top-color: var(--electric-blue);
}

.blog-card-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--deep-grey);
  text-decoration: none;
}

.blog-card--featured .blog-card-link {
  color: var(--white);
}

.blog-card-number {
  grid-row: 1 / 6;
  margin-right: 1.5rem;
  color: var(--charcoal);
  font-family: var(--subheading-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.blog-card--featured .blog-card-number {
  color: var(--electric-blue);
}

.blog-card-topic {
  color: var(--charcoal);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-card--featured .blog-card-topic,
.blog-card--featured .blog-card-meta {
  color: var(--pale-grey);
}

.blog-card h3 {
  max-width: 16ch;
  margin: 1.3rem 0;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.blog-card--featured h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.blog-card p {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
}

.blog-card--featured p {
  max-width: 43rem;
  color: var(--pale-grey);
}

.blog-card-meta {
  align-self: end;
  margin-top: 1.5rem;
  color: var(--charcoal);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-action {
  align-self: end;
  justify-self: end;
  margin-top: 1.5rem;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-card-link:hover {
  color: var(--deep-grey);
  box-shadow: inset 0 -0.25rem 0 var(--electric-blue);
}

.blog-card--featured .blog-card-link:hover {
  color: var(--white);
}

.rule-list--light {
  border-top-color: var(--white);
}

.rule-list--light li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.rule-list--light p {
  color: var(--pale-grey);
}

.author-feature {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.author-feature-photo {
  position: relative;
  height: clamp(27rem, 50vw, 42rem);
  margin-bottom: 0;
  border-left: 0.35rem solid var(--electric-blue);
}

.author-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.author-feature h2 {
  max-width: 16ch;
}

.author-feature > div > p:not(.eyebrow) {
  max-width: 45rem;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.85;
}

.author-article-list {
  padding: 0 !important;
  margin: 1.5rem 0 3rem;
  list-style: none;
  border-top: 2px solid var(--deep-grey);
}

.author-article-list li {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.author-article-list a {
  color: var(--deep-grey);
  font-family: var(--subheading-font);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.author-article-list span {
  color: var(--charcoal);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.65;
}

.info-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 2rem;
  background: var(--pale-grey);
  border-top: 0.3rem solid var(--electric-blue);
}

.info-aside h2,
.info-aside h3 {
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
}

.info-aside p,
.info-aside li {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 400;
}

.info-aside ul {
  padding-left: 1.1rem;
}

.info-aside .button {
  width: 100%;
  margin-top: 0.7rem;
}

.notice {
  padding: 1.3rem 1.5rem;
  background: var(--pale-grey);
  border-left: 0.3rem solid var(--builder-yellow);
  color: var(--deep-grey);
  font-weight: 400;
}

.notice strong {
  font-weight: 700;
}

.disclaimer {
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--pale-grey);
  border-left: 0.3rem solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 400;
}

.faq-list {
  border-top: 2px solid var(--deep-grey);
}

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

.faq-list summary {
  position: relative;
  padding: 1.8rem 3.4rem 1.8rem 0;
  cursor: pointer;
  font-family: var(--subheading-font);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 1.8rem;
  height: 1.8rem;
  content: "+";
  color: var(--charcoal);
  font-size: 1.7rem;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

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

.faq-answer {
  max-width: 50rem;
  padding: 0 3.5rem 1.8rem 0;
}

.faq-answer p,
.faq-answer li {
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--deep-grey);
}

.contact-block {
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-block:first-child {
  border-left: 1px solid var(--line);
}

.contact-block .label {
  display: block;
  margin-bottom: 3rem;
  color: var(--charcoal);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-block h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-block p,
.contact-block address {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.93rem;
  font-style: normal;
  font-weight: 400;
}

.contact-block a:not(.button) {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
}

.legal-copy {
  max-width: 58rem;
  font-weight: 400;
}

.related-service {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--white);
  border-top: 0.3rem solid var(--electric-blue);
  border-bottom: 1px solid var(--line);
}

.related-service h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.related-service p {
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.8;
}

.related-service .button {
  margin-top: 0.5rem;
}

.legal-copy h2 {
  margin-top: 3.7rem;
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin-top: 2.3rem;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--charcoal);
  line-height: 1.9;
}

.legal-copy a {
  font-weight: 700;
}

.texas-notice {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin: 2rem 0;
  background: var(--pale-grey);
  border-top: 0.35rem solid var(--deep-red);
}

.texas-notice p {
  color: var(--deep-grey);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.8;
}

.site-footer {
  padding: 4.5rem 0 2rem;
  background: var(--deep-grey);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand img {
  width: 8.5rem;
  height: 8.5rem;
  margin-bottom: 1.3rem;
}

.footer-brand p {
  max-width: 24rem;
  color: var(--pale-grey);
  font-size: 0.9rem;
  font-weight: 400;
}

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

.footer-nav h2 {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav li + li {
  margin-top: 0.55rem;
}

.footer-nav a {
  color: var(--pale-grey);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration-color: transparent;
}

.footer-nav a:hover {
  color: var(--electric-blue);
  text-decoration-color: currentColor;
}

.footer-compliance {
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclosure-image {
  width: min(100%, 51rem);
  height: auto;
  margin-bottom: 1.4rem;
}

.footer-compliance p {
  max-width: 72rem;
  margin-bottom: 0.45rem;
  color: var(--pale-grey);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.75;
}

.footer-compliance a {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  color: var(--pale-grey);
  font-size: 0.72rem;
  font-weight: 400;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--pale-grey);
}

.error-hero {
  display: grid;
  min-height: 34rem;
  place-items: center;
  padding: 5rem 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--deep-grey);
  background-size: 4rem 4rem;
  color: var(--white);
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--electric-blue);
  font-family: var(--heading-font);
  font-size: clamp(5rem, 16vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.error-hero h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.error-hero p {
  max-width: 38rem;
  margin: 0 auto 1.8rem;
  color: var(--pale-grey);
  font-weight: 400;
}

.error-hero p a {
  color: var(--white);
}

.error-actions {
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 70rem) {
  .nav-list {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .header-cta {
    padding-inline: 0.9rem;
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
    gap: 3rem;
  }

  .program-row {
    grid-template-columns: 3rem minmax(10rem, 0.8fr) minmax(16rem, 1.2fr) auto;
  }
}

@media (max-width: 60rem) {
  :root {
    --header-height: 6rem;
  }

  .container,
  .container--narrow {
    width: min(100% - 2.5rem, var(--container));
  }

  .brand img {
    width: 13.25rem;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 1rem;
  }

  html:not(.js) .primary-nav {
    width: 100%;
    margin-left: 0;
  }

  html:not(.js) .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 1rem;
    width: 100%;
  }

  .js .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 1.5rem 1.25rem 2rem;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .js .primary-nav.is-open {
    display: block;
  }

  .js .nav-list {
    display: block;
  }

  .js .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    width: 100%;
    min-height: 4rem;
    font-size: 1rem;
  }

  .nav-link::after {
    bottom: 0;
  }

  .nav-application-mobile {
    display: block;
    grid-column: 1 / -1;
    margin-top: 1.25rem;
    border-bottom: 0 !important;
  }

  .nav-application-mobile .button {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    padding: 5rem 0 4rem;
  }

  .hero-portrait {
    min-height: 36rem;
    margin-left: 3rem;
  }

  .editorial-split,
  .editorial-split--balanced,
  .intro-grid,
  .content-grid,
  .related-service,
  .article-hero-grid,
  .blog-hero-grid,
  .section-heading--split,
  .related-reading,
  .author-feature {
    grid-template-columns: 1fr;
  }

  .editorial-kicker,
  .info-aside {
    position: static;
  }

  .program-row {
    grid-template-columns: 3rem minmax(0, 1fr) auto;
  }

  .program-row p {
    grid-column: 2 / 4;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-photo {
    min-height: 36rem;
    margin: 0 0 -7rem 3rem;
  }

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

  .cta-band .button-row {
    justify-content: flex-start;
  }

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

  .blog-card,
  .blog-card--featured {
    grid-column: span 6;
  }

  .blog-card--featured {
    min-height: 30rem;
  }

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

  .timeline-visual--four > div:nth-child(2) {
    border-right: 0;
  }

  .timeline-visual--four > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

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

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-content {
    padding: 4.25rem 0 3.5rem;
  }

  .hero-portrait {
    min-height: 31rem;
    margin-left: 1rem;
  }

  .credential-grid,
  .steps,
  .contact-grid,
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .credential-item,
  .credential-item:last-child {
    min-height: auto;
    padding: 1.15rem 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps {
    border-bottom: 0;
  }

  .step,
  .step:last-child {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .step .number {
    margin-bottom: 1.5rem;
  }

  .program-row {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    gap: 0.8rem;
    padding: 1.55rem 0;
  }

  .program-row p {
    grid-column: 1 / 4;
  }

  .rule-list li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .page-hero::after {
    right: 1rem;
  }

  .page-hero-photo {
    min-height: 29rem;
    margin-left: 1rem;
  }

  .contact-block,
  .contact-block:first-child {
    min-height: 15rem;
    padding-inline: 1rem;
    border-right: 0;
    border-left: 0;
  }

  .faq-list summary {
    padding-right: 2.8rem;
  }

  .footer-top {
    padding-bottom: 2.5rem;
  }

  .footer-brand img {
    width: 7rem;
    height: 7rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.7rem;
  }

  .blog-grid,
  .role-grid,
  .timeline-visual,
  .timeline-visual--four {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-card--featured {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .blog-card-link {
    min-height: 24rem;
  }

  .article-edition {
    grid-template-columns: 1fr;
  }

  .article-edition span {
    margin-top: 0.5rem;
  }

  .timeline-visual > div,
  .timeline-visual--four > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-visual > div:last-child,
  .timeline-visual--four > div:last-child {
    border-bottom: 0;
  }

  .role-grid section,
  .role-grid section:nth-child(odd),
  .role-grid section:nth-child(even) {
    padding: 1.5rem 0;
    border-right: 0;
  }

  .source-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .author-feature-photo {
    height: 32rem;
  }
}

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

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

@media print {
  .site-header,
  .skip-link,
  .cta-band,
  .button-row,
  .menu-toggle {
    display: none !important;
  }

  body {
    color: var(--black);
    font-weight: 400;
  }

  .page-hero,
  .section--dark,
  .site-footer {
    background: var(--white) !important;
    color: var(--black) !important;
  }

  a {
    color: var(--black);
    text-decoration: none;
  }
}
