:root {
  --green: #005f3d;
  --green-deep: #00482f;
  --green-soft: #ecf6f1;
  --blue: #123d73;
  --blue-soft: #eef5fb;
  --amber: #b7791f;
  --ink: #111827;
  --text: #273244;
  --muted: #667085;
  --line: #e5e9ef;
  --surface: #ffffff;
  --page: #f7f9f8;
  --shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans SC",
    "Microsoft YaHei",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.anchor-offset {
  position: relative;
  top: -78px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 78px;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(229, 233, 239, 0.86);
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 246px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  white-space: nowrap;
}

.desktop-nav > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 100%;
  border: 0;
  color: #111827;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.nav-link::after {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-group:hover .nav-link,
.nav-group:focus-within .nav-link {
  color: var(--green);
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  z-index: 55;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(229, 233, 239, 0.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  visibility: hidden;
}

.nav-dropdown-wide {
  min-width: 264px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  color: #263142;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--green);
  background: var(--green-soft);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.header-actions,
.mobile-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
}

.mobile-actions,
.mobile-menu {
  display: none;
}

.mobile-header-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 34px;
  padding: 0 11px;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.mobile-header-donate:hover,
.mobile-header-donate:focus-visible {
  color: #fff;
  background: var(--green-deep);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #111827;
  background: transparent;
}

.icon-button [data-lucide],
.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--green);
  background: var(--green-soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
}

.language-switcher [data-lucide] {
  width: 21px;
  height: 21px;
  stroke-width: 2.1;
}

.language-switcher span {
  color: #b5bdc8;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--green);
}

.donate-button,
.support-button,
.primary-button,
.support-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(0, 95, 61, 0.16);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.donate-button,
.support-button {
  min-width: 86px;
  padding: 0 20px;
}

.primary-button,
.support-cta {
  padding: 0 22px;
}

.donate-button:hover,
.donate-button:focus-visible,
.support-button:hover,
.support-button:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.support-cta:hover,
.support-cta:focus-visible {
  background: var(--green-deep);
  box-shadow: 0 14px 28px rgba(0, 95, 61, 0.22);
  transform: translateY(-1px);
}

.header-search {
  position: absolute;
  top: calc(100% + 10px);
  right: 44px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(460px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  visibility: hidden;
}

.header-search.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header-search label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf9;
}

.header-search [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.header-search button {
  min-width: 72px;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 430px;
  height: clamp(430px, 34vw, 560px);
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100% - 112px, 1400px);
  height: 100%;
  transform: translateX(-50%);
}

.hero-image {
  object-fit: contain;
  object-position: right center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, #fff 0 32%, rgba(255, 255, 255, 0.86) 43%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 68%);
}

.hero-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: min(100% - 112px, 1400px);
  min-height: 100%;
  margin: 0 auto;
  padding: 56px 0 50px;
}

.hero h1 {
  margin: 0;
  color: var(--green);
  font-size: 54px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-line {
  display: block;
  width: 62px;
  height: 3px;
  margin: 22px 0 22px;
  background: var(--green);
}

.hero p {
  max-width: 540px;
  margin: 0;
  color: #17231d;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.82;
}

.section-inner {
  width: min(100% - 112px, 1400px);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-heading.compact {
  align-items: center;
  margin-bottom: 16px;
}

h2 {
  margin: 0;
  color: var(--green);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-heading p {
  margin: 6px 0 0;
  color: #3c4655;
  font-size: 15px;
  font-weight: 600;
}

.content-eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.archive-home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.archive-home-link [data-lucide] {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
  transition: transform 0.2s ease;
}

.archive-home-link:hover [data-lucide],
.archive-home-link:focus-visible [data-lucide] {
  transform: translateX(-2px);
}

.text-link,
.column-heading a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.text-link [data-lucide],
.column-heading a [data-lucide],
.work-card > [data-lucide] {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  stroke-width: 2.4;
}

.work-section {
  padding: 28px 0 22px;
  background: #fbfcfb;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  position: relative;
  display: grid;
  --work-card-image-height: 100px;
  grid-template-rows: var(--work-card-image-height) minmax(116px, auto);
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(0, 95, 61, 0.28);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.09);
  transform: translateY(-2px);
}

.work-card img {
  display: block;
  width: 100%;
  height: var(--work-card-image-height);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.96);
}

.work-card-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 52px 18px 18px;
}

.work-card strong {
  color: var(--green);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.38;
}

.work-card span span {
  color: #384354;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

.work-card > [data-lucide] {
  position: absolute;
  right: 16px;
  top: calc(var(--work-card-image-height) + (100% - var(--work-card-image-height)) / 2);
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(0, 95, 61, 0.34);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  transform: translateY(-50%);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.impact-strip div,
.about-highlights div {
  display: grid;
  align-content: start;
  gap: 5px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.impact-strip strong,
.about-highlights strong {
  color: var(--green);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.12;
}

.impact-strip span,
.about-highlights span {
  color: #3f4a5d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.work-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.work-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  scroll-margin-top: 96px;
}

.work-detail-card img {
  display: block;
  width: 100%;
  height: 220px;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.96);
}

.work-detail-content {
  min-width: 0;
  padding: 20px 22px 22px;
}

.work-detail-content .content-eyebrow,
.work-future-panel .content-eyebrow {
  margin-bottom: 7px;
}

.work-detail-content h2,
.work-detail-content h3,
.work-future-panel h2,
.work-future-panel h3 {
  margin: 0;
  color: #13243a;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.36;
  letter-spacing: 0;
}

.work-detail-content p,
.work-future-panel p {
  margin: 10px 0 0;
  color: #354052;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.78;
}

.work-points {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: #344054;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.work-points li::marker {
  color: var(--green);
}

.work-future-panel {
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(18, 61, 115, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 95, 61, 0.08), rgba(18, 61, 115, 0.08)),
    #fff;
  scroll-margin-top: 96px;
}

.home-resource-section {
  padding: 8px 0 24px;
  background:
    linear-gradient(180deg, #fbfcfb 0, #fff 90px),
    #fff;
}

.home-resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(330px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.resource-panel,
.news-panel {
  min-width: 0;
}

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

.column-heading {
  display: none;
}

.update-column {
  min-width: 0;
}

.update-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  height: 92px;
  min-height: 92px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.update-item:hover,
.update-item:focus-visible {
  border-color: rgba(0, 95, 61, 0.26);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.07);
  transform: translateY(-1px);
}

.update-text {
  grid-column: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 3px;
  min-width: 0;
  padding: 9px 10px 8px;
  color: #162033;
}

.update-category {
  overflow: hidden;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-title {
  display: -webkit-box;
  overflow: hidden;
  color: #162033;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.update-text time {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.update-arrow {
  grid-column: 3;
  width: 18px;
  height: 18px;
  color: var(--green);
  stroke-width: 2.4;
}

.thumb {
  position: relative;
  grid-column: 1;
  display: block;
  overflow: hidden;
  width: 92px;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  background: #dce6ef;
}

.image-thumb {
  background:
    linear-gradient(135deg, rgba(0, 95, 61, 0.08), rgba(18, 61, 115, 0.08)),
    #f2f6f5;
}

.image-thumb img,
.content-card-image-thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-thumb img[src$="logo-main-horizontal-green.png"],
.content-card-image-thumb img[src$="logo-main-horizontal-green.png"] {
  inset: 18%;
  width: 64%;
  height: 64%;
  object-fit: contain;
}

.news-list {
  display: grid;
}

.news-list a {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 16px;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #243041;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.news-list a:first-child {
  padding-top: 3px;
}

.news-list time {
  color: #5d6878;
  font-size: 13px;
  font-weight: 800;
}

.news-list a:hover,
.news-list a:focus-visible {
  color: var(--green);
}

.site-footer {
  background: linear-gradient(180deg, #00633d, #00482f);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(520px, 1.8fr) minmax(260px, 0.7fr);
  gap: 44px;
  width: min(100% - 112px, 1400px);
  margin: 0 auto;
  padding: 38px 0 28px;
}

.brand-invert {
  min-width: 0;
}

.brand-invert .brand-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 13px;
  font-weight: 950;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav div,
.newsletter-form {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-nav h2,
.newsletter-form h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.newsletter-form p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.newsletter-form label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px;
  gap: 8px;
}

.newsletter-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}

.newsletter-form button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: #007a4b;
  font-size: 14px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: min(100% - 112px, 1400px);
  margin: 0 auto;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0 auto 0 0;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.content-document {
  min-height: 100vh;
  background: var(--page);
}

.compact-header {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.archive-shell,
.reader-shell,
.video-detail-shell {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 54px 0 76px;
}

.archive-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.archive-heading h1,
.article-reader h1,
.video-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
}

.archive-heading p:not(.content-eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.segment-control {
  display: inline-grid;
  grid-auto-flow: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.segment-control button {
  min-width: 86px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #4b5870;
  background: #fff;
  font-size: 14px;
  font-weight: 850;
}

.segment-control button:last-child {
  border-right: 0;
}

.segment-control button.active {
  color: #fff;
  background: var(--green);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 340px);
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.search-field svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.archive-count {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.content-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
}

.content-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 15px;
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.content-card:hover,
.content-card:focus-visible {
  border-color: rgba(0, 95, 61, 0.28);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.content-card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 98px;
  border-radius: 6px;
  background: #dbe6f1;
}

.content-card-thumb::before,
.content-card-thumb::after,
.thumb::before,
.thumb::after {
  position: absolute;
  content: "";
}

.content-card-image-thumb {
  background:
    linear-gradient(135deg, rgba(0, 95, 61, 0.08), rgba(18, 61, 115, 0.08)),
    #f3f6fb;
}

.content-card-video .content-card-thumb::after,
.video-item .thumb::after {
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%);
}

.content-card-video .content-card-thumb::before,
.video-item .thumb::before {
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  transform: translate(-32%, -50%);
}

.content-card-video .content-card-image-thumb::before,
.content-card-video .content-card-image-thumb::after,
.video-item .image-thumb::before,
.video-item .image-thumb::after {
  display: none;
}

.content-card-body {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.content-card-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.content-card-title {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.45;
}

.content-card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: #4e5a70;
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-empty {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--muted);
}

.search-page-shell {
  max-width: 960px;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 30px;
}

.search-page-form label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
}

.search-page-form label:focus-within {
  border-color: rgba(0, 95, 61, 0.48);
  box-shadow: 0 0 0 3px rgba(0, 95, 61, 0.08);
}

.search-page-form [data-lucide] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--muted);
}

.search-page-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.search-page-form button {
  min-width: 92px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.search-page-form button:hover,
.search-page-form button:focus-visible {
  background: var(--green-deep);
}

.site-search-results {
  border-top: 1px solid var(--line);
}

.site-search-result {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  gap: 18px;
  align-items: center;
  min-height: 122px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition:
    background-color 0.2s ease,
    padding 0.2s ease;
}

.site-search-result:hover,
.site-search-result:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  background: #fff;
}

.site-search-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  color: var(--green);
  background: var(--green-soft);
}

.site-search-result-icon [data-lucide] {
  width: 21px;
  height: 21px;
}

.site-search-result-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.site-search-result-meta {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.site-search-result-title {
  color: var(--ink);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.4;
}

.site-search-result-excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-search-result > [data-lucide] {
  width: 19px;
  height: 19px;
  color: var(--green);
  transition: transform 0.2s ease;
}

.site-search-result:hover > [data-lucide],
.site-search-result:focus-visible > [data-lucide] {
  transform: translateX(3px);
}

.search-page-empty {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.back-link::before {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.article-reader {
  max-width: 840px;
}

.reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 16px 0 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.reader-meta a {
  color: var(--green);
}

.article-body {
  color: #1f2937;
  font-size: 18px;
  line-height: 2;
}

.article-body p {
  margin: 0 0 1.05em;
}

.article-image {
  margin: 30px 0;
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #eef2f7;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.about-body {
  margin-top: 30px;
}

.about-reader {
  max-width: 920px;
}

.report-reader {
  max-width: 920px;
}

.work-reader {
  max-width: 1120px;
}

.contact-reader {
  max-width: 920px;
}

.about-lead {
  margin: 16px 0 0;
  color: #334155;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.work-page-lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: #334155;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.work-anchor-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 20px;
}

.work-anchor-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(0, 95, 61, 0.22);
  border-radius: var(--radius);
  color: var(--green);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.work-anchor-list a:hover,
.work-anchor-list a:focus-visible {
  color: #fff;
  background: var(--green);
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.participate-card,
.contact-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 178px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.participate-card {
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.participate-card:hover,
.participate-card:focus-visible {
  border-color: rgba(0, 95, 61, 0.34);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.participate-card-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  color: var(--green);
  background: var(--green-soft);
}

.participate-card-icon [data-lucide] {
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
}

.participate-card-title {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.25;
}

.participate-card-detail {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.participate-card-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 19px;
  height: 19px;
  color: var(--green);
  transition: transform 0.2s ease;
}

.participate-card:hover .participate-card-arrow,
.participate-card:focus-visible .participate-card-arrow {
  transform: translate(2px, -2px);
}

.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card h2 {
  margin: 0;
  font-size: 24px;
}

.contact-email {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: var(--green);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.news-archive-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 24px;
  gap: 24px;
  align-items: center;
  min-height: 138px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.news-archive-item:hover,
.news-archive-item:focus-within {
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.news-archive-item > time {
  align-self: start;
  padding-top: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.news-archive-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.news-archive-type {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.news-archive-copy a {
  width: fit-content;
  max-width: 100%;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.4;
}

.news-archive-copy a:hover,
.news-archive-copy a:focus-visible {
  color: var(--green);
}

.news-archive-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.news-archive-item > [data-lucide] {
  width: 19px;
  height: 19px;
  color: var(--green);
  transition: transform 0.2s ease;
}

.news-archive-item:hover > [data-lucide],
.news-archive-item:focus-within > [data-lucide] {
  transform: translate(2px, -2px);
}

.news-archive-empty {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

@media (max-width: 640px) {
  .news-archive .segment-control button {
    padding: 0 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .news-archive-item {
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 12px;
    min-height: 0;
    padding: 20px 4px;
  }

  .news-archive-item > time,
  .news-archive-copy {
    grid-column: 1;
  }

  .news-archive-item > time {
    padding-top: 0;
  }

  .news-archive-item > [data-lucide] {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .news-archive-copy a {
    font-size: 18px;
  }
}

.donate-page-shell {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 54px 0 76px;
}

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

.donate-page-copy {
  min-width: 0;
  max-width: 660px;
}

.donate-page-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0;
}

.donate-page-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: #384354;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

.donate-purpose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.donate-purpose-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 850;
}

.donate-online-button {
  gap: 9px;
  margin-top: 28px;
}

.donate-online-button [data-lucide] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.donate-page-qr {
  justify-self: end;
  width: 340px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(0, 95, 61, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
}

.donate-page-qr img {
  display: block;
  width: 294px;
  height: 294px;
  object-fit: contain;
}

.donate-page-qr-link {
  display: block;
  border-radius: 6px;
}

.donate-page-qr-link:focus-visible {
  outline: 3px solid rgba(0, 95, 61, 0.28);
  outline-offset: 4px;
}

.donate-page-qr figcaption {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  text-align: center;
}

.donate-page-qr strong {
  color: var(--green);
  font-size: 17px;
}

.donate-page-qr span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 32px;
}

.about-highlights strong {
  font-size: 18px;
}

.reader-section {
  scroll-margin-top: 96px;
}

.reader-section + .reader-section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.reader-section h2 {
  margin: 0 0 16px;
  font-size: 25px;
}

.reader-section blockquote {
  margin: 0 0 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #13243a;
  background:
    linear-gradient(135deg, rgba(0, 95, 61, 0.08), rgba(183, 121, 31, 0.09)),
    #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.7;
}

.report-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 2px;
  padding: 0 16px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.report-download [data-lucide] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.report-download-panel {
  margin-top: 28px;
}

.report-download:hover,
.report-download:focus-visible {
  color: #fff;
  background: var(--green-deep);
}

.video-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: start;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #0e1726;
  box-shadow: 0 16px 34px rgba(14, 23, 38, 0.16);
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-copy {
  padding-top: 4px;
}

.video-copy .primary-button {
  margin-top: 6px;
}

.valley {
  background:
    linear-gradient(160deg, rgba(7, 20, 36, 0.1), rgba(7, 20, 36, 0.56)),
    linear-gradient(135deg, #dce9ee 0 36%, #9aa787 37% 59%, #354c5c 60%);
}

.paper {
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(45, 53, 68, 0.12) 8px 9px),
    linear-gradient(135deg, #ffffff, #d9d1c6);
}

.bookopen {
  background:
    linear-gradient(160deg, rgba(34, 24, 18, 0.04), rgba(34, 24, 18, 0.42)),
    linear-gradient(135deg, #efe0c5, #7d6349);
}

.mountains {
  background:
    linear-gradient(160deg, rgba(12, 23, 42, 0.15), rgba(12, 23, 42, 0.55)),
    linear-gradient(135deg, #d9e6ef 0 38%, #8499ab 39% 61%, #40566d 62%);
}

.document,
.writing {
  background:
    repeating-linear-gradient(8deg, rgba(55, 63, 76, 0.16) 0 2px, transparent 2px 8px),
    linear-gradient(140deg, #e9e2d5, #b8ab94);
}

.candle {
  background:
    radial-gradient(circle at 58% 38%, #fff7a3 0 9%, #f6a632 10% 18%, transparent 19%),
    linear-gradient(135deg, rgba(21, 21, 15, 0.18), rgba(24, 28, 25, 0.7)),
    linear-gradient(135deg, #ffd573, #465a3b);
}

.boxes,
.books {
  background:
    linear-gradient(140deg, rgba(20, 26, 36, 0.03), rgba(20, 26, 36, 0.42)),
    linear-gradient(135deg, #ddc6a2, #5d4333);
}

.video-dark,
.video-room,
.video-light {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.65)),
    linear-gradient(135deg, #9fb0a8, #26313a);
}

@media (max-width: 1280px) {
  .site-header {
    gap: 22px;
    padding: 0 30px;
  }

  .brand {
    min-width: 210px;
  }

  .brand-logo {
    height: 42px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav > a,
  .nav-link {
    font-size: 14px;
  }

  .language-switcher {
    gap: 8px;
    font-size: 13px;
  }

  .hero-image,
  .hero-shade,
  .hero-content,
  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 64px, 1260px);
  }

  .hero h1 {
    font-size: 48px;
  }

  .work-grid {
    gap: 18px;
  }
}

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

  .desktop-nav > a,
  .nav-link {
    font-size: 13px;
  }

  .brand {
    min-width: 188px;
  }

  .language-switcher a,
  .language-switcher span {
    display: none;
  }

  .home-resource-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 72px;
    padding: 0 22px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 39px;
  }

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

  .mobile-actions {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    z-index: 70;
    display: grid;
    gap: 6px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu details {
    border-bottom: 1px solid #eef1f4;
  }

  .mobile-menu details:last-of-type {
    border-bottom: 0;
  }

  .mobile-menu summary,
  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 6px;
    color: #162033;
    font-size: 15px;
    font-weight: 850;
  }

  .mobile-menu summary {
    list-style: none;
  }

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

  .mobile-menu summary::after {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-2px);
  }

  .mobile-menu details[open] summary::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .mobile-menu details a {
    margin-left: 8px;
    color: #3e4a5b;
    font-size: 14px;
    font-weight: 750;
  }

  .header-search {
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    width: auto;
  }

  .hero {
    min-height: 386px;
    height: min(430px, calc(100vh - 138px));
  }

  .hero-image {
    object-position: right center;
  }

  .hero-shade {
    background: linear-gradient(90deg, #fff 0 32%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.16) 70%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 42px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    max-width: 470px;
    font-size: 16px;
  }

  .hero-image,
  .hero-shade,
  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 36px);
  }

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

  .work-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .update-item {
    grid-template-columns: 120px minmax(0, 1fr);
    height: 100px;
    min-height: 100px;
  }

  .thumb {
    width: 120px;
    min-height: 0;
  }

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

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-bottom p {
    width: 100%;
  }

  .archive-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

  .video-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 18px;
  }

  .brand-logo {
    height: 34px;
  }

  .mobile-actions {
    gap: 10px;
  }

  .hero {
    display: flex;
    min-height: 0;
    height: auto;
    padding: 18px 0 28px;
    flex-direction: column;
  }

  .hero-image {
    position: static;
    display: block;
    order: 0;
    width: calc(100% - 36px);
    height: auto;
    margin: 0 auto;
    object-position: center;
    transform: none;
    z-index: auto;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    order: 1;
    min-height: 0;
    padding: 22px 0 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-line {
    margin: 18px 0;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .home-resource-section .section-heading.compact {
    align-items: flex-start;
    text-align: left;
  }

  .work-section {
    padding-top: 24px;
  }

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

  .work-card {
    --work-card-image-height: 118px;
    grid-template-rows: var(--work-card-image-height) minmax(104px, auto);
  }

  .work-card img {
    height: var(--work-card-image-height);
  }

  .impact-strip,
  .about-highlights {
    grid-template-columns: 1fr;
  }

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

  .work-detail-card img {
    height: 150px;
    min-height: 150px;
  }

  .work-detail-content {
    padding: 18px 18px 20px;
  }

  .work-detail-content h2,
  .work-detail-content h3,
  .work-future-panel h2,
  .work-future-panel h3 {
    font-size: 19px;
  }

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

  .work-future-panel {
    padding: 20px;
  }

  .participation-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .participate-card,
  .contact-card {
    min-height: 160px;
    padding: 22px;
  }

  .contact-email {
    font-size: 20px;
  }

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

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

  .archive-shell,
  .reader-shell,
  .video-detail-shell {
    width: min(100% - 32px, 1120px);
    padding: 32px 0 54px;
  }

  .archive-heading h1,
  .article-reader h1,
  .video-copy h1 {
    font-size: 31px;
  }

  .segment-control {
    width: 100%;
  }

  .segment-control button {
    min-width: 0;
  }

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

  .search-page-form {
    gap: 8px;
    margin-bottom: 24px;
  }

  .search-page-form label {
    min-height: 46px;
    padding: 0 12px;
  }

  .search-page-form input {
    font-size: 15px;
  }

  .search-page-form button {
    min-width: 76px;
    min-height: 46px;
    padding: 0 14px;
  }

  .site-search-result {
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 0;
    padding: 18px 2px;
  }

  .site-search-result:hover,
  .site-search-result:focus-visible {
    padding-right: 4px;
    padding-left: 4px;
  }

  .site-search-result-icon {
    width: 38px;
    height: 38px;
  }

  .site-search-result-title {
    font-size: 17px;
  }

  .site-search-result-excerpt {
    font-size: 13px;
  }

  .article-body {
    font-size: 17px;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    height: 30px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .header-search {
    flex-direction: column;
    align-items: stretch;
  }

  .header-search button {
    width: 100%;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

  .hero-content {
    width: calc(100% - 36px);
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .update-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0;
    height: 94px;
    min-height: 94px;
  }

  .thumb {
    width: 96px;
    min-height: 0;
  }

  .content-card {
    grid-template-columns: 94px minmax(0, 1fr);
    min-height: 112px;
    gap: 12px;
    padding: 12px;
  }

  .content-card-thumb {
    min-height: 84px;
  }

  .content-card-title {
    font-size: 15px;
  }
}

@media (max-width: 920px) {
  .donate-page-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .donate-page-qr {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .donate-page-shell {
    width: min(100% - 32px, 1120px);
    padding: 32px 0 54px;
  }

  .donate-page-copy h1 {
    font-size: 32px;
  }

  .donate-page-lead {
    font-size: 15px;
  }

  .donate-online-button {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .donate-page-qr {
    justify-self: center;
    width: min(100%, 320px);
    padding: 18px;
  }

  .donate-page-qr img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
