:root {
  --content-ink: #17151b;
  --content-paper: #f0efe9;
  --content-lime: #c7ff2f;
  --content-violet: #7257ff;
  --content-orange: #ff6b35;
  --content-line: rgba(23, 21, 27, 0.18);
}

.contentShell ::selection {
  color: #fff;
  background: #315fce;
  text-shadow: 0 1px 0 rgba(7, 29, 83, .35);
}

html[data-content-mode="exotic"] .contentShell ::selection {
  color: #0b0812;
  background: #c7ff2f;
  text-shadow: 1px 1px 0 #7257ff;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .contentShell,
  .contentShell :where(*) {
    cursor: url("/cursor-classic.svg") 4 3, auto;
  }

  html[data-content-mode="exotic"] .contentShell,
  html[data-content-mode="exotic"] .contentShell :where(*) {
    cursor: url("/cursor-exotic.svg") 16 16, crosshair;
  }

  .contentShell :is(a, button, summary, label, select, [role="button"]) {
    cursor: url("/cursor-classic-active.svg") 5 4, pointer;
  }

  html[data-content-mode="exotic"] .contentShell :is(a, button, summary, label, select, [role="button"]) {
    cursor: url("/cursor-exotic-active.svg") 16 16, pointer;
  }

  .contentShell :is(input[type="text"], input[type="email"], input[type="search"], textarea, [contenteditable="true"]) {
    cursor: text;
  }
}

.contentPreferences {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-left: auto;
}

.contentModeToggle,
.contentLanguageToggle {
  display: flex;
  padding: .2rem;
  border: 1px solid var(--content-line);
  border-radius: 99rem;
}

.contentPreferences button,
.contentPreferences a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: .35rem .65rem;
  border: 0;
  border-radius: 99rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-geist-mono), monospace;
  font-size: .62rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

.contentPreferences button.isSelected,
.contentPreferences a.isSelected {
  background: var(--content-ink);
  color: var(--content-paper);
}

.faqSection {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 5vw, 5.5rem);
  background: #e7e5dd;
  color: var(--content-ink);
}

.faqIntro {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.faqIntro h2 {
  max-width: 10ch;
  margin: 1.2rem 0 1.4rem;
  font-size: clamp(2.6rem, 5.4vw, 6.6rem);
  font-weight: 520;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.faqIntro > p:last-of-type {
  max-width: 38rem;
  color: rgba(23, 21, 27, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.faqResourceLinks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2rem;
}

.faqResourceLinks a,
.faqList a {
  color: inherit;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.faqList {
  border-top: 1px solid var(--content-line);
}

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

.faqList summary {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.55rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 560;
  line-height: 1.35;
}

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

.faqList summary span {
  padding-top: 0.2rem;
  color: rgba(23, 21, 27, 0.46);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
}

.faqList details > div {
  padding: 0 0 1.8rem 3.5rem;
}

.faqList details p {
  max-width: 48rem;
  margin: 0 0 1rem;
  color: rgba(23, 21, 27, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.footerSiteLinks {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footerSiteLinks a {
  color: inherit;
  text-decoration: none;
}

[data-mode="exotic"] .faqSection {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 15%, rgba(114, 87, 255, 0.23), transparent 25rem),
    radial-gradient(circle at 9% 90%, rgba(199, 255, 47, 0.12), transparent 26rem),
    #15111d;
  color: #f4f0e7;
}

[data-mode="exotic"] .faqSection::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

[data-mode="exotic"] .faqSection > * {
  position: relative;
}

[data-mode="exotic"] .faqIntro .sectionLabel,
[data-mode="exotic"] .faqIntro > p:last-of-type,
[data-mode="exotic"] .faqList details p {
  color: rgba(244, 240, 231, 0.68);
}

[data-mode="exotic"] .faqList {
  border-color: rgba(244, 240, 231, 0.18);
}

[data-mode="exotic"] .faqList details {
  border-color: rgba(244, 240, 231, 0.18);
}

[data-mode="exotic"] .faqList summary span {
  color: var(--content-lime);
}

.contentShell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 4%, rgba(114, 87, 255, 0.22), transparent 28rem),
    var(--content-paper);
  color: var(--content-ink);
}

.contentNav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(2rem, 5vw, 5.5rem);
  min-height: 5.5rem;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--content-line);
}

.contentWordmark {
  color: inherit;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-decoration: none;
}

.contentWordmark span {
  color: var(--content-violet);
}

.contentNavLinks {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.8rem);
  justify-self: start;
}

.contentNavLinks a {
  color: inherit;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.contentNav > .contentPreferences {
  gap: .55rem;
}

.contentHero {
  position: relative;
  min-height: 36rem;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  border-bottom: 1px solid var(--content-line);
}

.contentHero::after {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: -0.45rem;
  color: var(--content-violet);
  content: "✦";
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 1;
}

.contentEyebrow,
.contentSectionHeading > p,
.relatedPanel > p,
.contentCta > p {
  margin: 0 0 1.25rem;
  color: rgba(23, 21, 27, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contentHero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 510;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.contentLead {
  max-width: 52rem;
  margin: 2.5rem 0 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.heroFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.heroFacts span {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--content-line);
  border-radius: 99rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contentSection {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  border-bottom: 1px solid var(--content-line);
}

.contentSectionHeading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) minmax(18rem, 1fr);
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.contentSectionHeading h2,
.contentSplit h2,
.relatedPanel h2,
.contentCta h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.locationGrid,
.contentGrid,
.postGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--content-line);
  border: 1px solid var(--content-line);
}

.locationCard,
.contentCard,
.postCard {
  min-height: 26rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--content-paper);
  color: inherit;
  text-decoration: none;
}

.locationCard {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color 180ms ease, color 180ms ease;
}

.locationCard:hover {
  background: var(--content-ink);
  color: var(--content-paper);
}

.locationCard > span,
.contentCard > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.locationCard h2 {
  margin: auto 0 1.5rem;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 520;
  letter-spacing: -0.07em;
}

.locationCard p,
.contentCard p,
.postCard p,
.processList p,
.contentSplit p {
  color: rgba(23, 21, 27, 0.7);
  line-height: 1.65;
}

.locationCard:hover p {
  color: rgba(240, 239, 233, 0.72);
}

.locationCardLink {
  margin-top: 1.5rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.locationCardLink::after {
  content: "";
  position: absolute;
  inset: 0;
}

.locationCard:focus-within {
  outline: 2px solid var(--content-violet);
  outline-offset: 3px;
}

.contentSplit {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.contentSplit > div:last-child {
  max-width: 46rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.contentTextLink {
  display: inline-block;
  margin-top: 1.5rem;
  color: inherit;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.contentCard h3 {
  margin: 8rem 0 1rem;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 540;
  letter-spacing: -0.045em;
}

.outcomeBand {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(3rem, 9vw, 10rem);
  background: var(--content-ink);
  color: var(--content-paper);
}

.outcomeBand .contentEyebrow {
  color: var(--content-lime);
}

.outcomeBand h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

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

.outcomeBand li {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(240, 239, 233, 0.22);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.processList {
  border-top: 1px solid var(--content-line);
}

.processList article {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--content-line);
}

.processList h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 560;
}

.processList p {
  max-width: 46rem;
  margin: 0;
}

.regionalFaq .faqList {
  margin-left: min(22vw, 20rem);
}

.relatedPanel {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--content-lime);
}

.relatedPanel a,
.contentCta a {
  display: inline-block;
  margin-top: 2.5rem;
  color: inherit;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.8rem;
  font-weight: 800;
  text-underline-offset: 0.45rem;
  text-transform: uppercase;
}

.contentCta {
  padding: clamp(5rem, 11vw, 11rem) clamp(1.25rem, 7vw, 8rem);
  background:
    radial-gradient(circle at 80% 30%, rgba(114, 87, 255, 0.42), transparent 25rem),
    #15111d;
  color: #f4f0e7;
}

.contentCta > p:first-child {
  color: var(--content-lime);
}

.contentCta > p:not(:first-child) {
  max-width: 44rem;
  color: rgba(244, 240, 231, 0.72);
  line-height: 1.7;
}

.contentFooter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  border-top: 1px solid rgba(240, 239, 233, 0.16);
  background: #15111d;
  color: #f4f0e7;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contentFooter a {
  color: inherit;
}

.contentFooter span {
  margin-left: auto;
}

html[data-content-mode="exotic"] .contentShell {
  --content-ink: #f4f0e7;
  --content-paper: #15111d;
  --content-line: rgba(244, 240, 231, .17);
  background:
    radial-gradient(circle at 82% 6%, rgba(114, 87, 255, .34), transparent 30rem),
    radial-gradient(circle at 8% 46%, rgba(199, 255, 47, .09), transparent 28rem),
    #0b0812;
  color: #f4f0e7;
}

html[data-content-mode="exotic"] .contentNav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-color: rgba(244, 240, 231, .16);
  background: rgba(11, 8, 18, .88);
  backdrop-filter: blur(18px);
}

html[data-content-mode="exotic"] .contentWordmark span,
html[data-content-mode="exotic"] .contentHero::after,
html[data-content-mode="exotic"] .articleIndex {
  color: var(--content-lime);
}

html[data-content-mode="exotic"] .contentHero {
  overflow: hidden;
  background-image:
    linear-gradient(rgba(244, 240, 231, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 231, .045) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
}

html[data-content-mode="exotic"] .contentHero h1 {
  text-transform: uppercase;
  text-shadow: -.06em .045em 0 rgba(114, 87, 255, .68);
}

html[data-content-mode="exotic"] .contentEyebrow,
html[data-content-mode="exotic"] .contentSectionHeading > p,
html[data-content-mode="exotic"] .relatedPanel > p,
html[data-content-mode="exotic"] .contentCta > p,
html[data-content-mode="exotic"] .locationCard > span,
html[data-content-mode="exotic"] .contentCard > span {
  color: var(--content-lime);
}

html[data-content-mode="exotic"] .contentLead,
html[data-content-mode="exotic"] .locationCard p,
html[data-content-mode="exotic"] .contentCard p,
html[data-content-mode="exotic"] .postCard p,
html[data-content-mode="exotic"] .processList p,
html[data-content-mode="exotic"] .contentSplit p,
html[data-content-mode="exotic"] .articleBody p,
html[data-content-mode="exotic"] .articleBody li {
  color: rgba(244, 240, 231, .7);
}

html[data-content-mode="exotic"] .locationGrid,
html[data-content-mode="exotic"] .contentGrid,
html[data-content-mode="exotic"] .postGrid {
  background: rgba(244, 240, 231, .17);
  border-color: rgba(244, 240, 231, .17);
}

html[data-content-mode="exotic"] .locationCard,
html[data-content-mode="exotic"] .contentCard,
html[data-content-mode="exotic"] .postCard {
  background: rgba(244, 240, 231, .035);
  backdrop-filter: blur(8px);
}

html[data-content-mode="exotic"] .locationCard:hover {
  background: var(--content-lime);
  color: #0b0812;
  transform: translateY(-.55rem);
}

html[data-content-mode="exotic"] .locationCard:hover p {
  color: rgba(11, 8, 18, .72);
}

html[data-content-mode="exotic"] .outcomeBand {
  background: linear-gradient(120deg, rgba(114, 87, 255, .34), transparent 55%), #15111d;
  color: #f4f0e7;
}

html[data-content-mode="exotic"] .outcomeBand h2,
html[data-content-mode="exotic"] .outcomeBand li {
  color: #f4f0e7;
}

html[data-content-mode="exotic"] .contentShell .faqList summary {
  color: #f4f0e7;
}

html[data-content-mode="exotic"] .contentShell .faqList summary span {
  color: var(--content-lime);
}

html[data-content-mode="exotic"] .contentShell .faqList details p {
  color: rgba(244, 240, 231, .76);
}

html[data-content-mode="exotic"] .relatedPanel {
  color: #0b0812;
}

html[data-content-mode="exotic"] .relatedPanel > p {
  color: #0b0812;
}

html[data-content-mode="exotic"] .articleBody ul {
  background: rgba(199, 255, 47, .08);
}

html[data-content-mode="exotic"] .articleRelated {
  border: 1px solid rgba(244, 240, 231, .18);
  background: rgba(114, 87, 255, .18);
  color: #f4f0e7;
}

html[data-content-mode="exotic"] .articleRelated > p {
  color: var(--content-lime);
}

html[data-content-mode="exotic"] .articleRelated a {
  color: #f4f0e7;
}

html[data-content-mode="exotic"] .contentPreferences button.isSelected {
  background: var(--content-lime);
  color: #0b0812;
  box-shadow: 0 0 18px rgba(199, 255, 47, .25);
}

html[data-content-mode="exotic"] .localizedBlock:not([style*="display: none"]) {
  animation: contentTraverse .6s cubic-bezier(.2, .75, .2, 1) both;
}

@keyframes contentTraverse {
  from { opacity: 0; transform: translate3d(0, 1.4rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.blogHero h1 {
  max-width: 15ch;
}

.postGrid {
  grid-template-columns: 1fr;
}

.postCard {
  display: grid;
  position: relative;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(18rem, 0.9fr) minmax(18rem, 1fr) auto;
  align-items: start;
  gap: 2rem;
  min-height: 0;
}

.postCard > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.postCard h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 540;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.postCard > a {
  color: inherit;
}

.postCard > p {
  margin: 0;
}

.postCard > a {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.postCard > a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.postCard:focus-within {
  outline: 2px solid var(--content-violet);
  outline-offset: 3px;
}

.articleShell {
  padding: 0 clamp(1.25rem, 7vw, 8rem) clamp(6rem, 12vw, 12rem);
}

.articleHeader {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--content-line);
}

.articleHeader h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 510;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.articleMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.articleBody {
  max-width: 58rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.articleBody section {
  position: relative;
  margin-bottom: 5rem;
}

.articleIndex {
  position: absolute;
  right: calc(100% + 3rem);
  top: 0.55rem;
  color: var(--content-violet);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
}

.articleBody h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -0.05em;
}

.articleBody p,
.articleBody li {
  color: rgba(23, 21, 27, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.articleBody ul {
  margin: 1.8rem 0;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  border-left: 0.35rem solid var(--content-lime);
  background: rgba(199, 255, 47, 0.13);
}

.articleRelated {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 2rem;
  padding: 3rem;
  background: var(--content-ink);
  color: var(--content-paper);
}

.articleRelated > p {
  margin: 0;
  color: var(--content-lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.articleRelated > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.articleRelated a {
  color: inherit;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.legalHero {
  min-height: 30rem;
}

.legalHero h1 {
  max-width: 11ch;
}

.legalDocument {
  width: min(74rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.legalDocument section {
  display: grid;
  grid-template-columns: 4rem minmax(15rem, .7fr) minmax(18rem, 1.3fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2.5rem 0;
  border-top: 1px solid var(--content-line);
}

.legalDocument h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 540;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.legalDocument section > p:not(.legalIndex),
.legalDocument address {
  grid-column: 3;
  margin: 0;
  color: rgba(23, 21, 27, .76);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-style: normal;
  line-height: 1.72;
}

.legalDocument section > p + p,
.legalDocument address + p {
  margin-top: -1rem;
}

.legalDocument a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .3rem;
}

.legalIndex {
  margin: .35rem 0 0;
  color: var(--content-violet);
  font-family: var(--font-geist-mono), monospace;
  font-size: .72rem;
}

html[data-content-mode="exotic"] .legalDocument section > p:not(.legalIndex),
html[data-content-mode="exotic"] .legalDocument address {
  color: rgba(244, 240, 231, .76);
}

html[data-content-mode="exotic"] .legalIndex {
  color: var(--content-lime);
}

@media (max-width: 900px) {
  .contentNav {
    grid-template-columns: auto 1fr;
    row-gap: 1rem;
  }

  .contentPreferences {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .contentNavLinks {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
  }
}

@media (max-width: 1100px) {
  .faqSection {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .faqIntro {
    position: relative;
    top: auto;
    padding-bottom: clamp(4rem, 9vw, 6rem);
  }

  .faqIntro h2 {
    max-width: 13ch;
    font-size: clamp(2.8rem, 8vw, 5.4rem);
  }

  .faqList {
    min-width: 0;
  }
}

@media (max-width: 850px) {
  .contentSplit,
  .outcomeBand {
    grid-template-columns: 1fr;
  }

  .contentSectionHeading {
    grid-template-columns: 1fr;
  }

  .locationGrid,
  .contentGrid {
    grid-template-columns: 1fr;
  }

  .locationCard,
  .contentCard {
    min-height: 20rem;
  }

  .postCard {
    grid-template-columns: 1fr;
  }

  .postCard > div {
    flex-direction: row;
  }

  .regionalFaq .faqList {
    margin-left: 0;
  }

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

  .articleIndex {
    position: static;
    display: block;
    margin-bottom: 1rem;
  }

  .legalDocument section {
    grid-template-columns: 2rem 1fr;
  }

  .legalDocument h2 {
    grid-column: 2;
  }

  .legalDocument section > p:not(.legalIndex),
  .legalDocument address {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .faqSection {
    padding-inline: 1.25rem;
  }

  .faqIntro {
    padding-bottom: 3.5rem;
  }

  .faqIntro h2 {
    width: 100%;
    max-width: min(9ch, 100%);
    font-size: clamp(2.4rem, 12.5vw, 3.6rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .faqResourceLinks {
    gap: 1rem;
  }

  .contentNav {
    column-gap: 1rem;
    row-gap: .9rem;
  }

  .contentNavLinks {
    justify-content: space-between;
    gap: .8rem;
  }

  .contentPreferences {
    margin-left: auto;
  }

  .contentHero {
    min-height: auto;
    padding: 4.5rem 1.25rem 5rem;
    overflow: clip;
  }

  .contentShell,
  .localizedBlock,
  .contentHero,
  .articleShell,
  .articleHeader {
    min-width: 0;
  }

  .contentHero h1,
  .articleHeader h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 3.55rem);
    line-height: .94;
    letter-spacing: -.055em;
    hyphens: auto;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .blogHero h1,
  .legalHero h1 {
    max-width: 100%;
  }

  html[data-content-mode="exotic"] .contentHero h1 {
    text-shadow: -.035em .03em 0 rgba(114, 87, 255, .68);
  }

  .contentLead,
  .contentCta h2,
  .contentCta > p,
  .articleBody h2,
  .articleBody p,
  .articleBody li {
    max-width: 100%;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .contentCta h2 + p {
    margin-top: 1.5rem;
  }

  .faqList summary {
    grid-template-columns: 1.75rem 1fr;
  }

  .faqList details > div {
    padding-left: 2.75rem;
  }

  .articleRelated {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .contentFooter {
    flex-direction: column;
  }

  .contentFooter span {
    margin: 1rem 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .locationCard {
    transition: none;
  }
}
