:root {
  --jade: #0b7a5e;
  --jade-mid: #075b54;
  --jade-deep: #053f3b;
  --jade-ink: #092e31;
  --paper: #fffefa;
  --ivory: #f7f4ed;
  --mist: #eef5f2;
  --sage: #e4eee9;
  --white: #fff;
  --ink: #102c2f;
  --text: #496166;
  --muted: #6c7b7e;
  --line: #d7dfdb;
  --coral: #ff7564;
  --coral-soft: #fce7e3;
  --checklist-blue: #527b93;
  --checklist-blue-soft: #e9f0f4;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --header: 86px;
  --shadow: 0 24px 60px rgba(5, 63, 59, 0.1);
}

/* Newsletter subscription response pages */
.page-newsletter-response {
  background: var(--ivory);
}

.page-newsletter-response main {
  min-height: clamp(560px, 70vh, 760px);
  display: grid;
  align-items: center;
}

.newsletter-response {
  padding: clamp(56px, 8vw, 112px) 0;
}

.newsletter-response .newsletter-response-container {
  width: min(760px, calc(100% - 40px));
}

.newsletter-response-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.newsletter-response-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(38%, 250px);
  aspect-ratio: 1;
  border-radius: 0 0 0 100%;
  background: #edf4dc;
  pointer-events: none;
}

.newsletter-response-card--confirmed::before {
  background: var(--sage);
}

.newsletter-response-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 14px;
  background: var(--sage);
  color: var(--jade);
}

.newsletter-response-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.newsletter-response-card .eyebrow,
.newsletter-response-card h1,
.newsletter-response-card p,
.newsletter-response-actions {
  position: relative;
  z-index: 1;
}

.newsletter-response-card h1 {
  max-width: 560px;
  margin: 18px 0 22px;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.newsletter-response-lead {
  max-width: 570px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.35;
}

.newsletter-response-note {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 17px;
}

.newsletter-response-note strong {
  color: var(--ink);
  font-weight: 600;
}

.newsletter-response-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.newsletter-response-primary {
  border-color: var(--jade);
  background: var(--jade);
  color: var(--white);
  font-weight: 600;
}

.newsletter-response-primary:hover,
.newsletter-response-primary:focus-visible {
  border-color: var(--jade-deep);
  background: var(--jade-deep);
}

.newsletter-response-primary span {
  display: inline-block;
  margin-left: 10px;
  color: var(--coral);
  transition: transform 0.18s ease;
}

.newsletter-response-primary:hover span,
.newsletter-response-primary:focus-visible span {
  transform: translateX(4px);
}

.newsletter-response-secondary {
  border-bottom: 1px solid var(--jade);
  color: var(--jade-deep);
}

.newsletter-response-secondary:hover,
.newsletter-response-secondary:focus-visible {
  color: var(--jade);
}

@media (max-width: 600px) {
  .page-newsletter-response main {
    min-height: auto;
  }

  .newsletter-response {
    padding: 36px 0 56px;
  }

  .newsletter-response .newsletter-response-container {
    width: min(100% - 28px, 760px);
  }

  .newsletter-response-card {
    padding: 34px 26px 38px;
    border-radius: 14px;
  }

  .newsletter-response-card::before {
    width: 150px;
  }

  .newsletter-response-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
  }

  .newsletter-response-icon svg {
    width: 32px;
    height: 32px;
  }

  .newsletter-response-card h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .newsletter-response-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
  }

  .newsletter-response-primary {
    width: 100%;
    justify-content: center;
  }

  .newsletter-response-secondary {
    align-self: flex-start;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 80px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

address {
  font-style: normal;
}

::selection {
  background: var(--coral-soft);
  color: var(--jade-deep);
}

.container {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 1000;
  padding: 12px 16px;
  border: 2px solid var(--coral);
  background: var(--white);
  color: var(--jade-deep);
  font-weight: 800;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  border-top: 0;
  background: #036645;
  color: var(--white);
  box-shadow: 0 7px 22px rgba(5, 63, 59, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand img {
  width: 210px;
  height: auto;
  filter: grayscale(1) brightness(0.56) contrast(20) invert(1);
  mix-blend-mode: screen;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding: 32px 0 29px;
  white-space: nowrap;
}

.resources-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 13px;
  border: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  gap: 9px;
  transition: background-color 0.18s ease;
}

.resources-trigger:hover,
.resources-trigger:focus-visible,
.resources-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.22);
}

.resources-trigger > span,
.mobile-resource-trigger > span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.resources-trigger[aria-expanded="true"] > span,
.mobile-resource-trigger[aria-expanded="true"] > span {
  transform: translateY(2px) rotate(225deg);
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 100%;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transition: right 0.2s ease;
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a.active::after {
  right: 0;
}

.nav-cta,
.mobile-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 3px;
  font-weight: 800;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--coral);
  color: var(--white);
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

.menu-toggle {
  position: relative;
  z-index: 112;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 110;
  inset: var(--header) 0 0;
  display: none;
  flex-direction: column;
  overflow: auto;
  padding: 20px 28px 40px;
  background: var(--jade-deep);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-links {
  display: grid;
}

.mobile-links a {
  display: flex;
  align-items: center;
  min-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16px;
}

.mobile-resource-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-resource-drawer {
  display: grid;
  padding: 12px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  gap: 5px;
}

.mobile-resource-drawer[hidden] {
  display: none;
}

.mobile-links .mobile-view-all {
  min-height: 45px;
  margin-bottom: 5px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
}

.mobile-view-all span {
  margin-left: auto;
  color: var(--coral);
}

.mobile-links .mobile-resource-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 51px;
  padding: 4px 6px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  gap: 11px;
}

.mobile-resource-link:hover,
.mobile-resource-link:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.mobile-links a.active {
  color: var(--white);
  font-weight: 800;
}

.mobile-cta {
  width: 100%;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid var(--coral);
}

.resources-cover-backdrop {
  position: fixed;
  z-index: 94;
  inset: var(--header) 0 0;
  width: 100%;
  height: calc(100vh - var(--header));
  padding: 0;
  border: 0;
  background: rgba(2, 24, 20, 0.52);
  backdrop-filter: blur(5px);
  cursor: default;
}

.resources-cover {
  position: fixed;
  z-index: 96;
  top: var(--header);
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header));
  overflow: auto;
  padding: 12px 0 21px;
  background: var(--jade-deep);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.resources-cover.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

body.resources-cover-open {
  overflow: hidden;
}

.resources-cover-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  overflow: hidden;
  padding: 12px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.cover-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  padding: 27px 25px 25px;
  gap: 26px;
}

.cover-link-list {
  display: grid;
  gap: 4px;
}

.cover-feature {
  display: grid;
  grid-template-columns: minmax(180px, 0.92fr) minmax(190px, 1.08fr);
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4dc;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cover-feature:hover,
.cover-feature:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(5, 63, 59, 0.15);
}

.cover-feature-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  overflow: hidden;
  padding: 21px;
  background: linear-gradient(145deg, #fbf4df 0 58%, #dfeeb8 58% 100%);
}

.cover-feature-visual::before {
  position: absolute;
  top: -48px;
  left: -32px;
  width: 175px;
  height: 125px;
  border: 5px solid rgba(255, 117, 100, 0.72);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.cover-feature-visual > span {
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--jade-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cover-document {
  position: absolute;
  top: 66px;
  left: 50%;
  width: 105px;
  height: 126px;
  padding: 25px 15px;
  border: 2px solid var(--jade-deep);
  border-radius: 4px;
  background: var(--white);
  box-shadow: -9px 11px 0 rgba(255, 117, 100, 0.55);
  transform: translateX(-50%) rotate(6deg);
}

.cover-document i {
  display: block;
  height: 4px;
  margin-bottom: 11px;
  background: var(--sage);
}

.cover-document i:nth-child(2) {
  width: 70%;
}

.cover-document b {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--jade);
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.cover-feature-visual > strong {
  position: relative;
  z-index: 1;
  color: var(--jade-deep);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.cover-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
}

.cover-feature-copy h2 {
  margin-bottom: 13px;
  font-size: 27px;
}

.cover-feature-copy > p:not(.mega-feature-label) {
  color: var(--text);
  font-size: 13px;
}

.cover-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 21px;
  border-radius: 4px;
  background: var(--jade);
  color: var(--white);
  font-size: 20px;
}

.cover-footer {
  display: grid;
  grid-template-columns: auto minmax(140px, 1fr) auto;
  align-items: center;
  min-height: 60px;
  gap: 25px;
}

.cover-footer a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  gap: 9px;
}

.cover-footer a span {
  color: var(--coral);
  font-size: 18px;
}

.cover-view-all {
  min-width: 142px;
}

/* Compatibility for any already-open local preview generated before the ribbon was removed. */
.draft-ribbon {
  display: none;
}

.resource-bar {
  position: sticky;
  top: var(--header);
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.97);
  backdrop-filter: blur(8px);
}

.resource-inner {
  display: flex;
  align-items: center;
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  scroll-padding-inline: 20px;
}

.resource-inner::-webkit-scrollbar {
  display: none;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 2px 13px 0;
  color: var(--text);
  font-size: 14px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.resource-link:first-child {
  padding-left: 0;
}

.resource-link:hover,
.resource-link:focus-visible {
  color: var(--jade-deep);
}

.resource-link.active {
  color: var(--jade-deep);
  font-weight: 800;
}

.resource-mobile-select {
  display: none;
}

main {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.028em;
}

h1 {
  max-width: 780px;
  font-size: clamp(50px, 5.4vw, 76px);
  line-height: 1.01;
}

h2 {
  font-size: 32px;
  line-height: 1.14;
}

h3 {
  font-size: 26px;
  line-height: 1.18;
}

p {
  margin: 0;
}

.eyebrow,
.toolbar-label,
.card-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: var(--jade-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 40px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.resource-hero {
  padding: 92px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(11, 122, 94, 0.07), transparent 26%),
    linear-gradient(180deg, #fffefa 0%, #fbfaf5 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.72fr);
  align-items: end;
  gap: 78px;
}

.hero-intro > p {
  color: var(--text);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.46;
}

.information-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--coral);
  background: var(--white);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.58;
  box-shadow: 0 10px 30px rgba(5, 63, 59, 0.05);
}

.information-note strong {
  color: var(--ink);
}

.newsletter-container {
  width: min(1180px, calc(100% - 64px));
}

.newsletter-hero {
  padding: 86px 0 62px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.newsletter-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 687px) minmax(300px, 413px);
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}

.newsletter-hero h1 {
  max-width: 690px;
  font-size: clamp(60px, 5.5vw, 78px);
  line-height: 0.98;
}

.newsletter-hero-copy {
  max-width: 413px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.newsletter-archive.section {
  padding: 4px 0 38px;
  background: var(--paper);
}

.newsletter-controls {
  padding-top: 24px;
}

.newsletter-control-row {
  display: flex;
  justify-content: flex-end;
  min-height: 94px;
  padding-bottom: 20px;
}

.newsletter-search {
  display: grid;
  width: min(390px, 100%);
  align-content: start;
  gap: 8px;
}

.newsletter-search span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-search input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: var(--white);
  color: var(--ink);
}

.newsletter-search input:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(11, 122, 94, 0.1);
}

.newsletter-year-filters {
  display: flex;
  min-height: 58px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 0;
}

.newsletter-year-button {
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  cursor: pointer;
}

.newsletter-year-button:first-child {
  border-left: 1px solid var(--line);
}

.newsletter-year-button:hover,
.newsletter-year-button:focus-visible,
.newsletter-year-button.active {
  background: var(--mist);
  color: var(--jade-deep);
}

.newsletter-year-button.active {
  font-weight: 400;
}

.newsletter-year-button:disabled {
  background: transparent;
  color: var(--text);
  cursor: default;
  opacity: 1;
  pointer-events: none;
}

.newsletter-archive-list {
  border-top: 0;
}

.newsletter-news-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 260px;
  padding: 56px 0 58px;
  gap: 48px;
}

.newsletter-news-item[hidden] {
  display: none;
}

.newsletter-news-meta {
  display: grid;
  align-content: start;
  color: var(--jade);
  font-size: 11px;
  line-height: 1.55;
  gap: 7px;
}

.newsletter-news-meta strong {
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.newsletter-news-meta time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-news-copy {
  min-width: 0;
}

.newsletter-news-title {
  max-width: 800px;
  margin: 0 0 15px;
  font-size: 35px;
  line-height: 1.13;
}

.newsletter-news-title a {
  transition: color 0.18s ease;
}

.newsletter-news-title a:hover,
.newsletter-news-title a:focus-visible {
  color: var(--jade);
}

.newsletter-news-summary {
  max-width: 820px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.newsletter-read-row {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.newsletter-read-row::before {
  height: 1px;
  background: var(--line);
  content: "";
}

.newsletter-read-link {
  display: inline-flex;
  min-width: 162px;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border: 1px solid var(--jade);
  background: transparent;
  color: var(--jade-deep);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  gap: 14px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.newsletter-read-link span {
  color: var(--coral);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.newsletter-read-link:hover,
.newsletter-read-link:focus-visible {
  background: var(--sage);
  color: var(--jade-deep);
  transform: translateY(-1px);
}

.newsletter-read-link:hover span,
.newsletter-read-link:focus-visible span {
  color: var(--coral);
  transform: translateX(3px);
}

.newsletter-pagination {
  display: flex;
  margin: 32px 0 0;
  gap: 8px;
}

.newsletter-pagination[hidden] {
  display: none;
}

.newsletter-page-button {
  width: 53px;
  height: 53px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  cursor: pointer;
}

.newsletter-page-button:hover,
.newsletter-page-button:focus-visible {
  border-color: var(--jade);
  background: var(--mist);
  color: var(--ink);
}

.newsletter-page-button.active {
  border-color: var(--jade);
  background: transparent;
  color: var(--coral);
}

.newsletter-empty {
  margin-top: 32px;
}

.section {
  padding: 78px 0 92px;
}

.section--library {
  background: var(--paper);
}

.resources-mega-section {
  padding-bottom: 56px;
  background: var(--ivory);
}

.mega-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  align-items: end;
  margin-bottom: 38px;
  color: var(--ink);
  gap: 72px;
}

.mega-heading .eyebrow,
.mega-heading h1 {
  color: var(--jade-deep);
}

.mega-heading h1 {
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.03;
}

.mega-heading > p {
  color: var(--text);
  font-size: 16px;
}

.resources-mega-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(5, 63, 59, 0.1);
}

.mega-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  padding: 31px 28px 28px;
  gap: 31px;
}

.mega-group-title,
.mega-feature-label {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: var(--jade-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  gap: 8px;
}

.mega-group-title > span,
.mega-feature-label > span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
}

.mega-link-list {
  display: grid;
  gap: 4px;
}

.directory-link {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 10px 5px 10px 0;
  border-bottom: 1px solid var(--line);
  gap: 12px;
  transition: color 0.18s ease, padding-left 0.18s ease, background-color 0.18s ease;
}

.directory-link:hover,
.directory-link:focus-visible {
  padding-left: 8px;
  background: #efe9df;
  color: var(--jade-deep);
}

.directory-link-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.directory-link strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.directory-link-copy > span {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.4;
}

.resource-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #e4eee9;
  color: var(--jade);
}

.resource-icon i,
.resource-icon i::before,
.resource-icon i::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
}

.icon-newsletter i {
  width: 24px;
  height: 17px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
}

.icon-newsletter i::before,
.icon-newsletter i::after {
  top: 2px;
  width: 15px;
  height: 1.6px;
  background: currentColor;
}

.icon-newsletter i::before {
  left: -1px;
  transform: rotate(31deg);
  transform-origin: left center;
}

.icon-newsletter i::after {
  right: -1px;
  transform: rotate(-31deg);
  transform-origin: right center;
}

.icon-insights i {
  width: 24px;
  height: 19px;
  border: 1.6px solid currentColor;
  border-radius: 6px;
}

.icon-insights i::before {
  bottom: -5px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-bottom: 1.6px solid currentColor;
  border-left: 1.6px solid currentColor;
  transform: skewY(-35deg);
}

.icon-insights i::after {
  top: 6px;
  left: 5px;
  width: 13px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.icon-form i {
  width: 20px;
  height: 25px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
}

.icon-form i::before {
  top: 6px;
  left: 4px;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.icon-form i::after {
  top: -2px;
  right: -2px;
  width: 7px;
  height: 7px;
  border-bottom: 1.6px solid currentColor;
  border-left: 1.6px solid currentColor;
  background: #e4eee9;
}

.icon-checklist i {
  width: 21px;
  height: 24px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
}

.icon-checklist i::before {
  top: -4px;
  left: 5px;
  width: 9px;
  height: 6px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
  background: #e4eee9;
}

.icon-checklist i::after {
  top: 8px;
  left: 5px;
  width: 10px;
  height: 6px;
  border-bottom: 1.8px solid currentColor;
  border-left: 1.8px solid currentColor;
  transform: rotate(-45deg);
}

.resource-icon b {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.icon-faq b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
}

.mobile-resource-link .resource-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
  color: #aee0ca;
  transform: scale(0.9);
}

.mega-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 12px;
}

.mega-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  border-radius: 9px;
  background: #eef4dc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-feature:hover,
.mega-feature:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(5, 63, 59, 0.14);
}

.mega-feature-visual {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  overflow: hidden;
  padding: 25px 20px 22px;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 117, 100, 0.72) 0 5px, transparent 6px),
    linear-gradient(135deg, #fbf4df 0%, #f7f1e6 55%, #e8efcf 55%, #e8efcf 100%);
}

.mega-feature-visual::before {
  position: absolute;
  top: -45px;
  left: -33px;
  width: 180px;
  height: 120px;
  border: 5px solid rgba(255, 117, 100, 0.7);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.visual-kicker {
  position: absolute;
  top: 17px;
  left: 18px;
  color: var(--jade-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-document {
  position: absolute;
  top: 75px;
  left: 50%;
  width: 112px;
  height: 138px;
  padding: 27px 17px;
  border: 2px solid var(--jade-deep);
  border-radius: 4px;
  background: var(--white);
  box-shadow: -10px 12px 0 rgba(255, 117, 100, 0.55);
  transform: translateX(-50%) rotate(6deg);
}

.visual-document span {
  display: block;
  height: 4px;
  margin-bottom: 12px;
  background: var(--sage);
}

.visual-document span:nth-child(2) {
  width: 72%;
}

.visual-document span:nth-child(3) {
  width: 86%;
}

.visual-document b {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--jade);
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.visual-seal {
  position: absolute;
  top: 54px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--jade-deep);
  border-radius: 3px;
  background: #cde4d5;
  color: var(--jade-deep);
  font-family: var(--serif);
}

.mega-feature-visual > strong {
  position: relative;
  z-index: 1;
  color: var(--jade-deep);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.mega-feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 34px 30px;
}

.mega-feature-copy h3 {
  margin-bottom: 15px;
  font-size: 28px;
}

.mega-feature-copy > p:not(.mega-feature-label) {
  color: var(--text);
  font-size: 13px;
}

.mega-feature-action,
.featured-newsletter-action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  margin-top: 18px;
  background: transparent;
  color: var(--jade);
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  letter-spacing: 0;
  transition: color 0.18s ease;
}

.mega-feature-action span,
.featured-newsletter-action span {
  color: var(--coral);
  font-size: 18px;
  transition: transform 0.18s ease;
}

.mega-feature:hover .mega-feature-action,
.mega-feature:focus-visible .mega-feature-action,
.featured-newsletter:hover .featured-newsletter-action,
.featured-newsletter:focus-visible .featured-newsletter-action {
  color: var(--coral);
}

.mega-feature:hover .mega-feature-action span,
.mega-feature:focus-visible .mega-feature-action span,
.featured-newsletter:hover .featured-newsletter-action span,
.featured-newsletter:focus-visible .featured-newsletter-action span {
  transform: translateX(3px);
}

.featured-newsletter {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 260px;
  padding: 30px 28px;
  border-radius: 9px;
  background: #fbf4df;
  color: var(--ink);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-newsletter:hover,
.featured-newsletter:focus-visible {
  background: #fbf4df;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(5, 63, 59, 0.14);
}

.featured-newsletter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.featured-newsletter-top time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-newsletter h3 {
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.08;
}

.featured-newsletter > div > p:not(.mega-feature-label) {
  color: var(--text);
  font-size: 13px;
}

.mega-newsletter-strip {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(280px, 0.78fr) minmax(340px, 1fr);
  align-items: center;
  min-height: 78px;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--jade-deep);
  box-shadow: 0 16px 38px rgba(5, 63, 59, 0.08);
  gap: 24px;
}

.strip-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #75c7a6 0 38%, #d9e8ad 38% 68%, #f2ba75 68% 86%, var(--coral) 86% 100%);
}

.newsletter-strip-copy {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-strip-copy strong {
  color: var(--jade-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter-strip-copy span {
  color: var(--text);
  font-size: 14px;
}

.newsletter-signup {
  width: 100%;
}

.newsletter-signup summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  cursor: pointer;
  list-style: none;
  color: var(--jade-deep);
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
}

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

.newsletter-signup summary span {
  color: var(--coral);
  font-size: 18px;
  transition: transform 0.18s ease;
}

.newsletter-signup summary:hover span,
.newsletter-signup summary:focus-visible span {
  transform: translateX(4px);
}

.newsletter-signup[open] summary {
  margin-bottom: 10px;
}

.subscribe-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.subscribe-note a {
  color: inherit;
  font-weight: 400;
  text-decoration: none;
  text-underline-offset: 2px;
}

.subscribe-note a:hover,
.subscribe-note a:focus-visible {
  text-decoration: underline;
}

.inline-subscribe-form {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.inline-subscribe-form input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--jade);
  border-radius: 3px;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  caret-color: var(--jade);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.inline-subscribe-form input::placeholder {
  color: var(--muted);
}

.inline-subscribe-form input:focus {
  border-color: var(--jade-deep);
  box-shadow: 0 0 0 3px rgba(11, 122, 94, 0.12);
}

.inline-subscribe-form input:-webkit-autofill,
.inline-subscribe-form input:-webkit-autofill:hover,
.inline-subscribe-form input:-webkit-autofill:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--jade);
}

.inline-subscribe-form button {
  height: 46px;
  padding: 0 18px;
  border: 1px solid var(--jade);
  border-radius: 3px;
  background: transparent;
  color: var(--jade-deep);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.inline-subscribe-form button:hover,
.inline-subscribe-form button:focus-visible {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--jade-deep);
  transform: translateY(-1px);
}

.mailchimp-honeypot {
  position: absolute !important;
  left: -5000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  margin-bottom: 46px;
  gap: 80px;
}

.section-heading h2 {
  max-width: 680px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.04;
}

.section-heading > p {
  color: var(--text);
  font-size: 17px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.resource-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: start;
  min-height: 226px;
  padding: 34px 32px 32px 0;
  border-bottom: 1px solid var(--line);
  gap: 22px;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.resource-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.resource-card:nth-child(even) {
  padding-left: 32px;
}

.resource-card:hover,
.resource-card:focus-visible {
  background: var(--mist);
}

.resource-card:nth-child(odd):hover,
.resource-card:nth-child(odd):focus-visible {
  padding-left: 18px;
}

.card-number {
  color: var(--jade);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.resource-card h2 {
  margin-bottom: 13px;
  font-size: 35px;
}

.resource-card p {
  max-width: 430px;
  color: var(--text);
}

.card-arrow {
  color: var(--coral);
  font-size: 25px;
  transition: transform 0.2s ease;
}

.resource-card:hover .card-arrow,
.resource-card:focus-visible .card-arrow {
  transform: translateX(5px);
}

.section--pathways {
  padding-top: 0;
  background: var(--paper);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pathway-grid article {
  min-height: 250px;
  padding: 38px 34px;
}

.pathway-grid article + article {
  border-left: 1px solid var(--line);
}

.pathway-grid span,
.card-kicker,
.archive-meta,
.draft-pill {
  color: var(--jade);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pathway-grid h3 {
  margin: 22px 0 14px;
}

.pathway-grid p {
  color: var(--text);
}

.content-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 72px;
}

.content-main {
  min-width: 0;
}

.content-aside {
  display: grid;
  gap: 22px;
}

.aside-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.aside-card--tint {
  background: var(--mist);
}

.aside-card--sticky {
  position: sticky;
  top: calc(var(--header) + 88px);
}

.aside-card h2 {
  margin-bottom: 16px;
  font-size: 29px;
}

.aside-card > p:not(.eyebrow) {
  color: var(--text);
}

.check-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.toolbar,
.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  gap: 34px;
}

.toolbar--compact {
  margin-bottom: 34px;
}

.glossary-toolbar,
.checklist-toolbar {
  grid-template-columns: minmax(0, 620px);
  justify-content: start;
}

.checklist-toolbar {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.toolbar-label {
  margin-bottom: 7px;
}

.result-count {
  color: var(--muted);
  font-size: 13px;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span,
.mini-form label > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-field input,
.mini-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: none;
  background: var(--white);
  color: var(--ink);
}

.search-field input:focus,
.mini-form input:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(11, 122, 94, 0.1);
}

.search-field--wide {
  max-width: 620px;
  margin-bottom: 12px;
}

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

.archive-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  gap: 40px;
}

.archive-meta {
  display: grid;
  align-content: start;
  gap: 7px;
}

.archive-meta time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.archive-item h2 {
  margin-bottom: 12px;
  font-size: 35px;
}

.archive-item p {
  max-width: 720px;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--jade);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.muted-link {
  color: var(--muted);
}

.mini-form {
  display: grid;
  margin-top: 22px;
  gap: 12px;
}

.mini-form label {
  display: grid;
  gap: 7px;
}

.form-status {
  min-height: 22px;
  color: var(--jade-deep);
  font-size: 12px;
}

.button {
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

.button--primary {
  width: 100%;
  margin-top: 24px;
  background: var(--jade);
  color: var(--white);
}

.filter-panel {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
}

.filter-buttons,
.alpha-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  border-color: var(--coral);
  background: var(--coral-soft);
  color: var(--ink);
}

.insight-filter-panel {
  grid-template-columns: minmax(320px, 430px) minmax(300px, 350px);
  align-items: end;
}

.insight-category-picker {
  position: relative;
  z-index: 12;
}

.insight-category-picker summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 18px;
  align-items: center;
  min-height: 64px;
  padding: 9px 16px 9px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  gap: 12px;
  list-style: none;
}

.insight-category-picker summary::-webkit-details-marker {
  display: none;
}

.insight-category-picker summary:hover,
.insight-category-picker summary:focus-visible,
.insight-category-picker[open] summary {
  border-color: var(--jade);
  background: #f4f6e9;
}

.category-summary-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.category-summary-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-summary-copy strong {
  overflow: hidden;
  color: var(--jade-deep);
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-picker-chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, 2px);
  transition: transform 0.18s ease;
}

.insight-category-picker[open] .category-picker-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.category-options {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  max-height: 372px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(4, 69, 64, 0.16);
}

.category-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 6px 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  gap: 12px;
}

.category-option:last-child {
  border-bottom: 0;
}

.category-option:hover,
.category-option:focus-visible,
.category-option.active {
  background: #f4f6e9;
  color: var(--jade-deep);
}

.category-option.active {
  font-weight: 700;
}

.category-current-icon,
.category-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-current-icon .insight-topic-icon,
.category-option-icon .insight-topic-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.category-current-icon .insight-topic-icon svg,
.category-option-icon .insight-topic-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.insight-topic-icon--partner svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.1;
}

.category-current-icon .insight-topic-icon.insight-topic-icon--partner svg,
.category-option-icon .insight-topic-icon.insight-topic-icon--partner svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.35;
}

.insight-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.insight-card,
.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 31px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.insight-card h2 {
  margin-bottom: 15px;
  font-size: 31px;
}

.insight-card > p,
.guide-card > div > p:not(.card-label) {
  color: var(--text);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 12px;
  gap: 14px;
}

.draft-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #e9b0a8;
  border-radius: 999px;
  background: var(--coral-soft);
  color: #8b3b32;
  font-size: 9px;
  white-space: nowrap;
}

.insight-card {
  position: relative;
  min-height: 370px;
  background: #fffdf8;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.insight-card-layout {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  width: 100%;
  min-height: 100%;
  gap: 22px;
}

.insight-card-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.insight-card-copy > p {
  color: var(--text);
}

.insight-card-copy .card-kicker {
  margin-bottom: 30px;
}

.insight-card:hover,
.insight-card:focus-within {
  z-index: 1;
  background: #efe9df;
  box-shadow: 0 14px 34px rgba(5, 63, 59, 0.09);
  transform: translateY(-2px);
}

.insight-topic-icon {
  --icon-tile: #e4eee9;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--icon-tile);
  color: #12645f;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.insight-topic-icon svg {
  width: 36px;
  height: 36px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.insight-topic-icon.insight-topic-icon--partner svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.35;
}

.insight-topic-icon--family,
.insight-topic-icon--work,
.insight-topic-icon--reviews,
.insight-topic-icon--citizenship,
.insight-topic-icon--status,
.insight-topic-icon--complex {
  color: #12645f;
}

.insight-topic-icon i,
.insight-topic-icon b,
.insight-topic-icon i::before,
.insight-topic-icon i::after,
.insight-topic-icon b::before,
.insight-topic-icon b::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
}

.insight-topic-icon--relationship i {
  top: 22px;
  left: 20px;
  width: 20px;
  height: 19px;
  border-bottom: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
  border-radius: 0 0 0 3px;
  transform: rotate(-45deg);
}

.insight-topic-icon--relationship i::before {
  top: -11px;
  left: -2px;
  width: 20px;
  height: 18px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.insight-topic-icon--relationship i::after {
  top: 0;
  right: -11px;
  width: 18px;
  height: 20px;
  border: 1.7px solid currentColor;
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

.insight-topic-icon--relationship b {
  display: none;
}

.insight-topic-icon--family i {
  top: 14px;
  left: 25px;
  width: 10px;
  height: 10px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  box-shadow: -13px 7px 0 -1px var(--icon-tile), -13px 7px 0 0 currentColor, 13px 7px 0 -1px var(--icon-tile), 13px 7px 0 0 currentColor;
}
.insight-topic-icon--family b {
  top: 31px;
  left: 17px;
  width: 26px;
  height: 12px;
  border: 1.7px solid currentColor;
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.insight-topic-icon--home i,
.insight-topic-icon--residence i {
  top: 25px;
  left: 19px;
  width: 22px;
  height: 19px;
  border: 1.7px solid currentColor;
  border-top: 0;
}
.insight-topic-icon--home i::before,
.insight-topic-icon--residence i::before {
  top: -9px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-top: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
  transform: rotate(45deg);
}
.insight-topic-icon--home i::after {
  right: 4px;
  bottom: 0;
  width: 6px;
  height: 10px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
}
.insight-topic-icon--residence b {
  right: 10px;
  bottom: 9px;
  width: 13px;
  height: 13px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  background: var(--icon-tile);
}
.insight-topic-icon--residence b::after {
  top: 2px;
  left: 5px;
  width: 1.5px;
  height: 4px;
  background: currentColor;
  box-shadow: 2px 4px 0 currentColor;
}

.insight-topic-icon--shared-records i {
  top: 15px;
  left: 16px;
  width: 21px;
  height: 27px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
  background: var(--icon-tile);
}
.insight-topic-icon--shared-records b {
  top: 20px;
  left: 23px;
  width: 21px;
  height: 27px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}
.insight-topic-icon--shared-records b::after {
  top: 7px;
  left: 4px;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.insight-topic-icon--briefcase i {
  top: 18px;
  left: 25px;
  width: 10px;
  height: 10px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.insight-topic-icon--briefcase i::before {
  top: -6px;
  left: -5px;
  width: 18px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.insight-topic-icon--briefcase i::after {
  top: -1px;
  left: -7px;
  width: 21px;
  border-top: 1.7px solid currentColor;
}

.insight-topic-icon--briefcase b {
  top: 33px;
  left: 17px;
  width: 26px;
  height: 13px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.insight-topic-icon--business i {
  top: 15px;
  left: 18px;
  width: 24px;
  height: 31px;
  border: 1.7px solid currentColor;
}
.insight-topic-icon--business i::before {
  top: 6px;
  left: 5px;
  width: 3px;
  height: 3px;
  background: currentColor;
  box-shadow: 8px 0 currentColor, 0 7px currentColor, 8px 7px currentColor, 0 14px currentColor, 8px 14px currentColor;
}
.insight-topic-icon--business i::after {
  bottom: -2px;
  left: 8px;
  width: 7px;
  height: 9px;
  border: 1.7px solid currentColor;
  background: var(--icon-tile);
}

.insight-topic-icon--contract i {
  top: 14px;
  left: 17px;
  width: 23px;
  height: 31px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}
.insight-topic-icon--contract i::before {
  top: 7px;
  left: 4px;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}
.insight-topic-icon--contract b {
  right: 14px;
  bottom: 15px;
  width: 15px;
  height: 2px;
  background: currentColor;
  transform: rotate(-48deg);
}
.insight-topic-icon--contract b::after {
  right: -2px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
}

.insight-topic-icon--sponsor i,
.insight-topic-icon--character i {
  top: 14px;
  left: 18px;
  width: 24px;
  height: 29px;
  border: 1.7px solid currentColor;
  border-radius: 12px 12px 14px 14px;
}
.insight-topic-icon--sponsor b {
  top: 25px;
  left: 26px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}
.insight-topic-icon--character i::after {
  top: 8px;
  left: 7px;
  width: 9px;
  height: 5px;
  border-bottom: 1.8px solid currentColor;
  border-left: 1.8px solid currentColor;
  transform: rotate(-45deg);
}

.insight-topic-icon--refusal i {
  top: 14px;
  left: 29px;
  width: 1.7px;
  height: 32px;
  background: currentColor;
}

.insight-topic-icon--refusal i::before {
  top: 6px;
  left: -13px;
  width: 28px;
  height: 1.7px;
  background: currentColor;
}

.insight-topic-icon--refusal i::after {
  bottom: 0;
  left: -7px;
  width: 16px;
  height: 1.7px;
  background: currentColor;
}

.insight-topic-icon--refusal b {
  top: 24px;
  left: 10px;
  width: 15px;
  height: 9px;
  border-bottom: 1.7px solid currentColor;
  border-radius: 0 0 10px 10px;
}

.insight-topic-icon--refusal b::before {
  top: 0;
  left: 25px;
  width: 15px;
  height: 9px;
  border-bottom: 1.7px solid currentColor;
  border-radius: 0 0 10px 10px;
}

.insight-topic-icon--refusal b::after {
  top: -4px;
  left: 7px;
  width: 1.7px;
  height: 8px;
  background: currentColor;
  box-shadow: 25px 0 0 currentColor;
}

.insight-topic-icon--review i,
.insight-topic-icon--deadline i {
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}
.insight-topic-icon--review i::before {
  top: -2px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  transform: rotate(18deg);
}
.insight-topic-icon--review i::after {
  top: 12px;
  left: 6px;
  width: 15px;
  border-top: 1.7px solid currentColor;
  transform: rotate(-18deg);
}
.insight-topic-icon--deadline i::before {
  top: 5px;
  left: 12px;
  width: 1.7px;
  height: 8px;
  background: currentColor;
}
.insight-topic-icon--deadline i::after {
  top: 12px;
  left: 12px;
  width: 7px;
  height: 1.7px;
  background: currentColor;
  transform: rotate(28deg);
  transform-origin: left center;
}

.insight-topic-icon--pathways i {
  top: 15px;
  left: 29px;
  width: 1.7px;
  height: 31px;
  background: currentColor;
}
.insight-topic-icon--pathways i::before,
.insight-topic-icon--pathways i::after {
  left: 0;
  width: 16px;
  height: 1.7px;
  background: currentColor;
  transform-origin: left center;
}
.insight-topic-icon--pathways i::before { top: 8px; transform: rotate(-38deg); }
.insight-topic-icon--pathways i::after { top: 18px; transform: rotate(38deg); }

.insight-topic-icon--certificate i {
  top: 13px;
  left: 18px;
  width: 1.7px;
  height: 34px;
  background: currentColor;
}

.insight-topic-icon--certificate i::before {
  top: 2px;
  left: 1px;
  width: 24px;
  height: 16px;
  border: 1.7px solid currentColor;
  border-left: 0;
  border-radius: 0 3px 3px 0;
}

.insight-topic-icon--certificate i::after {
  top: 3px;
  left: 8px;
  width: 8px;
  height: 8px;
  color: currentColor;
  content: "\2605";
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
}

.insight-topic-icon--certificate b {
  left: 13px;
  bottom: 12px;
  width: 13px;
  height: 1.7px;
  background: currentColor;
}

.insight-topic-icon--identity i {
  top: 17px;
  left: 14px;
  width: 32px;
  height: 25px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}
.insight-topic-icon--identity i::before {
  top: 6px;
  left: 5px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}
.insight-topic-icon--identity i::after {
  top: 7px;
  right: 4px;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.insight-topic-icon--passport i {
  top: 14px;
  left: 18px;
  width: 24px;
  height: 32px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}
.insight-topic-icon--passport i::before {
  top: 8px;
  left: 6px;
  width: 10px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}
.insight-topic-icon--passport i::after {
  bottom: 5px;
  left: 5px;
  width: 12px;
  border-top: 1.5px solid currentColor;
}

.insight-topic-icon--calendar i {
  top: 17px;
  left: 15px;
  width: 30px;
  height: 27px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}
.insight-topic-icon--calendar i::before {
  top: 6px;
  left: -1px;
  width: 30px;
  border-top: 1.7px solid currentColor;
}
.insight-topic-icon--calendar i::after {
  top: 13px;
  left: 6px;
  width: 3px;
  height: 3px;
  background: currentColor;
  box-shadow: 7px 0 currentColor, 14px 0 currentColor, 0 7px currentColor, 7px 7px currentColor, 14px 7px currentColor;
}

.insight-topic-icon--travel i {
  top: 29px;
  left: 15px;
  width: 30px;
  height: 1.7px;
  background: currentColor;
  transform: rotate(-24deg);
}
.insight-topic-icon--travel i::before {
  top: -7px;
  right: 0;
  width: 13px;
  height: 13px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  transform: rotate(45deg);
}
.insight-topic-icon--travel i::after {
  top: -4px;
  left: 7px;
  width: 10px;
  height: 9px;
  border-left: 1.7px solid currentColor;
  transform: rotate(38deg);
}

.insight-topic-icon--bridging i {
  top: 28px;
  left: 13px;
  width: 34px;
  height: 16px;
  border-top: 1.7px solid currentColor;
  border-radius: 50% 50% 0 0;
}
.insight-topic-icon--bridging i::before {
  top: 1px;
  left: 3px;
  width: 1.7px;
  height: 14px;
  background: currentColor;
  box-shadow: 9px -5px 0 currentColor, 18px -5px 0 currentColor, 27px 0 0 currentColor;
}
.insight-topic-icon--bridging i::after {
  left: 0;
  bottom: 0;
  width: 34px;
  border-bottom: 1.7px solid currentColor;
}

.insight-topic-icon--health i {
  top: 18px;
  left: 18px;
  width: 24px;
  height: 24px;
  border: 1.7px solid currentColor;
  border-radius: 4px;
}
.insight-topic-icon--health i::before {
  top: -7px;
  left: 7px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--icon-tile);
}

.insight-topic-icon--health i::after {
  top: 7px;
  right: -7px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: var(--icon-tile);
}

.insight-topic-icon--health b {
  display: none;
}

.insight-topic-icon--search i {
  top: 15px;
  left: 15px;
  width: 24px;
  height: 24px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}
.insight-topic-icon--search i::after {
  right: -9px;
  bottom: -6px;
  width: 12px;
  height: 1.7px;
  background: currentColor;
  transform: rotate(45deg);
}

.insight-topic-icon--timeline i {
  top: 28px;
  left: 13px;
  width: 34px;
  height: 1.7px;
  background: currentColor;
}
.insight-topic-icon--timeline i::before {
  top: -4px;
  left: 1px;
  width: 9px;
  height: 9px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  background: var(--icon-tile);
  box-shadow: 12px 0 0 -1px var(--icon-tile), 12px 0 0 0 currentColor, 24px 0 0 -1px var(--icon-tile), 24px 0 0 0 currentColor;
}

.insight-topic-icon--documents i,
.insight-topic-icon--documents b {
  top: 14px;
  left: 27px;
  width: 5px;
  height: 32px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
  transform: rotate(38deg);
}

.insight-topic-icon--documents b {
  left: 28px;
  transform: rotate(-38deg);
}

.insight-topic-icon--documents i::before,
.insight-topic-icon--documents b::before {
  top: -5px;
  left: -1px;
  width: 5px;
  height: 5px;
  border-top: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
  transform: rotate(45deg);
}

.insight-topic-icon--documents i::after,
.insight-topic-icon--documents b::after {
  bottom: 4px;
  left: 1px;
  width: 1.5px;
  height: 8px;
  background: currentColor;
}

.insight-card h2 a {
  transition: color 0.18s ease;
}

.insight-card h2 a:hover,
.insight-card h2 a:focus-visible {
  color: var(--jade);
}

.card-kicker time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
}

.insight-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--jade-deep);
  gap: 9px;
  transition: color 0.18s ease;
}

.insight-card-link span {
  color: var(--coral);
  transition: transform 0.18s ease;
}

.insight-card-link:hover,
.insight-card-link:focus-visible {
  color: var(--jade);
}

.insight-card-link:hover span,
.insight-card-link:focus-visible span,
.insight-card:hover .insight-card-link span,
.insight-card:focus-within .insight-card-link span {
  transform: translateX(3px);
}

.insights-pagination {
  margin-top: 46px;
}

.insight-single-hero {
  padding: 78px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 18%, rgba(228, 238, 233, 0.95), transparent 30%),
    var(--paper);
}

.insight-single-hero-inner {
  max-width: 1000px;
}

.insight-single-hero h1 {
  max-width: 980px;
  margin: 24px 0 26px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 78px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.insight-single-deck {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.48;
}

.insight-single-hero time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.insight-single-body {
  background: var(--paper);
}

.page-insight-single main {
  overflow: visible;
}

.insight-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 300px);
  align-items: start;
  justify-content: space-between;
  gap: 72px;
}

.insight-article {
  min-width: 0;
}

.insight-general-note {
  margin: 0 0 50px;
  padding-top: 18px;
  border-top: 2px solid var(--coral);
  color: var(--muted);
  font-size: 14px;
}

.insight-prose {
  color: var(--text);
  font-size: 19px;
  line-height: 1.78;
}

.insight-prose > *:first-child {
  margin-top: 0;
}

.insight-prose p {
  margin: 0 0 26px;
}

.insight-prose h2,
.insight-prose h3,
.insight-prose h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.insight-prose h2 {
  margin: 54px 0 18px;
  font-size: 38px;
  line-height: 1.12;
}

.insight-prose h3 {
  margin: 40px 0 14px;
  font-size: 28px;
  line-height: 1.18;
}

.insight-prose h4 {
  margin: 32px 0 12px;
  font-size: 23px;
  line-height: 1.25;
}

.insight-prose ul,
.insight-prose ol {
  margin: 0 0 28px;
  padding-left: 24px;
}

.insight-prose li {
  margin-bottom: 10px;
}

.insight-prose a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.insight-sidebar {
  position: sticky;
  top: calc(var(--header) + 88px);
  display: grid;
  gap: 34px;
}

.insight-back-link {
  color: var(--jade-deep);
  font-size: 14px;
}

.insight-related {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.insight-related ul {
  display: grid;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.insight-related li + li {
  border-top: 1px solid var(--line);
}

.insight-related a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

.insight-related a:hover,
.insight-related a:focus-visible {
  color: var(--jade);
}

/* Editorial feature Insight: a richer article template used by new drafts. */

.insight-single-meta,
.insight-feature-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  gap: 8px 18px;
}

.insight-single-meta > * + *::before,
.insight-feature-byline > * + *::before {
  content: "·";
  margin-right: 18px;
  color: var(--coral);
}

.insight-feature-byline {
  display: flex;
  margin: -30px 0 34px;
}

.insight-single-hero--feature + .insight-feature-body .insight-feature-byline {
  display: none;
}

.insight-feature-body {
  padding-top: 64px;
}

main:has(.insight-feature-body) > .consultation-band {
  display: none;
}

main:has(.insight-feature-body) > .insight-single-hero h1 {
  max-width: 1050px;
  font-size: clamp(46px, 5.6vw, 70px);
  line-height: 1.02;
}

.insight-feature-layout {
  display: grid;
  grid-template-columns: minmax(165px, 0.78fr) minmax(0, 2.8fr) minmax(210px, 0.95fr);
  align-items: start;
  gap: 52px;
}

.insight-feature-toc,
.insight-feature-aside {
  position: sticky;
  top: calc(var(--header) + 86px);
}

.insight-feature-toc nav {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.insight-feature-toc ol {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.insight-feature-toc li + li {
  border-top: 1px solid rgba(204, 216, 211, 0.72);
}

.insight-feature-toc a {
  display: block;
  padding: 11px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.insight-feature-toc a:hover,
.insight-feature-toc a:focus-visible {
  color: var(--jade);
}

.insight-feature-article {
  min-width: 0;
  color: var(--text);
}

.insight-feature-visual {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  min-height: 215px;
  margin: 0 0 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 248, 230, 0.96) 0 46%, rgba(235, 245, 224, 0.96) 46% 100%);
  gap: 32px;
}

.insight-feature-icon .insight-topic-icon {
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.76);
}

.insight-feature-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.insight-feature-track span {
  position: relative;
  display: grid;
  min-height: 74px;
  align-content: end;
  padding-top: 36px;
  color: var(--jade-deep);
  font-size: 12px;
  line-height: 1.25;
}

.insight-feature-track span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid var(--jade);
  border-radius: 50%;
  background: var(--white);
  content: "";
  z-index: 1;
}

.insight-feature-track i {
  position: absolute;
  top: 15px;
  left: 18px;
  width: calc(100% - 7px);
  height: 1px;
  background: var(--jade);
}

.insight-takeaways {
  margin: 0 0 46px;
  padding: 28px 30px;
  border: 1px solid #c9ddd5;
  border-radius: 12px;
  background: #edf5f1;
}

.insight-takeaways ul {
  display: grid;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.insight-takeaways li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.insight-takeaways li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--jade);
  border-radius: 50%;
  color: var(--jade);
  content: "✓";
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.insight-feature-prose {
  font-size: 18px;
  line-height: 1.75;
}

.insight-feature-prose p,
.insight-feature-prose ul {
  margin: 0 0 24px;
}

.insight-feature-prose h2,
.insight-feature-prose h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.insight-feature-prose h2 {
  margin: 58px 0 20px;
  font-size: 39px;
  line-height: 1.12;
}

.insight-feature-prose h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
}

.insight-feature-prose a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.insight-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.52;
}

.insight-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.insight-table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

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

.insight-table-wrap th {
  color: var(--jade-deep);
  background: #f3f6f3;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-table-wrap tr:last-child td {
  border-bottom: 0;
}

.insight-callout {
  padding: 22px 24px;
  border-left: 3px solid var(--coral);
  background: #fff7ee;
}

.insight-check-list {
  padding-left: 24px;
}

.insight-check-list li {
  margin-bottom: 9px;
}

.insight-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin: 46px 0 8px;
  padding: 30px;
  border-radius: 12px;
  background: #dfece7;
  gap: 28px;
}

.insight-inline-cta .card-label {
  margin-bottom: 10px;
}

.insight-inline-cta .button {
  white-space: nowrap;
  text-decoration: none;
}

.insight-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.insight-question-grid article {
  min-height: 180px;
  padding: 26px;
  background: var(--white);
}

.insight-question-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.insight-question-grid article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.insight-question-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--jade);
  font-size: 12px;
  letter-spacing: 0.08em;
}

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

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

.insight-faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  min-height: 76px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  gap: 20px;
}

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

.insight-faq summary span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--jade);
  font-family: var(--sans);
}

.insight-faq details[open] summary span {
  transform: rotate(45deg);
}

.insight-faq details p {
  padding: 0 56px 20px 0;
}

.insight-disclaimer {
  margin-top: 44px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.insight-author-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.insight-author-mark {
  display: grid;
  min-height: 150px;
  place-items: center;
  background: var(--jade);
  color: var(--white);
  font-family: var(--serif);
  font-size: 70px;
}

.insight-author-card > div:last-child {
  padding: 24px 28px;
}

.insight-author-card h2 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.insight-author-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.insight-read-next {
  margin-top: 74px;
}

.insight-read-next > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.insight-read-next a {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 24px;
  background: var(--white);
  gap: 10px;
}

.insight-read-next a + a {
  border-left: 1px solid var(--line);
}

.insight-read-next a:hover,
.insight-read-next a:focus-visible {
  background: #edf5f1;
}

.insight-read-next span {
  color: var(--jade);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-read-next strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.insight-feature-aside {
  display: grid;
  gap: 24px;
}

.insight-aside-card {
  padding: 26px;
  border-radius: 12px;
  background: #dfece7;
}

.insight-aside-card h2 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.18;
}

.insight-aside-card p:not(.card-label) {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.insight-aside-card .button {
  width: 100%;
  min-width: 0;
  padding-inline: 16px;
  font-weight: 400;
  text-align: center;
}

.insight-inline-cta .button {
  font-weight: 400;
}

.insight-aside-source {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.insight-aside-source a {
  display: block;
  margin-top: 12px;
  color: var(--jade);
  font-size: 14px;
  line-height: 1.4;
}

.guide-card {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  min-height: 300px;
  gap: 18px;
}

.guide-card h2 {
  margin-bottom: 14px;
  font-size: 31px;
}

.guide-card .card-label {
  margin-bottom: 13px;
}

.guide-card .draft-pill {
  margin-top: 24px;
}

.form-guides-search-only {
  grid-template-columns: minmax(0, 620px);
  justify-content: start;
  padding-bottom: 0;
  border-bottom: 0;
}

.form-guide-grid {
  display: grid;
  margin-top: 72px;
  background: transparent;
  gap: 24px;
}

.form-guide-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(150px, auto);
  align-items: start;
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  gap: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-guide-card:hover,
.form-guide-card:focus-within {
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 68, 58, 0.08);
  transform: translateY(-3px);
}

.form-guide-card-icon .resource-icon {
  width: 60px;
  height: 60px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.form-guide-card:hover .resource-icon,
.form-guide-card:focus-within .resource-icon {
  background: #d4e9df;
  color: var(--jade);
  transform: translateY(-2px);
}

.form-guide-card-copy .card-label {
  margin-bottom: 10px;
}

.form-guide-card-copy h2 {
  max-width: 700px;
  margin-bottom: 13px;
  font-size: 31px;
}

.form-guide-card-copy > p:last-child {
  max-width: 720px;
  color: var(--text);
}

.form-guide-card-actions {
  display: grid;
  justify-items: stretch;
  min-width: 155px;
  padding-top: 2px;
  gap: 14px;
}

.form-guide-card-actions .button {
  min-width: 155px;
  font-weight: 400;
  gap: 13px;
}

.visa-checklist-grid {
  margin-top: 72px;
}

.visa-checklist-pdf-card {
  grid-template-columns: 60px minmax(0, 1fr);
}

.form-guide-card.visa-checklist-pdf-card .resource-icon {
  background: var(--checklist-blue-soft);
  color: var(--checklist-blue);
}

.form-guide-card.visa-checklist-pdf-card .icon-checklist i::before {
  background: var(--checklist-blue-soft);
}

.form-guide-card.visa-checklist-pdf-card:hover .resource-icon,
.form-guide-card.visa-checklist-pdf-card:focus-within .resource-icon {
  background: #dce8ee;
  color: var(--checklist-blue);
}

.form-guide-card.visa-checklist-pdf-card:hover .icon-checklist i::before,
.form-guide-card.visa-checklist-pdf-card:focus-within .icon-checklist i::before {
  background: #dce8ee;
}

.visa-checklist-action-row {
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(60px, 1fr) auto;
  align-items: center;
  margin-top: 6px;
  gap: 15px;
}

.visa-checklist-action-row::before {
  height: 1px;
  background: var(--checklist-blue);
  content: "";
}

.visa-checklist-view-link {
  display: inline-flex;
  min-width: 162px;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border: 1px solid var(--checklist-blue);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  gap: 14px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.visa-checklist-view-link span {
  color: var(--coral);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.visa-checklist-view-link:hover,
.visa-checklist-view-link:focus-visible {
  background: var(--checklist-blue-soft);
  color: var(--jade-deep);
  transform: translateY(-1px);
}

.visa-checklist-view-link:hover span,
.visa-checklist-view-link:focus-visible span {
  color: var(--coral);
  transform: translateX(3px);
}

.visa-checklist-pagination .newsletter-page-button {
  border-color: var(--checklist-blue);
}

.visa-checklist-pagination .newsletter-page-button:hover,
.visa-checklist-pagination .newsletter-page-button:focus-visible {
  border-color: var(--checklist-blue);
  background: var(--checklist-blue-soft);
}

.visa-checklist-pagination .newsletter-page-button.active {
  border-color: var(--checklist-blue);
  color: var(--checklist-blue);
}

.form-guide-card:hover .form-guide-card-actions .button,
.form-guide-card:focus-within .form-guide-card-actions .button,
.form-guide-card-actions .button:hover,
.form-guide-card-actions .button:focus-visible {
  border-color: #b7d5c8;
  background: var(--sage);
  color: var(--jade-deep);
}

.form-guide-card-actions .button span,
.official-form-link span,
.official-instructions-link span {
  color: var(--coral);
  transition: transform 0.2s ease;
}

.form-guide-card-actions .button:hover span,
.form-guide-card-actions .button:focus-visible span,
.official-form-link:hover span,
.official-form-link:focus-visible span,
.official-instructions-link:hover span,
.official-instructions-link:focus-visible span {
  transform: translate(2px, -2px);
}

.official-form-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  gap: 8px;
}

.official-form-link:hover,
.official-form-link:focus-visible {
  color: var(--jade-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.official-instructions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jade-deep);
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-guide-hero {
  padding: 86px 0 68px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(11, 122, 94, 0.07), transparent 26%),
    linear-gradient(180deg, #fffefa 0%, #fbfaf5 100%);
}

.form-guide-hero-inner {
  max-width: 1080px;
}

.form-guide-hero h1 {
  max-width: 1040px;
  margin-bottom: 27px;
  font-size: clamp(48px, 6.2vw, 76px);
  line-height: 1.02;
}

.form-guide-hero-summary {
  max-width: 800px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.5;
}

.form-guide-reviewed {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-guide-detail-container {
  max-width: 1040px;
}

.form-guide-detail-section {
  background: var(--paper);
}

.form-guide-notices {
  display: grid;
  margin-bottom: 62px;
  padding: 28px 32px;
  border: 1px solid #cbded4;
  background: var(--mist);
  gap: 9px;
}

.form-guide-notices p {
  max-width: 880px;
  color: var(--text);
  font-size: 15.5px;
}

.form-guide-article {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.form-guide-section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.form-guide-section h2 {
  margin-bottom: 18px;
  font-size: 36px;
}

.form-guide-section p,
.form-guide-section li {
  color: var(--text);
  font-size: 17px;
}

.form-guide-section p + p {
  margin-top: 14px;
}

.form-guide-section ul {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.form-guide-section li {
  position: relative;
  padding-left: 23px;
}

.form-guide-section li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
  content: "";
}

.form-guide-section li strong {
  color: var(--jade-deep);
}

.form-guide-source-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: end;
  margin-top: 62px;
  padding: 36px 38px;
  border-radius: 4px;
  background: var(--sage);
  gap: 44px;
}

.form-guide-source-card h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.form-guide-source-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--text);
}

.form-guide-source-actions {
  display: grid;
  min-width: 220px;
  gap: 15px;
}

.form-guide-source-actions .button {
  gap: 12px;
}

.editorial-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: end;
  margin-top: 48px;
  padding: 34px 36px;
  border-left: 4px solid var(--coral);
  background: var(--mist);
  gap: 64px;
}

.editorial-note h2 {
  font-size: 34px;
}

.editorial-note > p {
  color: var(--text);
}

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

.checklist-card,
.faq-item {
  border-bottom: 1px solid var(--line);
}

.checklist-card summary,
.faq-item summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 104px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  gap: 18px;
}

.checklist-card summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.checklist-card summary:hover h2,
.faq-item summary:hover h3,
.faq-item summary:focus-visible h3 {
  color: var(--jade);
}

.details-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--jade);
  font-size: 20px;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

details[open] .details-icon {
  background: var(--coral-soft);
  transform: rotate(45deg);
}

.checklist-body,
.faq-answer {
  padding: 0 52px 32px 70px;
}

.checklist-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  gap: 12px 30px;
}

.checklist-body li {
  display: flex;
  align-items: flex-start;
  color: var(--text);
  gap: 11px;
}

.checklist-body li span {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border: 1px solid var(--jade);
  border-radius: 2px;
}

.checklist-body > p,
.faq-answer p {
  color: var(--text);
}

.checklist-body > p {
  padding-top: 19px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
}

.alpha-row {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.alpha-row .filter-button {
  min-width: 40px;
  padding-inline: 10px;
}

.term-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.term-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 190px;
  padding: 29px 30px 30px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.term-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.term-card:nth-child(even) {
  padding-left: 30px;
}

.term-letter {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 25px;
}

.term-card h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.term-card p {
  color: var(--text);
}

.faq-hero .hero-grid {
  grid-template-columns: minmax(0, 820px);
}

.glossary-hero .hero-grid {
  grid-template-columns: minmax(0, 820px);
}

.faq-hero-note,
.glossary-hero-note {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

.faq-page-content {
  max-width: 980px;
}

.faq-page-content > .search-field--wide {
  margin-bottom: 54px;
}

.faq-groups {
  display: grid;
  gap: 54px;
}

.faq-category-title {
  margin: 0 0 15px;
  color: var(--jade-deep);
  font-size: 34px;
}

.faq-item summary {
  grid-template-columns: minmax(0, 1fr) 34px;
  min-height: 96px;
  gap: 22px;
}

.faq-item h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.22;
  transition: color 0.18s ease;
}

.faq-answer {
  max-width: 860px;
  padding: 0 54px 31px 0;
}

.faq-answer p {
  font-size: 15.5px;
  line-height: 1.72;
}

.empty-state {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.empty-state h2 {
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text);
}

[hidden] {
  display: none !important;
}

.consultation-band {
  padding: 68px 0;
  border-top: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
}

.consultation-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}

.consultation-band .eyebrow,
.consultation-band h2 {
  color: var(--ink);
}

.consultation-band h2 {
  margin-bottom: 12px;
  font-size: clamp(38px, 4vw, 54px);
}

.consultation-band p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text);
}

.button--light {
  min-width: 200px;
  border-color: var(--jade);
  background: transparent;
  color: var(--jade-deep);
}

.page-insights .consultation-band .button--light,
.page-insight-single .consultation-band .button--light {
  font-weight: 400;
}

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--coral);
  background: #ffe3dd;
  color: var(--ink);
}

.button--light:active {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--ink);
}

.newsletter-stay-informed .consultation-inner {
  grid-template-columns: minmax(0, 1fr) minmax(410px, 520px);
}

.newsletter-light-signup {
  min-width: 0;
}

.newsletter-light-form {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.newsletter-light-form input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--jade);
  border-radius: 3px;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.newsletter-light-form input::placeholder {
  color: var(--muted);
}

.newsletter-light-form input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 117, 100, 0.12);
}

.newsletter-light-form .button--light {
  min-width: 154px;
  height: 50px;
  font-weight: 400;
}

.newsletter-light-note {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.newsletter-light-note a {
  color: inherit;
  font-weight: 400;
  text-decoration: none;
  text-underline-offset: 2px;
}

.newsletter-light-note a:hover,
.newsletter-light-note a:focus-visible {
  text-decoration: underline;
}

.sticky-consult {
  display: none;
}

.site-footer {
  padding: 54px 0 25px;
  background: #011c13;
  color: rgba(255, 254, 250, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.45fr);
  align-items: start;
  padding-bottom: 39px;
  gap: clamp(34px, 5vw, 70px);
}

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

.footer-details,
.footer-contact,
.footer-subgrid,
.footer-explore,
.footer-memberships {
  min-width: 0;
}

.footer-subgrid {
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(260px, 1fr);
  align-items: start;
  margin-top: 34px;
  gap: clamp(28px, 4vw, 56px);
}

.footer-memberships-list {
  display: grid;
  align-items: start;
  gap: 22px;
}

.footer-membership--law img {
  display: block;
  width: min(180px, 100%);
  height: auto;
  opacity: 0.78;
}

.footer-membership--mia {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-membership-tile {
  display: grid;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  padding: 7px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 254, 250, 0.78);
}

.footer-membership-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-membership-caption {
  max-width: 180px;
  overflow-wrap: anywhere;
  color: rgba(255, 254, 250, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.footer-logo {
  width: 230px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.84;
  filter: grayscale(1) brightness(0) invert(1);
  mix-blend-mode: normal;
}

.footer-intro {
  max-width: 410px;
  color: rgba(255, 254, 250, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.footer-title {
  margin: 0 0 18px;
  color: rgba(255, 254, 250, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  font-size: 14px;
  gap: 10px;
}

.footer-list,
.footer-list a,
.footer-list address,
.footer-intro,
.footer-bottom,
.footer-legal a {
  overflow-wrap: anywhere;
  color: rgba(255, 254, 250, 0.78);
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11.5px;
  line-height: 1.6;
  gap: 30px;
}

.footer-legal {
  display: flex;
  white-space: nowrap;
  gap: 18px;
}

:focus-visible {
  outline: 3px solid rgba(255, 117, 100, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .content-layout,
  .faq-layout {
    gap: 45px;
  }

  .insight-feature-layout {
    grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1.58fr);
    gap: 42px;
  }

  .insight-feature-aside {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header: 70px;
  }

  .header-inner {
    width: min(100% - 40px, 760px);
  }

  .brand img {
    width: 170px;
  }

  .desktop-nav {
    display: none;
  }

  .resources-cover,
  .resources-cover-backdrop {
    display: none !important;
  }

  .menu-toggle,
  .mobile-panel {
    display: flex;
  }

  .menu-toggle {
    flex-direction: column;
    justify-content: center;
    visibility: visible;
    opacity: 1;
  }

  body.menu-open .resource-bar {
    visibility: hidden;
    pointer-events: none;
  }

  .mega-newsletter-strip {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 14px;
  }

  .strip-track {
    width: min(260px, 100%);
  }

  .newsletter-strip-copy {
    display: grid;
    gap: 3px;
  }

  .inline-subscribe-form {
    width: min(620px, 100%);
  }

  .hero-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .newsletter-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 42px;
  }

  .newsletter-news-item {
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 34px;
  }

  .newsletter-stay-informed .consultation-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mega-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .resources-mega-shell {
    grid-template-columns: 1fr;
  }

  .mega-feature-grid {
    grid-template-columns: 1fr;
  }

  .mega-feature {
    min-height: 240px;
  }

  .mega-feature-visual {
    min-height: 280px;
  }

  .hero-intro {
    max-width: 720px;
  }

  .content-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .insight-article-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .insight-feature-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .insight-feature-toc {
    position: static;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 34px;
  }

  .insight-feature-toc nav {
    margin-top: 0;
  }

  .insight-sidebar {
    position: static;
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
    align-items: start;
  }

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

  .aside-card--sticky {
    position: static;
  }

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

  .pathway-grid article {
    min-height: 0;
  }

  .pathway-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .button--light {
    width: max-content;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 64px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .insight-single-hero {
    padding: 52px 0 48px;
  }

  .insight-single-hero h1 {
    margin: 20px 0 22px;
    font-size: 46px;
  }

  .insight-single-deck {
    font-size: 20px;
  }

  main:has(.insight-feature-body) > .insight-single-hero h1 {
    font-size: 42px;
  }

  .insight-feature-body {
    padding-top: 44px;
  }

  .insight-feature-toc {
    display: block;
  }

  .insight-feature-toc nav {
    display: none;
  }

  .insight-feature-byline {
    display: flex;
  }

  .insight-feature-visual {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 178px;
    padding: 24px 20px;
    gap: 20px;
  }

  .insight-feature-icon .insight-topic-icon {
    width: 68px;
    height: 68px;
  }

  .insight-feature-track b {
    font-size: 10px;
  }

  .insight-takeaways {
    padding: 24px 20px;
  }

  .insight-feature-prose {
    font-size: 17px;
  }

  .insight-feature-prose h2 {
    margin-top: 46px;
    font-size: 32px;
  }

  .insight-lead {
    font-size: 22px;
  }

  .insight-inline-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .insight-inline-cta .button {
    width: 100%;
  }

  .insight-question-grid,
  .insight-read-next > div {
    grid-template-columns: 1fr;
  }

  .insight-read-next a {
    min-height: 112px;
    padding: 18px 20px;
    gap: 8px;
  }

  .insight-question-grid article:nth-child(odd) {
    border-right: 0;
  }

  .insight-question-grid article + article,
  .insight-read-next a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .insight-author-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .insight-author-mark {
    min-height: 146px;
    font-size: 52px;
  }

  .insight-author-card > div:last-child {
    padding: 20px;
  }

  .insight-author-card h2 {
    font-size: 23px;
  }

  .insight-general-note {
    margin-bottom: 38px;
  }

  .insight-prose {
    font-size: 17px;
  }

  .insight-prose h2 {
    margin-top: 42px;
    font-size: 32px;
  }

  .insight-sidebar {
    grid-template-columns: 1fr;
  }

  .newsletter-container {
    width: calc(100% - 32px);
  }

  .brand img {
    width: 170px;
  }

  .header-inner {
    width: calc(100% - 32px);
    gap: 16px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    padding: 9px;
    border: 0;
  }

  .menu-toggle span {
    width: 26px;
    margin: 3px auto;
  }

  .mobile-panel {
    inset: var(--header) 0 0;
    padding: 18px 29px 24px;
    border-top: 1px solid var(--line);
    background: var(--ivory);
    color: var(--jade-deep);
  }

  .mobile-links > a {
    min-height: 52px;
    padding: 0;
    border-bottom-color: var(--line);
    color: var(--jade-deep);
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  }

  .mobile-links > a:hover,
  .mobile-links > a:focus-visible {
    padding-left: 14px;
    background: #efe9df;
    color: var(--jade-deep);
    box-shadow: inset 3px 0 0 var(--jade);
  }

  .mobile-links > a.active {
    position: relative;
    padding-left: 16px;
    color: var(--jade-deep);
    font-weight: 700;
  }

  .mobile-links > a.active::before {
    position: absolute;
    left: 0;
    width: 2px;
    height: 22px;
    background: var(--coral);
    content: "";
  }

  .mobile-resource-drawer {
    padding-block: 10px 15px;
    border-bottom-color: var(--line);
  }

  .mobile-links .mobile-view-all {
    border-color: var(--jade);
    color: var(--jade-deep);
  }

  .mobile-view-all span {
    color: var(--coral);
  }

  .mobile-links .mobile-resource-link {
    color: var(--jade-deep);
  }

  .mobile-resource-link .resource-icon {
    background: var(--sage);
    color: var(--jade);
  }

  .mobile-resource-link:hover,
  .mobile-resource-link:focus-visible {
    background: #efe9df;
  }

  .mobile-menu-footer {
    display: grid;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    gap: 10px;
  }

  .mobile-menu-support {
    display: flex;
    align-items: baseline;
    margin: 0;
    color: var(--text);
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
    gap: 8px;
  }

  .mobile-menu-support strong {
    color: var(--jade-deep);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-panel .mobile-cta {
    display: flex;
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid var(--jade);
    background: transparent;
    color: var(--jade-deep);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-panel .mobile-cta:hover,
  .mobile-panel .mobile-cta:focus-visible,
  .mobile-panel .mobile-cta:active {
    border-color: var(--jade);
    background: #efe9df;
    color: var(--jade-deep);
  }

  .resource-bar {
    top: var(--header);
  }

  .page-overview .resource-bar {
    display: none;
  }

  .resource-inner {
    width: 100%;
    min-height: 54px;
    overflow: visible;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .resource-inner > .resource-link {
    display: none;
  }

  .resource-mobile-select {
    position: relative;
    display: block;
    width: 100%;
  }

  .resource-mobile-select summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    cursor: pointer;
    list-style: none;
    color: var(--jade-deep);
    font-size: 15px;
    gap: 14px;
  }

  .resource-mobile-select summary::-webkit-details-marker {
    display: none;
  }

  .mobile-resource-current {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 7px;
  }

  .mobile-resource-current strong {
    font-weight: 800;
  }

  .mobile-resource-current > span:last-child {
    overflow: hidden;
    color: var(--text);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .resource-select-icon {
    width: 9px;
    height: 9px;
    flex: none;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
  }

  .resource-mobile-select[open] .resource-select-icon {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .resource-mobile-options {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 45px rgba(5, 63, 59, 0.16);
    gap: 4px;
  }

  .resource-mobile-options a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 10px;
    color: var(--text);
    font-size: 14px;
  }

  .resource-mobile-options a:hover,
  .resource-mobile-options a:focus-visible {
    background: #efe9df;
    color: var(--jade-deep);
  }

  .resource-mobile-options a.active {
    background: var(--mist);
    color: var(--jade-deep);
    font-weight: 800;
    box-shadow: inset 3px 0 0 var(--jade);
  }

  .resource-hero {
    padding: 58px 0 52px;
  }

  .newsletter-hero {
    padding: 52px 0 45px;
  }

  .newsletter-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .newsletter-hero h1 {
    font-size: 45px;
    line-height: 1.01;
  }

  .newsletter-hero-copy {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.62;
  }

  .newsletter-archive.section {
    padding: 0 0 32px;
  }

  .newsletter-controls {
    padding-top: 28px;
  }

  .newsletter-control-row {
    min-height: 82px;
  }

  .newsletter-search {
    width: 100%;
  }

  .newsletter-year-filters {
    min-height: 58px;
    gap: 0;
  }

  .newsletter-year-button {
    min-height: 58px;
    padding: 0 15px;
    flex: none;
  }

  .newsletter-news-item {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 0 36px;
    gap: 16px;
  }

  .newsletter-news-meta {
    display: grid;
    align-items: start;
    gap: 8px;
  }

  .newsletter-news-title {
    margin-bottom: 13px;
    font-size: 30px;
    line-height: 1.13;
  }

  .newsletter-news-summary {
    font-size: 15px;
    line-height: 1.65;
  }

  .newsletter-read-row {
    margin-top: 28px;
  }

  .newsletter-pagination {
    margin: 28px 0 0;
  }

  .newsletter-light-form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 45px;
    line-height: 1.03;
  }

  .hero-intro > p {
    font-size: 20px;
  }

  .section {
    padding: 56px 0 66px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .resources-mega-section {
    padding-top: 52px;
    padding-bottom: 28px;
  }

  .mega-heading h1 {
    font-size: 42px;
  }

  .resources-mega-shell {
    padding: 8px;
    border-radius: 10px;
  }

  .mega-directory {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    gap: 29px;
  }

  .directory-link {
    min-height: 62px;
  }

  .mega-feature {
    grid-template-columns: 1fr;
  }

  .mega-feature-visual {
    min-height: 260px;
  }

  .mega-feature-copy {
    padding: 29px 24px 31px;
  }

  .featured-newsletter {
    min-height: 230px;
    padding: 27px 24px;
  }

  .mega-newsletter-strip {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 14px;
  }

  .newsletter-strip-copy {
    display: grid;
    gap: 3px;
  }

  .newsletter-signup summary {
    justify-content: flex-start;
  }

  .inline-subscribe-form {
    grid-template-columns: 1fr;
  }

  .resource-grid,
  .insight-grid,
  .guide-grid,
  .term-list {
    grid-template-columns: 1fr;
  }

  .resource-card,
  .resource-card:nth-child(even),
  .resource-card:nth-child(odd) {
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
  }

  .resource-card:nth-child(odd):hover,
  .resource-card:nth-child(odd):focus-visible {
    padding-left: 0;
  }

  .resource-card h2 {
    font-size: 30px;
  }

  .pathway-grid article {
    padding: 29px 25px;
  }

  .toolbar,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .content-aside {
    grid-template-columns: 1fr;
  }

  .archive-item {
    grid-template-columns: 1fr;
    padding: 34px 0;
    gap: 16px;
  }

  .archive-item h2 {
    font-size: 30px;
  }

  .insight-card,
  .guide-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .insight-card-layout {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
  }

  .insight-card-copy .card-kicker {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
    gap: 5px;
  }

  .insight-card h2 {
    font-size: 27px;
  }

  .guide-card {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .editorial-note {
    grid-template-columns: 1fr;
    padding: 28px 25px;
    gap: 22px;
  }

  .checklist-card summary,
  .faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    min-height: 90px;
    gap: 12px;
  }

  .checklist-card h2 {
    font-size: 23px;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    min-height: 88px;
    padding: 20px 0;
    gap: 16px;
  }

  .faq-item h3 {
    font-size: 22px;
  }

  .faq-category-title {
    font-size: 30px;
  }

  .faq-page-content > .search-field--wide {
    margin-bottom: 54px;
  }

  .faq-hero-note,
  .glossary-hero-note {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .checklist-body,
  .faq-answer {
    padding: 0 0 28px 46px;
  }

  .faq-answer {
    padding: 0 42px 27px 0;
  }

  .checklist-body ul {
    grid-template-columns: 1fr;
  }

  .term-card,
  .term-card:nth-child(even),
  .term-card:nth-child(odd) {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
  }

  .consultation-band {
    padding: 54px 0;
  }

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

  body {
    padding-bottom: 0;
  }

  .sticky-consult {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 64px;
    padding: 8px 16px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -5px 16px rgba(5, 63, 59, 0.07);
    gap: 12px;
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  body.show-sticky .sticky-consult {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-copy {
    min-width: 118px;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11.5px;
    line-height: 1.18;
  }

  .sticky-copy strong {
    display: block;
    color: var(--jade-deep);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .sticky-btn {
    flex: 1;
    padding: 13px 12px;
    background: #036645;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .sticky-btn:hover,
  .sticky-btn:focus-visible,
  .sticky-btn:active {
    background: var(--coral);
    color: var(--ink);
  }

  body.menu-open .sticky-consult,
  body.resources-cover-open .sticky-consult {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }

  .form-guide-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 28px 20px;
    gap: 18px;
  }

  .form-guide-card-icon .resource-icon {
    width: 48px;
    height: 48px;
  }

  .form-guide-card-copy h2 {
    font-size: 27px;
  }

  .form-guide-card-actions {
    grid-column: 2;
    justify-items: start;
    width: 100%;
    padding-top: 6px;
  }

  .form-guide-card-actions .button {
    width: 100%;
  }

  .form-guide-hero {
    padding: 56px 0 50px;
  }

  .form-guide-hero h1 {
    margin-bottom: 22px;
    font-size: 43px;
  }

  .form-guide-hero-summary {
    font-size: 20px;
  }

  .form-guide-notices {
    margin-bottom: 42px;
    padding: 24px 22px;
  }

  .form-guide-section {
    padding: 34px 0;
  }

  .form-guide-section h2 {
    font-size: 30px;
  }

  .form-guide-source-card {
    grid-template-columns: 1fr;
    margin-top: 46px;
    padding: 30px 24px;
    gap: 28px;
  }

  .form-guide-source-actions {
    min-width: 0;
  }

  .form-guide-source-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 18px;
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
    grid-template-columns: none;
    gap: 30px;
  }

  .footer-legal {
    margin-top: 14px;
    white-space: normal;
  }

  .site-footer {
    padding: 32px 0 25px;
  }

  .footer-logo {
    width: 180px;
    margin-bottom: 12px;
  }

  .footer-intro {
    max-width: 320px;
  }

  .footer-title {
    margin-bottom: 14px;
  }

  .footer-list {
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .footer-subgrid {
    grid-template-columns: minmax(102px, 0.58fr) minmax(0, 1fr);
    gap: 18px;
  }

  .footer-membership--mia {
    align-items: center;
    gap: 9px;
  }

  .footer-membership--law img {
    width: min(142px, 100%);
  }

  .footer-membership-tile {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    padding: 5px;
  }

  .footer-membership-caption {
    font-size: 11.5px;
    line-height: 1.4;
  }
}

@media (max-width: 340px) {
  .footer-subgrid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
