* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  color: #242225;
  background: #fff;
  line-height: 1.58;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

main {
  overflow: hidden;
}

:root {
  --wm-green: #72c43b;
  --wm-green-dark: #157632;
  --wm-cyan: #2bb4c7;
  --wm-teal: #2eb2c2;
  --wm-text: #242225;
  --wm-muted: #5b6270;
  --wm-line: #d8e3d3;
  --wm-soft: #f7faf6;
  --wm-shadow: 0 8px 18px rgba(22, 34, 20, 0.18);
  --wm-section: min(1168px, calc(100vw - 40px));
}

.header-inner,
main > section,
main > article,
.footer-inner {
  width: var(--wm-section);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #161616;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand span {
  max-width: 176px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.desktop-nav,
.header-cta {
  display: none;
}

.mobile-nav {
  margin-left: auto;
  position: relative;
}

.mobile-nav summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  list-style: none;
  cursor: pointer;
  color: #1b2434;
  font-weight: 800;
}

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

.mobile-nav summary i,
.mobile-nav summary i::before,
.mobile-nav summary i::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #1b2434;
}

.mobile-nav summary i {
  position: relative;
}

.mobile-nav summary i::before,
.mobile-nav summary i::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-nav summary i::before {
  top: -6px;
}

.mobile-nav summary i::after {
  top: 6px;
}

.mobile-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(330px, calc(100vw - 40px));
  padding: 18px;
  background: #fff;
  border: 1px solid var(--wm-line);
  box-shadow: var(--wm-shadow);
}

.mobile-panel-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.mobile-panel-head strong {
  font-size: 18px;
}

.mobile-panel-head span {
  color: var(--wm-muted);
  font-size: 13px;
}

.mobile-panel nav {
  display: grid;
  gap: 6px;
}

.mobile-panel nav a,
.mobile-cta {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #dce9d8;
  font-weight: 800;
}

.mobile-panel nav a[aria-current="page"] {
  border-color: var(--wm-green);
  color: var(--wm-green-dark);
}

.mobile-cta {
  margin-top: 12px;
  justify-content: center;
  background: var(--wm-green);
  color: #fff;
  box-shadow: var(--wm-shadow);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}

.button.green {
  background: var(--wm-green);
  color: #fff;
  box-shadow: 0 6px 12px rgba(42, 117, 27, 0.22);
}

.button.cyan {
  background: var(--wm-cyan);
  color: #fff;
  box-shadow: 0 6px 14px rgba(29, 118, 130, 0.28);
}

.button.ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.button.wide {
  width: min(380px, 100%);
}

.wm-hero,
.inner-hero {
  width: 100%;
  min-height: 393px;
  display: grid;
  align-items: end;
  padding: 118px 0 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 18, 25, 0.16), rgba(12, 18, 25, 0.72)),
    var(--hero-image) center / cover no-repeat,
    #26313b;
}

.wm-hero {
  min-height: calc(100svh - 62px);
}

.wm-hero-copy,
.inner-hero > div,
.inner-hero .breadcrumbs {
  width: var(--wm-section);
  margin-inline: auto;
}

.wm-hero-copy {
  max-width: min(920px, var(--wm-section));
}

.hero-kicker,
.eyebrow,
.resource-meta {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-kicker {
  color: #fff;
  margin-bottom: 8px;
}

.eyebrow {
  color: var(--wm-green-dark);
  margin-bottom: 10px;
}

.wm-hero h1,
.inner-hero h1,
.resource-hero h1,
.contact-hero h1,
.policy-title h1,
.sitemap-title h1,
.not-found-panel h1,
.article-head h1 {
  font-size: clamp(34px, 9vw, 58px);
  line-height: 1.07;
  margin-bottom: 12px;
  font-weight: 900;
  text-wrap: balance;
}

.wm-hero p,
.inner-hero p {
  max-width: 680px;
  font-size: 20px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .button {
  flex: 1 1 140px;
  max-width: 230px;
}

.source-intro-split,
.split-wide {
  padding: 82px 0 72px;
  display: grid;
  gap: 28px;
  border-bottom: 1px solid #e0e7dc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.split-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--wm-shadow);
}

.split-copy h2,
.source-heading h2,
.mode-panel h2,
.guide-copy h3,
.footer-brand strong,
.policy-panel h2,
.sitemap-block h2 {
  color: var(--wm-text);
  font-weight: 900;
}

.split-copy h2 {
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.12;
}

.split-copy p {
  color: #2c2d31;
  font-size: 18px;
}

.source-heading {
  padding: 76px 0 24px;
  text-align: center;
}

.source-heading.compact {
  padding-top: 36px;
}

.source-heading.side {
  padding: 0;
  text-align: left;
}

.source-heading > p {
  max-width: 820px;
  margin-inline: auto;
  color: #2d3036;
  font-size: 18px;
}

.dot-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.dot-title h2 {
  margin: 0;
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1.08;
}

.dot-title > span {
  width: 70px;
  height: 18px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle, var(--wm-green) 0 7px, transparent 8px) 0 50% / 22px 18px repeat-x;
}

.expertise-section {
  padding: 0 0 64px;
}

.expertise-list {
  display: grid;
  gap: 8px;
}

.expertise-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--wm-green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(55, 112, 41, 0.12);
}

.expertise-row > span {
  color: var(--wm-green);
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.expertise-row h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.22;
}

.expertise-row p {
  margin: 0;
  color: var(--wm-muted);
}

.mode-panel {
  padding: 42px 0 72px;
  background: #fff;
}

.home-service-tabs {
  padding-top: 10px;
}

.home-service-tabs .mode-tabs article,
.home-service-tabs .mode-tabs article:nth-child(odd) {
  background: #fff;
  color: var(--wm-text);
}

.home-service-tabs .mode-tabs article:nth-child(even) {
  background: var(--wm-green);
  color: #fff;
}

.mode-tabs {
  width: var(--wm-section);
  margin-inline: auto;
  display: grid;
  border: 1px solid var(--wm-green);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--wm-shadow);
}

.mode-tabs article {
  min-height: 62px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: var(--wm-green);
  color: #fff;
  border-bottom: 1px solid rgba(30, 112, 36, 0.36);
}

.mode-tabs article:last-child {
  border-bottom: 0;
}

.mode-tabs article.is-active {
  background: #fff;
  color: var(--wm-text);
}

.service-mode-panel .mode-tabs article,
.service-mode-panel .mode-tabs article:nth-child(odd) {
  background: #fff;
  color: var(--wm-text);
}

.service-mode-panel .mode-tabs article:nth-child(even) {
  background: var(--wm-green);
  color: #fff;
}

.mode-tabs span {
  font-weight: 900;
  color: inherit;
}

.mode-tabs h3 {
  margin: 0;
  font-size: 18px;
}

.intake-search-strip {
  padding: 68px 0;
  border-top: 1px solid #e6ece2;
  border-bottom: 1px solid #e6ece2;
  text-align: center;
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.12);
}

.static-search-row {
  display: grid;
  gap: 14px;
  margin: 12px 0 24px;
}

.static-search-row label,
.fake-form label {
  display: grid;
  gap: 7px;
  color: #222;
  text-align: left;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cfd8cf;
  border-radius: 4px;
  background: #fff;
  color: #232323;
  font: inherit;
}

textarea {
  min-height: 134px;
  resize: vertical;
}

.proof-strip {
  width: 100%;
  padding: 58px 20px;
  display: grid;
  gap: 30px;
  background: var(--wm-teal);
  color: #fff;
  text-align: center;
}

.proof-strip article {
  display: grid;
  gap: 6px;
}

.proof-strip strong {
  font-size: 44px;
  line-height: 1;
}

.proof-strip p {
  margin: 0;
  font-size: 20px;
}

.source-cta-band {
  width: 100%;
  min-height: 430px;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 22px;
  padding: 82px 20px;
  background: var(--wm-green);
  color: #fff;
  text-align: left;
}

.source-cta-band > div {
  width: min(620px, 100%);
}

.source-cta-band h2,
.source-cta-band p,
.source-cta-band .eyebrow {
  color: #fff;
}

.source-cta-band h2 {
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1.08;
}

.source-cta-band p {
  font-size: 18px;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.resource-hub-preview,
.service-resource-block,
.featured-stories {
  padding: 0 0 78px;
}

.resource-carousel-shell {
  width: min(100%, 1260px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.resource-grid,
.resource-list {
  display: grid;
  gap: 18px;
}

.resource-card {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid #dfe7dc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
}

.resource-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(#f5f5f5, #c9c9c9);
}

.resource-card-body {
  padding: 0 16px 18px;
}

.resource-meta {
  color: var(--wm-green-dark);
}

.resource-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.resource-card p {
  color: var(--wm-muted);
}

.text-link {
  color: var(--wm-green-dark);
  font-weight: 900;
}

.inner-hero {
  min-height: 440px;
  align-items: center;
}

.inner-hero .breadcrumbs {
  margin-bottom: 30px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  font-size: 13px;
  color: inherit;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  opacity: .62;
}

.guide-split {
  padding: 74px 0;
  display: grid;
  gap: 24px;
  border-top: 1px solid #e6ece2;
  border-bottom: 1px solid #e6ece2;
}

.guide-copy {
  display: grid;
  gap: 12px;
}

.guide-copy h3 {
  font-size: clamp(25px, 7vw, 34px);
}

.prep-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.prep-list span {
  padding: 13px 16px;
  border: 1px solid var(--wm-line);
  border-radius: 6px;
  background: #fff;
  color: var(--wm-green-dark);
  font-weight: 900;
}

.intake-form-shell {
  padding: 76px 0 86px;
}

.service-final-request {
  border-top: 1px solid #e6ece2;
}

.fake-form {
  display: grid;
  gap: 20px;
  max-width: 820px;
  margin-inline: auto;
}

.submit-like {
  justify-self: center;
  min-width: 220px;
}

.mission-band {
  width: 100%;
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 46px 0 62px;
  background: #fff;
}

.values-grid {
  width: var(--wm-section);
  margin-inline: auto;
  padding: 70px 0;
  display: grid;
  gap: 0;
}

.values-grid article {
  min-height: 150px;
  padding: 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border: 0 solid #dce8d7;
  border-bottom-width: 1px;
  border-radius: 0;
  background: #fff;
}

.values-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--wm-green-dark);
  font-weight: 900;
}

.values-grid h3 {
  margin: 0;
  font-size: 21px;
}

.resource-hero,
.contact-hero,
.policy-title,
.sitemap-title,
.not-found-panel {
  padding: 70px 0 50px;
}

.resource-hero h1,
.contact-hero h1,
.policy-title h1,
.sitemap-title h1,
.not-found-panel h1,
.article-head h1 {
  color: var(--wm-text);
}

.resource-hero .hero-kicker,
.contact-hero .hero-kicker,
.policy-title .hero-kicker,
.sitemap-title .hero-kicker,
.not-found-panel .hero-kicker,
.article-head .hero-kicker {
  color: var(--wm-green-dark);
}

.resource-hero p,
.contact-hero p,
.policy-title p,
.sitemap-title p,
.not-found-panel p,
.article-head p {
  max-width: 760px;
  color: var(--wm-muted);
  font-size: 18px;
}

.resource-index-layout {
  padding: 42px 0 96px;
  display: grid;
  gap: 28px;
}

.resource-filter {
  width: min(1080px, calc(100vw - 40px));
  margin-inline: auto;
  padding: 8px 0 18px;
  border: 0;
  background: #fff;
  text-align: center;
}

.resource-filter h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: 26px;
  line-height: 1.16;
}

.resource-filter p {
  max-width: 980px;
  margin-inline: auto;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filter-chips span {
  padding: 8px 11px;
  border: 1px solid var(--wm-green);
  border-radius: 8px;
  background: #fff;
  color: var(--wm-green-dark);
  font-weight: 900;
}

.source-resource-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 494px;
  display: grid;
  align-items: start;
  padding: 118px 20px 47px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 18, 25, 0.16), rgba(12, 18, 25, 0.72)),
    var(--hero-image) center / cover no-repeat,
    #26313b;
  color: #fff;
  text-align: center;
}

.source-resource-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.source-resource-hero > * {
  position: relative;
  z-index: 1;
}

.source-resource-hero .breadcrumbs {
  width: var(--wm-section);
  margin: 0 auto 3px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.source-resource-hero h1 {
  max-width: 980px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(34px, 7vw, 48px);
  line-height: 1.12;
}

.source-resource-hero .hero-kicker,
.source-resource-hero p {
  margin-inline: auto;
  color: #fff;
}

.source-resource-hero p {
  max-width: 1020px;
}

.resource-category-line {
  width: min(780px, 100%);
  margin: 30px auto 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
  color: rgba(255, 255, 255, 0.86);
}

.resource-category-line span {
  position: relative;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.resource-category-line span:first-child {
  color: #fff;
}

.resource-category-line span + span::before {
  content: "/";
  position: absolute;
  left: -3px;
  top: 0;
  color: rgba(255, 255, 255, 0.48);
}

.article-sheet {
  padding: 88px 0 96px;
}

.article-sheet > .breadcrumbs {
  max-width: 960px;
  margin-inline: auto;
  padding-top: 0;
  color: var(--wm-muted);
}

.article-feature-card {
  width: min(780px, 100%);
  margin: 40px auto 72px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
}

.article-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-head {
  max-width: 940px;
  margin-inline: auto;
  padding: 0 0 42px;
  text-align: center;
}

.article-head h1 {
  color: var(--wm-green);
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.12;
}

.article-head p,
.article-head time {
  margin-inline: auto;
}

.article-flow {
  max-width: 970px;
  margin-inline: auto;
  display: grid;
  gap: 54px;
}

.article-body {
  display: grid;
  gap: 42px;
  font-size: 18px;
}

.article-body section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 180px;
}

.article-body h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 36px);
  line-height: 1.2;
}

.article-body p {
  margin-bottom: 0;
  color: #111;
  font-weight: 500;
  line-height: 1.72;
}

.article-keypoints {
  padding: 36px 40px;
  background: #f1f2f3;
}

.article-keypoints h2,
.article-aux-block h2 {
  margin-bottom: 12px;
}

.article-keypoints ul {
  margin: 0;
  padding-left: 20px;
  color: #222;
}

.article-keypoints a,
.article-keypoints li span {
  color: #222;
  font-weight: 800;
}

.article-keypoints a:hover,
.article-keypoints a:focus-visible {
  color: var(--wm-green-dark);
}

.article-aux-links {
  max-width: 970px;
  margin: 88px auto 0;
  padding-top: 42px;
  border-top: 1px solid #1e2732;
  display: grid;
  gap: 22px;
}

.article-aux-block {
  padding: 0;
  background: transparent;
}

.article-aux-block h2 {
  text-align: center;
  font-size: clamp(28px, 5vw, 42px);
}

.article-aux-block[data-kind="article_pager"] {
  order: -1;
}

.article-aux-block[data-kind="article_pager"] h2 {
  display: none;
}

.article-aux-block[data-kind="article_pager"] div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.article-aux-block[data-kind="related_articles"] {
  order: 1;
  padding-top: 26px;
}

.article-aux-block[data-kind="related_articles"] div {
  display: grid;
  gap: 28px;
  margin-top: 54px;
}

.article-aux-block a {
  min-height: 0;
  display: inline-flex;
  align-items: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--wm-green-dark);
  background: transparent;
  font-weight: 900;
  line-height: 1.22;
}

.contact-hero {
  text-align: center;
}

.contact-hero .breadcrumbs {
  justify-content: flex-start;
  color: var(--wm-text);
}

.contact-hero p {
  margin-inline: auto;
}

.contact-intake-layout {
  width: min(900px, calc(100vw - 40px));
  padding: 0 0 112px;
  display: grid;
  gap: 34px;
}

.contact-intro {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contact-intro h2 {
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.16;
}

.contact-intro p {
  color: var(--wm-muted);
  font-size: 18px;
}

.contact-form {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  display: grid;
  gap: 30px;
}

.contact-form label {
  gap: 9px;
  font-size: 18px;
}

.contact-form input:not([type="radio"]),
.contact-form select {
  min-height: 52px;
  border-color: #d6d9d6;
  border-radius: 7px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
}

.contact-form textarea {
  min-height: 190px;
  border-color: #d6d9d6;
  border-radius: 7px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.contact-form fieldset input[type="radio"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  flex: 0 0 16px;
}

.contact-prep {
  padding: 0 0 70px;
}

.compact-values {
  padding-top: 24px;
}

.policy-panel {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid #e4eadf;
}

.policy-panel > span {
  color: var(--wm-green-dark);
  font-size: 24px;
  font-weight: 900;
}

.policy-panel p {
  color: #343940;
}

.sitemap-layout {
  padding: 10px 0 80px;
  display: grid;
  gap: 24px;
}

.sitemap-block {
  padding: 22px;
  border: 1px solid #dce8d7;
  border-radius: 8px;
}

.sitemap-links {
  display: grid;
  gap: 8px;
}

.sitemap-links a {
  display: grid;
  gap: 2px;
  padding: 13px 0;
  border-bottom: 1px solid #e6ece2;
}

.sitemap-links span {
  font-weight: 900;
}

.sitemap-links small {
  color: var(--wm-muted);
}

.not-found-panel {
  min-height: 58svh;
  display: grid;
  align-content: center;
}

.site-footer {
  border-top: 1px solid #cfd8cf;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.10);
  background: #fff;
}

.footer-inner {
  padding: 28px 0;
  display: grid;
  gap: 22px;
  text-align: center;
}

.footer-brand p {
  color: var(--wm-muted);
  margin-bottom: 0;
}

.wm-footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.wm-footer-nav a,
.footer-legal a {
  font-weight: 800;
}

.footer-contact h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-contact p,
.footer-legal span {
  margin: 0;
  color: var(--wm-muted);
}

@media (min-width: 700px) {
  :root {
    --wm-section: min(1170px, calc(100vw - 80px));
  }

  .wm-hero,
  .inner-hero {
    padding-bottom: 72px;
  }

  .hero-actions .button {
    flex: 0 0 190px;
  }

  .source-intro-split,
  .split-wide {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .static-search-row {
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: calc((100vw - min(1170px, calc(100vw - 80px))) / 2);
  }

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

  .guide-split,
  .sitemap-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

  .values-grid article {
    border-bottom-width: 0;
    border-right-width: 1px;
  }

  .values-grid article:nth-child(3n) {
    border-right-width: 0;
  }

  .values-grid article:nth-child(n+4) {
    border-top-width: 1px;
  }

  .resource-index-layout {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .resource-list {
    width: min(1140px, calc(100vw - 80px));
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 46px;
  }

  .resource-index-layout .resource-card {
    border: 0;
    box-shadow: none;
    text-align: center;
  }

  .resource-index-layout .resource-image img {
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
  }

  .resource-index-layout .resource-card-body {
    padding: 12px 6px 0;
  }

  .resource-index-layout .resource-card h3 {
    font-size: 18px;
  }

  .resource-index-layout .resource-card-body > p:not(.resource-meta),
  .resource-index-layout .text-link {
    display: none;
  }

  .article-aux-block[data-kind="related_articles"] div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .header-inner {
    min-height: 98px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    max-width: 210px;
    font-size: 18px;
  }

  .mobile-nav {
    display: none;
  }

  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .desktop-nav {
    flex: 1;
    align-items: center;
    gap: 28px;
    justify-content: center;
    min-width: 0;
  }

  .desktop-nav a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
  }

  .desktop-nav a[aria-current="page"] {
    color: var(--wm-green-dark);
  }

  .header-cta {
    min-width: 206px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 4px;
    background: var(--wm-green);
    color: #fff;
    font-weight: 900;
    box-shadow: var(--wm-shadow);
  }

  .wm-hero {
    min-height: calc(100svh - 98px);
  }

  .wm-hero h1,
  .inner-hero h1 {
    font-size: 56px;
  }

  .inner-hero h1 {
    font-size: 64px;
  }

  .source-heading {
    padding-top: 78px;
  }

  .expertise-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .mode-tabs {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
    overflow: visible;
  }

  .mode-tabs article {
    min-height: 74px;
    border-bottom: 0;
    border-right: 1px solid rgba(30, 112, 36, 0.26);
  }

  .mode-tabs article:last-child {
    border-right: 0;
  }

  .wide-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .source-cta-band {
    grid-template-columns: 1fr 360px;
    justify-content: center;
    text-align: left;
    padding-inline: max(80px, calc((100vw - 1170px) / 2));
  }

  .source-cta-band > div {
    justify-self: end;
  }

  .resource-carousel-shell {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1.25fr 1.2fr 1fr;
    align-items: center;
    text-align: left;
  }

  .footer-legal {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

@media (max-width: 420px) {
  :root {
    --wm-section: min(350px, calc(100vw - 32px));
  }

  .dot-title {
    gap: 10px;
  }

  .dot-title > span {
    width: 42px;
  }

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

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    padding-inline: 10px;
  }

  .resource-carousel-shell {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .policy-panel {
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }
}
