:root {
  --bg: #f6fbf7;
  --surface: #ffffff;
  --ink: #1e2521;
  --muted: #64736a;
  --line: #dce9df;
  --green: #08ad58;
  --green-dark: #164b35;
  --orange: #d9232e;
  --orange-soft: #fdebed;
  --leaf: #dff5e9;
  --shadow: 0 24px 70px rgba(22, 75, 53, 0.16);
  --radius: 8px;
  --radius-lg: 28px;
  --container: 1180px;
}

#intro-strip {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Onest", Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.top-bar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.top-bar-inner {
  display: none;
  min-height: 38px;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: 62px;
  max-width: 205px;
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(31, 107, 75, 0.22);
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}

.nav-list,
.submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-list > li {
  position: relative;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 11px;
  white-space: nowrap;
}

.has-submenu > a {
  gap: 8px;
  padding-right: 13px;
}

.has-submenu > a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  width: auto;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  z-index: 30;
  width: max-content;
  min-width: 250px;
  padding: 12px 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-list > li:nth-last-child(2) .submenu {
  right: 0;
  left: auto;
}

.submenu a {
  display: flex;
  min-height: 38px;
  padding: 0 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.submenu a::after {
  display: none;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--orange);
  background: var(--orange-soft);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.header-cta,
.btn-primary {
  background: var(--orange);
  color: #fff;
}

.header-cta {
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-primary:hover,
.header-cta:hover {
  background: #b91d27;
}

.btn-ghost:hover {
  color: var(--green-dark);
  background: #fff;
  border-color: #fff;
}

.btn-ghost {
  color: var(--green-dark);
  border-color: rgba(31, 107, 75, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-ghost:hover {
  color: var(--green-dark);
  background: #fff;
  border-color: #fff;
}

.btn-dark {
  background: var(--orange);
  color: #fff;
  width: 100%;
}

.btn-dark:hover {
  background: #b91d27;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--green);
  border-radius: 50%;
  padding: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  color: #fff;
  background: var(--green-dark);
}

.hero::before {
  display: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: inherit;
  align-items: center;
  padding: 128px 80px 116px;
  opacity: 0;
  visibility: hidden;
  background:
    linear-gradient(180deg, rgba(12, 32, 24, 0.44), rgba(12, 32, 24, 0.7)),
    linear-gradient(90deg, rgba(12, 32, 24, 0.54), rgba(12, 32, 24, 0.2)),
    var(--hero-image) center / cover no-repeat;
  transition: opacity 800ms ease, visibility 800ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-content {
  display: grid;
  justify-items: center;
  max-width: 920px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  max-width: 760px;
}

.hero-content h1 {
  max-width: 880px;
  color: #fff;
  font-size: 68px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 600;
}

h4,
h5,
h6 {
  font-weight: 600;
}

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

.section-copy p{
      color: var(--green-dark);
          font-size: 17px;
    line-height: 1.45;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.hero-control:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-control span {
  display: block;
  margin-top: -3px;
  font-size: 42px;
  line-height: 1;
}

.hero-control-prev {
  left: 28px;
}

.hero-control-next {
  right: 28px;
}

.progress-block {
  margin-bottom: 28px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.progress-track span {
  display: block;
  height: 100%;
  background: var(--orange);
}

.hero-media {
  position: relative;
  min-height: 570px;
}

.hero-main-img {
  height: 530px;
  object-fit: cover;
  border-radius: 44px 44px 8px 44px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: -28px;
  bottom: 34px;
  width: 190px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  margin-top: 14px;
}

.hero-card small {
  color: var(--muted);
  font-weight: 700;
}

.icon-circle,
.mini-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
}

.icon-circle {
  width: 48px;
  height: 48px;
}

.icon-circle svg,
.mini-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-mini {
  position: absolute;
  right: -8px;
  bottom: -18px;
  width: 210px;
  padding: 10px;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-mini img {
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
}

.donation-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.donation-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.donation-grid .btn {
  min-width: 170px;
}

.donation-grid .work_introd {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.donation-grid .work_introd p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.donation-grid .work_introd span {
  color: var(--orange);
}

.target-card-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: 20px;
}

.target-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 26px 24px 22px;
  text-align: center;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.target-card:nth-child(3n) {
  border-right: 0;
}

.target-card:nth-child(n + 4) {
  border-bottom: 0;
}

.target-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--orange);
  background:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(180deg, rgba(217, 35, 46, 0.2), rgba(22, 75, 53, 0.08)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 6px 0 rgba(22, 75, 53, 0.06);
}

.target-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.target-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.donation-grid .target-card p {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.target-grid-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.target-grid-cta .btn {
  color: var(--orange);
  background: transparent;
  border-color: var(--orange);
}

.target-grid-cta .btn:hover {
  color: #fff;
  background: var(--orange);
}

.donation-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.2;
}

.donation-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.donation-progress .progress-track {
  background: #dce9df;
}

.intro-strip {
  padding: 72px 0 26px;
  background: var(--bg);
  color: var(--ink);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strip-grid article {
  display: grid;
  background: #fff;
  box-shadow: 0 18px 50px rgba(22, 75, 53, 0.08);
}

.strip-grid img {
  height: 230px;
  object-fit: cover;
}

.strip-grid div {
  padding: 24px;
}

.strip-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

/* Spacing overrides for the block Layout tab. Compound with .section so they
   beat the padding shorthand above at every breakpoint. */
.section.pt-0 {
  padding-top: 0;
}

.section.pb-0 {
  padding-bottom: 0;
}

.split,
.impact-grid,
.testimonial-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 600px;
}

.image-stack img {
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-large {
  height: 540px;
  border-radius: 8px 54px 54px 54px;
}

.stack-small {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 48%;
  height: 260px;
  border: 10px solid var(--bg);
  border-radius: 42px 8px 42px 42px;
}

.section-copy .btn {
  margin-top: 26px;
}

.about .section-copy h2 span {
  color: var(--orange);
}

.about .section-copy .btn {
  color: var(--orange);
  background: transparent;
  border-color: var(--orange);
}

.about .section-copy .btn:hover {
  color: #fff;
  background: var(--orange);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.mini-icon {
  width: 58px;
  height: 58px;
}

.feature-list p,
.mission-list p,
.program-card p,
.news-card p {
  color: var(--muted);
  margin: 8px 0 0;
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 46px;
  text-align: center;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(220, 233, 223, 0.96);
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(22, 75, 53, 0.08);
}

.mission-band {
  background:
    linear-gradient(135deg, rgba(18, 53, 39, 0.98), rgba(22, 75, 53, 0.96)),
    var(--green-dark);
  color: #fff;
}

.mission-band .eyebrow,
.cta-section .eyebrow {
  color: #d9ffea;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}

.mission-copy h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
}

.mission-copy > p {
  margin: 22px 0 14px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.45;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-weight: 800;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.mission-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.mission-list {
  display: grid;
  gap: 16px;
}

.mission-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mission-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.mission-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.mission-item:hover .mission-icon {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(8, 173, 88, 0.28);
}

.mission-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mission-item h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.mission-list p {
  color: rgba(255, 255, 255, 0.72);
}

.programs {
  background: #fff;
}

.programs-heading {
  position: relative;
  max-width: none;
  margin: 0 auto 54px;
  padding-bottom: 28px;
  text-align: center;
}

.programs-heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8e8e8;
}

.programs-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 3px;
  background: var(--orange);
  transform: translateX(-50%);
}

.programs-heading h2 {
  color: var(--green-dark);
  font-size: 34px;
}

.programs-heading h2 span {
  position: relative;
}

.programs-carousel {
  overflow: hidden;
}

.programs-track {
  display: flex;
  gap: 24px;
  transform: translateX(0);
  transition: transform 420ms ease;
  will-change: transform;
}

.program-card {
  position: relative;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: 0;
  background: #123527;
  color: #fff;
  text-decoration: none;
}

.program-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 320ms ease, transform 420ms ease;
}

.program-card:hover img,
.program-card:focus-visible img {
  opacity: 0.86;
  transform: scale(1.04);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 36, 28, 0.05), rgba(13, 36, 28, 0.84));
}

.program-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.program-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card p {
  color: rgba(255, 255, 255, 0.78);
}

.programs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.programs-footer .carousel-controls {
  margin-top: 0;
}

.programs-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 24px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.programs-view-all:hover,
.programs-view-all:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.programs-view-all span {
  transition: transform 260ms ease;
}

.programs-view-all:hover span,
.programs-view-all:focus-visible span {
  transform: translateX(4px);
}

.programs-empty-cta {
  margin-top: 24px;
  text-align: center;
}

.impact {
  background: var(--bg);
}

.impact-copy h2 {
  color: var(--green-dark);
  font-size: clamp(32px, 4vw, 48px);
}

.impact-copy > p {
  margin-top: 18px;
  max-width: 560px;
}

.impact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  border: 2px solid var(--green);
  color: var(--green-dark);
  font-weight: 800;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.impact-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

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

.check-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.check-list li:hover {
  border-color: rgba(8, 173, 88, 0.32);
  box-shadow: 0 10px 28px rgba(22, 75, 53, 0.08);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-40%) rotate(-45deg);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(22, 75, 53, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 173, 88, 0.32);
  box-shadow: 0 18px 46px rgba(22, 75, 53, 0.12);
}

.stat-card.is-featured {
  grid-column: 1 / -1;
  background: var(--green);
  color: #fff;
  border-color: transparent;
}

.stat-card.is-featured:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(8, 173, 88, 0.28);
}

.stat-card strong {
  display: block;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
  color: var(--green-dark);
}

.stat-card.is-featured strong {
  color: #fff;
}

.stat-card span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.stat-card.is-featured span {
  color: rgba(255, 255, 255, 0.74);
}

.gallery {
  overflow: hidden;
  background: #fff;
}

.gallery-carousel {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content;
  transform: translateX(0);
  transition: transform 850ms ease;
  will-change: transform;
}

.gallery-slide {
  position: relative;
  flex: 0 0 20vw;
  min-width: 20vw;
  height: 312px;
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.gallery-slide figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: auto;
  cursor: pointer;
}

.gallery-slide figcaption > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 320ms ease 120ms, transform 320ms ease 120ms;
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

.gallery-slide:hover figcaption,
.gallery-slide:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-slide:hover figcaption > *,
.gallery-slide:focus-within figcaption > * {
  opacity: 1;
  transform: translateY(0);
}

.gallery-zoom {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.gallery-slide:hover .gallery-zoom,
.gallery-slide:focus-within .gallery-zoom {
  background: var(--orange);
  color: #fff;
}

.gallery-slide {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(10, 20, 15, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-dialog {
  width: min(100%, 980px);
  color: #fff;
  text-align: center;
}

.lightbox-dialog img {
  max-height: 76vh;
  width: 100%;
  object-fit: contain;
  background: #111;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-dialog p {
  margin: 16px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mission-cta {
  padding: 30px 0;
  background: var(--orange);
  color: #fff;
}

.mission-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mission-cta h2 {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.mission-cta-btn {
  min-width: 296px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 260ms ease, color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.mission-cta-btn:hover {
  background: #fff;
  color: var(--orange);
}

.upcoming-events {
  padding-top: 88px;
  padding-bottom: 88px;
  background: #fff;
  border-top: 1px solid #e8e8e8;
}

.events-heading {
  position: relative;
  margin-bottom: 54px;
  padding-bottom: 28px;
  text-align: center;
}

.events-heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8e8e8;
}

.events-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 3px;
  background: var(--orange);
  transform: translateX(-50%);
}

.events-heading h2 {
  position: relative;
  display: inline-block;
  color: var(--green-dark);
  font-size: 34px;
  font-weight: 700;
}

.events-heading h2 span {
  position: relative;
}

.events-carousel {
  overflow: hidden;
}

.events-track {
  display: flex;
  gap: 24px;
  transform: translateX(0);
  transition: transform 420ms ease;
  will-change: transform;
}

.event-card {
  flex: 0 0 calc(50% - 12px);
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.event-card-image {
  position: relative;
  flex: 0 0 50%;
  min-height: 240px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  display: grid;
  text-align: center;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(22, 75, 53, 0.14);
}

.event-date-badge strong,
.event-date-badge span {
  display: grid;
  place-items: center;
  min-height: 34px;
  font-size: 15px;
  font-weight: 800;
}

.event-date-badge strong {
  background: var(--orange);
  color: #fff;
}

.event-date-badge span {
  background: #fff;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
}

.event-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
}

.event-card-body h3 {
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.event-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.event-meta li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-meta svg {
  width: 16px;
  height: 16px;
  fill: var(--orange);
  flex-shrink: 0;
}

.event-card-body p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.event-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 22px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.event-read-more:hover {
  background: var(--orange);
  color: #fff;
}

.events-controls,
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.events-controls button,
.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 260ms ease, color 260ms ease, background-color 260ms ease;
}

.events-controls button:hover,
.carousel-controls button:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--leaf);
}

.events-controls button:disabled,
.carousel-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.testimonials {
  background: #fff;
}

.testimonial-card {
  position: relative;
  padding: 36px;
}

.stars {
  color: var(--orange);
  font-size: 20px;
  letter-spacing: 0;
}

blockquote {
  margin: 18px 0 26px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
  font-weight: 500;
  font-size: 18px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person small {
  display: block;
  color: var(--muted);
}

.testimonial-controls {
  position: absolute;
  right: 26px;
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.news {
  background: #fff;
}

.news .section-heading {
  position: relative;
  max-width: none;
  margin-bottom: 64px;
  padding-bottom: 28px;
}

.news .section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8e8e8;
}

.news .section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 1px;
  background: var(--green);
  transform: translateX(-50%);
}

.news .eyebrow {
  display: none;
}

.news .section-heading h2 {
  font-size: 34px;
  color: var(--green-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: #fff;
  box-shadow: none;
  padding-bottom: 24px;
}

.news-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
}

.news-image img {
  height: 250px;
  object-fit: cover;
}

.news-content-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
}

.news-content-row time {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: var(--green);
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

.news-content-row time strong,
.news-content-row time span {
  display: block;
  font-size: 17px;
  font-weight: 600;
}

.news-content-row time span {
  margin-top: 6px;
}

.news-body {
  padding: 0;
}

.news-meta {
  margin: 9px 0 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.news-card h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}

.news-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.news-card a::after {
  content: ">";
  width: auto;
  height: auto;
  background: transparent;
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

.news-archive-hero .inner-banner-inner {
  max-width: 760px;
}

.news-archive-hero .eyebrow {
  color: #fff;
}

.news-archive {
  background: #fff;
}

.news-archive-top {
  margin-bottom: 42px;
}

.news-archive .section-heading {
  margin-bottom: 0;
  text-align: left;
}

.news-archive .section-heading::before {
  left: 0;
  right: auto;
  width: 100%;
}

.news-archive .section-heading::after {
  left: 0;
  transform: none;
}

.news-archive .eyebrow {
  display: block;
}

.news-archive .section-heading h2 {
  max-width: 680px;
}

.news-archive .section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.news-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 44px;
  align-items: start;
}

.news-archive-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 28px;
}

.news-archive-grid .news-card {
  border-bottom: 1px solid var(--line);
}

.news-archive-grid .news-image {
  background: var(--leaf);
}

.news-archive-grid .news-image img {
  transition: transform 240ms ease;
}

.news-archive-grid .news-card:hover .news-image img {
  transform: scale(1.04);
}

.news-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 20px;
}

.news-sidebar-panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.news-sidebar-panel h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 20px;
}

.news-sidebar-panel a:not(.btn) {
  display: block;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.news-sidebar-panel a:not(.btn):hover,
.news-sidebar-panel a:not(.btn):focus-visible {
  color: var(--green);
}

.news-contact-panel {
  border: 0;
  background: var(--green-dark);
  color: #fff;
}

.news-contact-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-contact-panel h2 {
  color: #fff;
}

.news-contact-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}

.archive-pagination a,
.archive-pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 800;
}

.archive-pagination span,
.archive-pagination a:hover,
.archive-pagination a:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.cta-section {
  padding: 96px 0;
  background: var(--green);
  color: #fff;
}

.cta-section p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(18, 53, 39, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #1e2521;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--ink);
  background: #f6fbf7;
  font-weight: 400;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a9890;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 173, 88, 0.12);
  background: #fff;
}

.contact-form textarea {
  height: 160px;
}

.contact-form input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 260ms ease;
}

.contact-form input[type="submit"]:hover {
  background: #b91d27;
}

/* Contact Form 7 nests its own wrapper and <form> inside .contact-form, so the
   grid that spaces the fields has to be re-declared on the form element. */
.contact-form form.wpcf7-form {
  display: grid;
  gap: 18px;
}

/* CF7 runs autop over the form template, which puts every field in a <p>.
   Inside .cta-section those paragraphs would inherit the section's white body
   colour and its 650px cap, so both are reset here. position is set on all of
   them so the spinner below can anchor to the one holding the submit button. */
.contact-form form.wpcf7-form > p {
  position: relative;
  max-width: none;
  margin: 0;
  color: inherit;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

/* The submit button fills the column, so the spinner CF7 injects after it
   would wrap onto a line of its own and shift the layout on every load. */
.contact-form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 16px;
  margin: 0;
  transform: translateY(-50%);
}

.contact-form .wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.contact-form .wpcf7-not-valid-tip {
  color: var(--orange);
  font-size: 13px;
  font-weight: 500;
}

/* Contact Form 7 renders an empty .wpcf7-response-output on every load and
   only hides it via its own "form.init" rule; if that submission ever leaves
   the form in a non-init state without a message (e.g. a failed AJAX request
   in a local dev environment with no mail transport), the box reappears
   empty. :empty covers that regardless of which state class is present. */
.contact-form .wpcf7-response-output:empty {
  display: none !important;
}

.contact-form .wpcf7-response-output:not(:empty) {
  margin: 0;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.contact-form form.wpcf7-form.sent .wpcf7-response-output {
  color: #146c37;
  background: #e9f9ef;
  border-color: #bfe8cc;
}

.contact-form form.wpcf7-form.failed .wpcf7-response-output,
.contact-form form.wpcf7-form.aborted .wpcf7-response-output {
  color: var(--orange);
  background: #fdeceb;
  border-color: rgba(217, 35, 46, 0.3);
}

.contact-form form.wpcf7-form.spam .wpcf7-response-output {
  color: #9a5b00;
  background: #fff6e5;
  border-color: rgba(154, 91, 0, 0.25);
}

.contact-form form.wpcf7-form.invalid .wpcf7-response-output,
.contact-form form.wpcf7-form.unaccepted .wpcf7-response-output,
.contact-form form.wpcf7-form.payment-required .wpcf7-response-output {
  color: #8a6100;
  background: #fff8e1;
  border-color: rgba(138, 97, 0, 0.25);
}

.sponsors {
  background: #fff;
}

.sponsors .section-heading {
  position: relative;
  max-width: none;
  margin-bottom: 62px;
  padding-bottom: 26px;
}

.sponsors .section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8e8e8;
}

.sponsors .section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 1px;
  background: var(--green);
  transform: translateX(-50%);
}

.sponsors .section-heading h2 {
  color: var(--ink);
  font-size: 34px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 34px;
}

.sponsor-logo {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid #ececec;
  background: #fff;
  color: #a8a8a8;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sponsor-logo span {
  display: block;
  color: inherit;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.72;
  filter: grayscale(1);
}

.sponsor-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 160ms ease, filter 160ms ease;
}

.sponsor-logo:hover,
.sponsor-logo.is-highlighted {
  border-color: rgba(8, 173, 88, 0.36);
  color: #8c8c8c;
  transform: translateY(-2px);
}

.sponsor-logo:hover img,
.sponsor-logo.is-highlighted img {
  opacity: 1;
  filter: grayscale(0);
}

.site-footer {
  position: relative;
  padding: 76px 0 28px;
  background:
    linear-gradient(135deg, rgba(18, 53, 39, 0.98), rgba(22, 75, 53, 0.96)),
    var(--green-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.footer-brand .brand-logo {
  height: 54px;
  max-width: 190px;
}

.site-footer p,
.site-footer small,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.site-footer h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--green);
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
  transition: color 160ms ease, padding-left 160ms ease;
}

.site-footer a:not(.brand):hover {
  color: #fff;
  padding-left: 6px;
}

.site-footer a:not(.brand)::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: 1px;
}

.site-footer .footer-grid > div:last-child p {
  margin-top: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.footer-bottom p {
  white-space: nowrap;
}

.footer-bottom a:not(.brand) {
  display: inline;
  margin-top: 0;
}

.footer-bottom a:not(.brand)::before {
  content: none;
}

/* Subpage Banner & Breadcrumb styling */
.inner-banner {
  position: relative;
  color: #fff;
  padding: 120px 0 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 75, 53, 0.8), rgba(12, 32, 24, 0.9));
  z-index: 1;
}

.inner-banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.inner-banner h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Partners page */
.partner-banner::before {
  background: linear-gradient(90deg, rgba(10, 48, 32, 0.86), rgba(10, 48, 32, 0.52));
}

/* Programmes page */
.programmes-banner::before { background: linear-gradient(90deg, rgba(10, 48, 32, .86), rgba(10, 48, 32, .48)); }
.reports-banner::before { background: linear-gradient(90deg, rgba(10, 48, 32, .86), rgba(10, 48, 32, .48)); }
.profile-banner::before { background: linear-gradient(90deg, rgba(10, 48, 32, .86), rgba(10, 48, 32, .48)); }
.profile-overview-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 7vw, 100px); align-items: center; }
.profile-image img { height: 510px; object-fit: cover; border-radius: 8px 50px 8px 8px; }
.profile-overview-grid p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.profile-overview-grid .btn { margin-top: 12px; }
.profile-principles { background: var(--green-dark); color: #fff; }
.profile-principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.profile-principles-grid article { min-height: 236px; padding: 40px; border-left: 1px solid rgba(255,255,255,.17); }
.profile-principles-grid article:last-child { border-right: 1px solid rgba(255,255,255,.17); }
.profile-principles-grid span { color: #80d9a5; font-weight: 900; font-size: 13px; }
.profile-principles-grid h3 { margin: 20px 0 10px; font-size: 24px; }
.profile-principles-grid p { margin: 0; color: rgba(255,255,255,.72); }
.profile-scope { background: var(--bg); }
.profile-scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.profile-scope-grid a { min-height: 130px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: background 180ms ease; }
.profile-scope-grid a:hover { background: var(--leaf); }
.profile-scope-grid strong { display: block; color: var(--green-dark); font-size: 17px; }
.profile-scope-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }
.profile-cta { padding: 70px 0; background: var(--orange-soft); }
.profile-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.profile-cta h2 { max-width: 650px; font-size: clamp(30px, 4vw, 46px); }
.profile-cta-inner > div:last-child { display: flex; gap: 12px; }
.reports-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .88fr); gap: clamp(36px, 8vw, 120px); align-items: end; }
.reports-intro-grid > p { margin: 0; color: var(--muted); font-size: 17px; }
.reports-feature { padding-bottom: 32px; background: var(--bg); }
.report-feature-card { display: grid; grid-template-columns: 132px minmax(0, 1fr) auto; gap: 34px; align-items: center; padding: 38px 44px; background: var(--green-dark); color: #fff; }
.report-file-mark { display: grid; width: 112px; height: 136px; place-items: center; border: 1px solid rgba(255,255,255,.45); color: #fff; font-size: 22px; font-weight: 900; letter-spacing: 1px; }
.report-feature-card h2 { font-size: clamp(28px, 3.5vw, 44px); }
.report-feature-card p:not(.eyebrow) { max-width: 640px; margin: 14px 0 0; color: rgba(255,255,255,.72); }
.report-feature-card .btn { min-width: 150px; }
.report-library { background: var(--bg); }
.annual-library { background: #fff; }
.report-section-heading { margin-bottom: 34px; }
.report-section-heading h2 { font-size: clamp(30px, 4vw, 46px); }
.report-section-heading p:not(.eyebrow) { margin: 12px 0 0; color: var(--muted); }
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.report-card { display: flex; min-height: 246px; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid var(--line); background: #fff; transition: transform 180ms ease, box-shadow 180ms ease; }
.annual-library .report-card { background: var(--bg); }
.report-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(22,75,53,.12); }
.report-card-top { display: flex; width: 100%; align-items: flex-start; justify-content: space-between; gap: 16px; color: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.report-card-top strong { color: var(--green-dark); font-size: 28px; line-height: 1; }
.report-card h3 { margin: 42px 0 20px; color: var(--green-dark); }
.report-card a { margin-top: auto; color: var(--orange); font-size: 14px; font-weight: 800; }
.report-card a span, .report-feature-card .btn span { margin-left: 6px; }
.programmes-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .88fr); gap: clamp(36px, 8vw, 120px); align-items: end; }
.programmes-intro-grid > p { margin: 0; color: var(--muted); font-size: 17px; }
.programmes-overview { padding-bottom: 112px; background: var(--bg); }
.programme-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.programme-card { min-height: 340px; padding: 34px 32px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.programme-card > span { color: var(--orange); font-size: 13px; font-weight: 900; }
.programme-card h3 { margin: 18px 0 10px; color: var(--green-dark); font-size: 25px; }
.programme-card p { margin: 0; color: var(--muted); font-size: 14px; }
.programme-card ul { margin: 20px 0 0; padding: 0; list-style: none; color: var(--green-dark); font-size: 14px; font-weight: 600; }
.programme-card li { position: relative; margin-top: 8px; padding-left: 15px; }
.programme-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.programme-card-feature { grid-column: span 3; min-height: 270px; background: var(--green-dark); color: #fff; }
.programme-card-feature h3 { color: #fff; }
.programme-card-feature p { max-width: 660px; color: rgba(255,255,255,.72); }
.programme-card-feature ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; color: #fff; }
.programme-card-feature li::before { background: #80d9a5; }
.current-programmes { background: var(--bg); }
.current-programme-card { display: flex; flex-direction: column; }
.current-programme-card .programme-archive-card-body > p { margin-bottom: 18px; }
.current-programme-card .programme-card-activities { margin-top: auto; margin-bottom: 0; }
.programme-projects { background: #fff; }
.programme-project-card .programme-archive-card-body > p { margin-bottom: 18px; }
.programme-card-activities { width: 100%; margin-bottom: 24px; padding-top: 17px; border-top: 1px solid var(--line); }
.programme-card-activities h3 { color: var(--green-dark); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.programme-card-activities ul { margin: 10px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.programme-card-activities li { position: relative; margin-top: 7px; padding-left: 14px; }
.programme-card-activities li::before { content: ""; position: absolute; left: 0; top: .58em; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.programme-focus { background: #fff; }
.programme-focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.programme-focus-grid article { overflow: hidden; background: var(--bg); }
.programme-focus-grid img { height: 220px; object-fit: cover; }
.programme-focus-grid article > div { padding: 25px; }
.programme-focus-grid h3 { color: var(--green-dark); }
.programme-focus-grid p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.programmes-cta { padding: 76px 0; background: var(--orange-soft); }
.programmes-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.programmes-cta h2 { font-size: clamp(30px, 4vw, 48px); }
.programmes-cta p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); }

/* Simple single programme page */
.single-rb_program .site-header,
.post-type-archive-rb_program .site-header { background: var(--green-dark); }
.simple-programme-page { padding: 150px 0 96px; background: #fff; }
.simple-programme-header { max-width: 100%; margin-bottom: 40px; }
.simple-programme-header h1 { max-width: 100%; margin-top: 10px; color: var(--green-dark); font-size: clamp(38px, 5vw, 64px); line-height: 1.08; }
.simple-programme-image { width: 100%; height: clamp(320px, 48vw, 580px); object-fit: cover; }
.simple-programme-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(40px, 7vw, 90px); align-items: start; padding-top: 56px; }
.simple-programme-grid h2 { margin-bottom: 18px; color: var(--green-dark); font-size: 26px; }
.simple-programme-description { color: var(--muted); font-size: 18px; line-height: 1.8; }
.simple-programme-description > :last-child { margin-bottom: 0; }
.simple-programme-info { padding: 28px; border-top: 4px solid var(--orange); background: var(--bg); }
.simple-programme-info h2 { font-size: 22px; }
.simple-programme-info dl { margin: 0; }
.simple-programme-info dl > div { padding: 18px 0; border-top: 1px solid var(--line); }
.simple-programme-info dt { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.simple-programme-info dd { margin: 5px 0 0; color: var(--green-dark); font-weight: 800; }
.simple-related-programmes { padding: 82px 0 96px; background: var(--bg); }
.simple-related-header { margin-bottom: 32px; }
.simple-related-header h2 { margin-top: 8px; color: var(--green-dark); font-size: clamp(30px, 4vw, 44px); }
.simple-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.simple-related-card { overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.simple-related-card:hover,
.simple-related-card:focus-visible { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(22,75,53,.12); }
.simple-related-card img { width: 100%; height: 210px; object-fit: cover; }
.simple-related-card > div { padding: 24px; }
.simple-related-card h3 { color: var(--green-dark); font-size: 21px; }
.simple-related-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }

/* Programme archive */
.programme-archive-page { background: #fff; }
.programme-archive-header { padding: 154px 0 72px; background: var(--bg); }
.programme-archive-header .container { max-width: 820px; margin-left: max(16px, calc((100% - var(--container)) / 2)); }
.programme-archive-header h1 { margin-top: 10px; color: var(--green-dark); font-size: clamp(42px, 6vw, 70px); line-height: 1.05; }
.programme-archive-header p:last-child { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.programme-archive-content { padding: 84px 0 100px; }
.programme-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.programme-archive-card { min-width: 0; background: #fff; border: 1px solid var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.programme-archive-card:hover,
.programme-archive-card:focus-within { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(22,75,53,.12); }
.programme-archive-card > a { display: flex; height: 100%; flex-direction: column; }
.programme-archive-card img { width: 100%; height: 245px; object-fit: cover; }
.programme-archive-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 28px; }
.programme-archive-card-body > span { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.programme-archive-card h2 { margin-top: 12px; color: var(--green-dark); font-size: 24px; line-height: 1.25; }
.programme-archive-card p { margin: 12px 0 24px; color: var(--muted); font-size: 14px; }
.programme-archive-card strong { margin-top: auto; color: var(--orange); font-size: 14px; }
.programme-archive-card strong span { margin-left: 4px; }
.programme-archive-pagination { margin-top: 48px; }

.partner-intro {
  padding-bottom: 88px;
}

.partner-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 8vw, 128px);
  align-items: start;
}

.partner-intro-copy {
  padding-top: 8px;
  color: var(--muted);
  font-size: 17px;
}

.partner-intro-copy p { margin: 0 0 18px; }

.partner-pillars { background: var(--green-dark); color: #fff; }

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

.partner-pillar-grid article {
  min-height: 246px;
  padding: 44px 42px;
  border-left: 1px solid rgba(255, 255, 255, .17);
}

.partner-pillar-grid article:last-child { border-right: 1px solid rgba(255, 255, 255, .17); }
.partner-pillar-grid span { color: #80d9a5; font-size: 14px; font-weight: 800; }
.partner-pillar-grid h3 { margin: 22px 0 12px; font-size: 26px; }
.partner-pillar-grid p { margin: 0; color: rgba(255, 255, 255, .73); }

.partner-directory { background: #fff; }
.partner-directory-heading { max-width: 690px; margin-bottom: 46px; }
.partner-directory-heading .muted { margin: 18px 0 0; }

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

.partner-list-item {
  min-height: 126px;
  padding: 27px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 9px;
  transition: background-color 180ms ease;
}

.partner-list-item:hover { background: var(--leaf); }
.partner-list-item strong { color: var(--green-dark); font-size: 16px; }
.partner-list-item span { color: var(--muted); font-size: 14px; }

.partner-table-section { background: var(--bg); }
.partner-table-heading { max-width: 780px; margin-bottom: 38px; }
.partner-table-heading p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); }
.partner-data-table { min-width: 1060px; }
.partner-network-table { min-width: 760px; }
.partner-tab-list { display: flex; gap: 10px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.partner-tab { position: relative; padding: 14px 18px 17px; border: 0; background: transparent; color: var(--muted); font: inherit; font-weight: 800; cursor: pointer; }
.partner-tab::after { content: ""; position: absolute; right: 18px; bottom: -1px; left: 18px; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 180ms ease; }
.partner-tab:hover, .partner-tab:focus-visible, .partner-tab.is-active { color: var(--green-dark); }
.partner-tab.is-active::after { transform: scaleX(1); }
.partner-tab:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }
.partner-panel-intro { display: flex; align-items: baseline; justify-content: space-between; gap: 30px; margin-bottom: 22px; }
.partner-panel-intro h3 { color: var(--green-dark); font-size: 24px; }
.partner-panel-intro p { max-width: 640px; margin: 0; color: var(--muted); }
.partner-cta { padding: 84px 0; background: var(--orange-soft); }
.partner-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.partner-cta h2 { max-width: 700px; font-size: clamp(30px, 4vw, 48px); }
.partner-cta p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); }
.partner-cta .btn { flex: 0 0 auto; }

@media (max-width: 980px) {
	.simple-programme-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; }
	.simple-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.simple-related-card:last-child { display: none; }
	.programme-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .programmes-intro-grid { grid-template-columns: 1fr; gap: 22px; }
  .reports-intro-grid { grid-template-columns: 1fr; gap: 22px; }
  .profile-overview-grid { grid-template-columns: 1fr; }
  .profile-principles-grid { grid-template-columns: 1fr; }
  .profile-principles-grid article, .profile-principles-grid article:last-child { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .profile-scope-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-cta-inner { align-items: flex-start; flex-direction: column; }
  .report-feature-card { grid-template-columns: 112px minmax(0, 1fr); }
  .report-feature-card .btn { grid-column: 1 / -1; width: 100%; }
  .report-grid { grid-template-columns: 1fr; }
  .programme-grid { grid-template-columns: repeat(2, 1fr); }
  .programme-card-feature { grid-column: span 2; }
  .programme-focus-grid { grid-template-columns: 1fr; }
  .programme-focus-grid img { height: 260px; }
  .programmes-cta-inner { align-items: flex-start; flex-direction: column; }
  .partner-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .partner-pillar-grid { grid-template-columns: 1fr; }
  .partner-pillar-grid article,
  .partner-pillar-grid article:last-child { min-height: 0; padding: 32px 28px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .17); }
  .partner-pillar-grid article:last-child { border-bottom: 0; }
  .partner-cta-inner { align-items: flex-start; flex-direction: column; }
  .partner-panel-intro { display: block; }
  .partner-panel-intro p { margin-top: 8px; }
}

@media (max-width: 640px) {
	.simple-programme-page { padding: 106px 0 68px; }
	.simple-programme-header { margin-bottom: 28px; }
	.simple-programme-header h1 { font-size: 36px; overflow-wrap: anywhere; }
	.simple-programme-image { height: 260px; }
	.simple-programme-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 38px; }
	.simple-programme-description { font-size: 16px; }
	.simple-programme-info { padding: 24px; }
	.simple-related-programmes { padding: 62px 0 68px; }
	.simple-related-grid { grid-template-columns: 1fr; }
	.simple-related-card:last-child { display: block; }
	.simple-related-card img { height: 220px; }
	.programme-archive-header { padding: 118px 0 54px; }
	.programme-archive-header .container { max-width: none; margin-inline: auto; }
	.programme-archive-header h1 { font-size: 40px; }
	.programme-archive-header p:last-child { font-size: 16px; }
	.programme-archive-content { padding: 58px 0 72px; }
	.programme-archive-grid { grid-template-columns: 1fr; gap: 22px; }
	.programme-archive-card img { height: 230px; }
  .programmes-overview { padding-bottom: 64px; }
  .report-feature-card { display: flex; align-items: flex-start; flex-direction: column; padding: 28px 22px; }
  .profile-image img { height: 340px; }
  .profile-principles-grid article { padding: 30px 22px; }
  .profile-scope-grid { grid-template-columns: 1fr; }
  .profile-cta-inner > div:last-child { width: 100%; flex-direction: column; }
  .profile-cta .btn { width: 100%; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-card, .programme-card-feature { grid-column: span 1; min-height: 0; padding: 28px 22px; }
  .programme-card-feature ul { grid-template-columns: 1fr; }
  .programmes-cta { padding: 58px 0; }
  .programmes-cta .btn { width: 100%; }
  .partner-intro { padding-bottom: 60px; }
  .partner-list { grid-template-columns: 1fr; }
  .partner-list-item { min-height: 106px; padding: 24px 20px; }
  .partner-cta { padding: 60px 0; }
  .partner-cta .btn { width: 100%; }
  .partner-tab-list { gap: 0; }
  .partner-tab { flex: 1; padding: 12px 8px 15px; font-size: 13px; }
  .partner-tab::after { right: 8px; left: 8px; }
}

.breadcrumbs {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 150ms ease;
}

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

.breadcrumbs span {
  color: var(--orange);
}

/* Background page */
.background-intro {
  background: #fff;
}

.background-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: center;
}

.background-image {
  position: relative;
}

.background-image img {
  height: 510px;
  object-fit: cover;
  border-radius: 8px 54px 54px 8px;
  box-shadow: var(--shadow);
}

.background-year {
  position: absolute;
  right: -22px;
  bottom: 30px;
  display: grid;
  min-width: 154px;
  min-height: 122px;
  place-items: center;
  padding: 22px;
  color: #fff;
  text-align: center;
  background: var(--orange);
  box-shadow: 0 18px 48px rgba(217, 35, 46, 0.24);
}

.background-year strong,
.background-year span {
  display: block;
}

.background-year strong {
  font-size: 40px;
  line-height: 1;
}

.background-year span {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.background-intro .section-copy h2 span {
  color: var(--orange);
}

.background-principles {
  padding: 0 0 76px;
  background: #fff;
}

.background-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.background-card-grid article {
  padding: 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.background-card-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.background-card-grid h3 {
  color: var(--green-dark);
}

.background-card-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.background-focus {
  background: var(--bg);
  color: var(--ink);
}

.background-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.background-focus .eyebrow {
  color: var(--orange);
}

.background-focus h2 {
  color: var(--green-dark);
  font-size: clamp(32px, 4vw, 48px);
}

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

.background-focus li {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 44px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(22, 75, 53, 0.06);
}

.background-focus li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

/* Human resource page */
.hr-overview {
  background: #fff;
}

.hr-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hr-overview .section-copy h2 span {
  color: var(--orange);
}

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

.hr-stat-grid article {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(22, 75, 53, 0.07);
}

.hr-stat-grid strong {
  color: var(--orange);
  font-size: 46px;
  line-height: 1;
}

.hr-stat-grid span {
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 800;
}

.hr-section {
  background: #fff;
  padding-top: 0;
}

.hr-section-light {
  padding-top: 72px;
  background: var(--bg);
}

.hr-section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.hr-section-heading h2 {
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 44px);
}

.responsive-table {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(22, 75, 53, 0.08);
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 15px;
}

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

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

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

.data-table thead th {
  color: #fff;
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.data-table tbody tr:nth-child(even) {
  background: #fbfdfb;
}

.data-table tbody tr:hover {
  background: var(--orange-soft);
}

.table-total td {
  color: var(--green-dark);
  background: var(--leaf);
  font-weight: 900;
}

.table-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* Assets resource page */
.resource-section {
  background: #fff;
}

.resource-intro {
  max-width: 780px;
  margin-bottom: 30px;
}

.resource-intro h2 {
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 44px);
}

.resource-intro p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.resource-table {
  min-width: 920px;
}

/* For whom we work page */
.target-overview {
  background: #fff;
}

.target-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: start;
}

.target-overview .section-copy h2 span {
  color: var(--orange);
}

.target-overview-copy {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.target-overview-copy p {
  margin: 0;
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.65;
}

.target-groups {
  padding: 0 0 76px;
  background: #fff;
}

.target-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.target-group-grid article {
  min-height: 100%;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.target-group-grid article:hover {
  border-color: rgba(8, 173, 88, 0.32);
  box-shadow: 0 16px 42px rgba(22, 75, 53, 0.09);
  transform: translateY(-2px);
}

.target-group-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.target-group-grid h3 {
  color: var(--green-dark);
}

.target-group-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.selection-section {
  background: var(--bg);
}

.selection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 34px;
  align-items: start;
}

.selection-grid > div {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(22, 75, 53, 0.07);
}

.selection-grid h2 {
  color: var(--green-dark);
  font-size: clamp(28px, 3vw, 38px);
}

.styled-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: criteria;
}

.styled-list li {
  position: relative;
  min-height: 48px;
  padding: 12px 14px 12px 52px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
  font-weight: 700;
}

.styled-list li::before {
  counter-increment: criteria;
  content: counter(criteria, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.affiliation-section {
  background: #fff;
}

.affiliation-section .hr-section-heading p:last-child {
  margin-top: 12px;
}

/* Where we work page */
.location-section {
  background: #fff;
}

.location-section .resource-intro {
  max-width: none;
}

.table-block {
  margin-top: 42px;
}

.table-block .hr-section-heading {
  margin-bottom: 20px;
}

.table-block .hr-section-heading h2 {
  font-size: clamp(28px, 3vw, 38px);
}

/* Track record page */
.track-section {
  background: #fff;
}

.track-section .resource-intro {
  max-width: none;
}

.track-table {
  min-width: 1320px;
}

/* Contact page */
.contact-page {
  background: #fff;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: start;
}

.contact-details h2 {
  color: var(--green-dark);
  font-size: clamp(32px, 4vw, 48px);
}

.contact-card-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card-list article {
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card-list p {
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.55;
}

.contact-card-list a:hover {
  color: var(--orange);
}

.social-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon-row a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 50%;
  transition: background-color 180ms ease, transform 180ms ease;
}

.social-icon-row a:hover,
.social-icon-row a:focus-visible {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

.social-icon-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 3px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.map-link:hover {
  color: #fff;
  background: var(--orange);
}

.contact-page-form {
  box-shadow: 0 18px 50px rgba(22, 75, 53, 0.1);
}

.field-offices {
  background: var(--bg);
}

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

.office-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(22, 75, 53, 0.06);
}

.office-grid h3 {
  color: var(--green-dark);
  font-size: 20px;
}

.office-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.office-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--orange);
  font-size: 14px;
  line-height: 1.45;
}

.contact-map {
  width: 100%;
  background: var(--green-dark);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.08);
}

.footer-social {
  margin-top: 22px;
}

.site-footer .footer-social a {
  display: grid;
  margin-top: 0;
  color: var(--green-dark);
  background: #fff;
}

.site-footer .footer-social a::before {
  display: none;
}

.site-footer .footer-social a:hover {
  padding-left: 0;
  color: #fff;
  background: var(--orange);
}

.footer-contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.footer-contact-list svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: #fff;
  fill: currentColor;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.site-footer .footer-contact-list a {
  display: inline;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-contact-list a::before {
  display: none;
}

.site-footer .footer-contact-list a:hover {
  padding-left: 0;
  color: #fff;
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.78);
}

/* Timeline Styling */
.timeline-section {
  background: var(--surface);
  padding: 80px 0;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
  border-left: 2px solid var(--line);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 3px rgba(217, 35, 46, 0.16);
  z-index: 2;
  transition: transform 260ms ease, background-color 260ms ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 173, 88, 0.16);
}

.timeline-content {
  background: var(--bg);
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 75, 53, 0.06);
}

.timeline-year {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--green-dark);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* FAQ Accordion Styling */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: flex-start;
}

.accordion-container {
  display: grid;
  gap: 16px;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.accordion-item:hover,
.accordion-item.is-active {
  border-color: rgba(8, 173, 88, 0.38);
  box-shadow: 0 10px 24px rgba(22, 75, 53, 0.04);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 24px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  gap: 16px;
}

.accordion-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: inherit;
}

.accordion-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 260ms ease, color 260ms ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 260ms ease;
}

.accordion-icon::before {
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
}

.accordion-icon::after {
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
}

.accordion-item.is-active .accordion-icon {
  color: var(--orange);
  transform: rotate(90deg);
}

.accordion-item.is-active .accordion-icon::after {
  transform: rotate(90deg) scale(0);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 280ms cubic-bezier(0.4, 0, 0.2, 1), visibility 280ms ease;
}

.accordion-item.is-active .accordion-panel {
  visibility: visible;
}

.accordion-body {
  padding: 0 24px 20px 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.accordion-body p {
  margin: 0;
  color: inherit;
}

.governance-section {
  background: #fff;
}

.governance-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.governance-intro h2,
.governance-copy h2,
.governance-systems h2 {
  color: var(--green-dark);
}

.governance-intro p,
.governance-copy p,
.governance-systems p {
  color: var(--muted);
}

.governance-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.governance-facts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  background: var(--bg);
}

.governance-facts strong {
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
}

.governance-facts span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.governance-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.governance-card-grid article,
.governance-side-panel,
.governance-systems article {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.governance-card-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.governance-card-grid h3,
.governance-side-panel h3 {
  color: var(--green-dark);
}

.governance-card-grid p {
  color: var(--muted);
  font-size: 15px;
}

.governance-detail-section,
.governance-systems {
  background: var(--bg);
}

.governance-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.governance-copy {
  max-width: 780px;
}

.governance-side-panel {
  position: sticky;
  top: 24px;
  border-top: 4px solid var(--orange);
}

.governance-side-panel ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
}

.governance-side-panel li::marker {
  color: var(--green);
  font-weight: 900;
}

.governance-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mis-audit-intro {
  margin-top: 42px;
}

.mis-audit-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
}

.mis-audit-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

.mis-audit-table th {
  background: var(--green-dark);
  color: #fff;
  font-size: 14px;
}

.mis-audit-table td {
  color: var(--muted);
  font-size: 14px;
}

.mis-audit-table tbody tr:last-child td {
  border-bottom: 0;
}

.mis-bank-table-wrap {
  overflow-x: auto;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.mis-bank-table {
  width: 100%;
  border-collapse: collapse;
}

.mis-bank-table th,
.mis-bank-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.mis-bank-table th {
  width: 220px;
  background: var(--bg);
  color: var(--green-dark);
  font-weight: 800;
}

.mis-bank-table td {
  color: var(--muted);
}

.mis-bank-table tbody tr:last-child th,
.mis-bank-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .top-bar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 8px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 14px;
    color: #22342a;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .nav-list > li:last-child {
    border-bottom: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 12px;
    width: 100%;
  }

  .site-nav a::after {
    display: none;
  }

  .submenu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 0 0 10px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu a {
    min-height: 34px;
    padding: 0 12px;
    color: var(--muted);
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .split,
  .impact-grid,
  .testimonial-grid,
  .cta-grid,
  .mission-grid,
  .faq-grid,
  .background-intro-grid,
  .background-focus-grid,
  .hr-overview-grid,
  .target-overview-grid,
  .selection-grid,
  .contact-page-grid,
  .news-archive-layout,
  .governance-intro,
  .governance-detail-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .governance-card-grid,
  .governance-system-grid {
    grid-template-columns: 1fr;
  }

  .governance-side-panel {
    position: static;
  }

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

  .background-focus ul {
    grid-template-columns: 1fr;
  }

  .hr-section {
    padding-top: 0;
  }

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

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

  .mission-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .mission-icon {
    width: 48px;
    height: 48px;
  }

  .mission-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-card {
    flex: 0 0 100%;
    flex-direction: column;
  }

  .event-card-image {
    flex-basis: auto;
    min-height: 220px;
  }

  .hero {
    min-height: 590px;
    padding: 0;
  }

  .hero-slide {
    padding: 104px 72px 96px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-control {
    width: 42px;
    height: 42px;
  }

  .hero-control-prev {
    left: 18px;
  }

  .hero-control-next {
    right: 18px;
  }

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

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

  .target-card:nth-child(n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .target-card:nth-child(2n) {
    border-right: 0;
  }

  .target-card:nth-child(n + 5) {
    border-bottom: 0;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-main-img {
    height: 450px;
  }

  .strip-grid,
  .news-grid,
  .sponsor-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .news-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .image-stack {
    min-height: 500px;
  }

  .stack-large {
    height: 460px;
  }

  .stack-small {
    right: 0;
  }

  .program-card {
    flex: 0 0 calc(50% - 12px);
    min-height: 380px;
  }

  .gallery-slide {
    flex-basis: 33.333vw;
    min-width: 33.333vw;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    height: 48px;
    max-width: 150px;
  }

  .top-bar {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding: 74px 0;
  }

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

  .hero {
    min-height: 540px;
  }

  .hero-slide {
    padding: 86px 24px 92px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-control {
    top: auto;
    bottom: 28px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .hero-control-prev {
    left: 24px;
  }

  .hero-control-next {
    right: 24px;
  }

  .hero-control span {
    font-size: 34px;
  }

  .donation-strip {
    margin-top: 0;
  }

  .donation-grid {
    width: 100%;
    padding: 22px;
  }

  .donation-grid .work_introd p {
    font-size: 16px;
  }

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

  .target-card {
    padding: 26px 20px;
  }

  .target-card:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .target-card:last-child {
    border-bottom: 0;
  }

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

  .news-archive-grid,
  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-content-row {
    grid-template-columns: 68px 1fr;
    gap: 18px;
  }

  .news-content-row time {
    width: 68px;
    height: 68px;
  }

  .news-card h3 {
    font-size: 18px;
  }

  .news-meta,
  .news-card p {
    font-size: 14px;
  }

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

  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sponsor-logo {
    min-height: 96px;
  }

  .sponsor-logo img {
    max-height: 60px;
  }

  .hero-main-img {
    height: 360px;
    border-radius: 28px 28px 8px 28px;
  }

  .hero-card,
  .hero-mini {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .hero-mini img {
    height: 180px;
  }

  .image-stack {
    min-height: auto;
  }

  .stack-large {
    height: 360px;
    border-radius: 8px 34px 34px 34px;
  }

  .stack-small {
    position: static;
    width: 100%;
    height: 220px;
    margin-top: 14px;
    border: 0;
    border-radius: var(--radius);
  }

  .background-image img {
    height: 340px;
    border-radius: 8px 34px 34px 8px;
  }

  .background-year {
    right: 16px;
    bottom: 16px;
    min-width: 122px;
    min-height: 96px;
    padding: 16px;
  }

  .background-year strong {
    font-size: 32px;
  }

  .background-card-grid article {
    padding: 24px;
  }

  .hr-stat-grid {
    grid-template-columns: 1fr;
  }

  .data-table {
    min-width: 680px;
    font-size: 14px;
  }

  .data-table th,
  .data-table td {
    padding: 14px;
  }

  .target-group-grid {
    grid-template-columns: 1fr;
  }

  .target-overview-copy,
  .selection-grid > div {
    padding: 24px;
  }

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

  .feature-list > div {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .gallery-slide {
    flex-basis: 80vw;
    min-width: 80vw;
    height: 260px;
  }

  .mission-cta-inner {
    align-items: stretch;
    text-align: center;
  }

  .mission-cta-btn {
    min-width: 0;
    width: 100%;
  }

  .events-heading h2 {
    font-size: 28px;
  }

  .programs-heading h2 {
    font-size: 28px;
  }

  .program-card {
    flex: 0 0 100%;
    min-height: 360px;
  }

  .programs-footer {
    flex-direction: column;
    gap: 22px;
  }

  .programs-view-all {
    justify-content: center;
    width: 100%;
  }

  .event-card-body {
    padding: 24px 20px;
  }

  .event-card-body h3 {
    font-size: 18px;
  }

  .testimonial-card {
    padding: 26px;
  }

  .testimonial-controls {
    position: static;
    margin-top: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .timeline-container {
    padding-left: 24px;
  }

  .timeline-dot {
    left: -33px;
  }

  .timeline-content {
    padding: 16px 20px;
  }

  .mis-bank-table th,
  .mis-bank-table td {
    display: block;
    width: auto;
  }

  .mis-bank-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }
}

/* Single post */
.single-post-page {
  background: #fff;
}

.single-post-hero {
  padding: 150px 0 64px;
}

.single-post-hero::before {
  background: linear-gradient(90deg, rgba(10, 48, 32, 0.92), rgba(10, 48, 32, 0.62));
}

.single-post-hero-inner {
  max-width: 860px;
}

.single-post-hero h1 {
  max-width: 860px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.14;
}

.single-post-hero .eyebrow a:hover {
  color: #fff;
}

.single-post-subtitle {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.6;
}

.single-post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 20px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.single-post-hero-meta li + li {
  position: relative;
  padding-left: 19px;
}

.single-post-hero-meta li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.breadcrumbs i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.45);
}

.single-post-section {
  background: #fff;
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 52px;
  align-items: start;
}

.single-post-layout.is-fullwidth {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
  margin-inline: auto;
}

.single-post-article {
  min-width: 0;
}

.single-post-figure {
  margin: 0 0 34px;
}

.single-post-figure img {
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: cover;
}

.single-post-figure figcaption {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.single-post-article .entry-content {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.single-post-article .entry-content > * {
  margin-block: 0 24px;
}

.single-post-article .entry-content > :last-child {
  margin-bottom: 0;
}

.single-post-article .entry-content h2,
.single-post-article .entry-content h3,
.single-post-article .entry-content h4,
.single-post-article .entry-content h5,
.single-post-article .entry-content h6 {
  margin-top: 38px;
  margin-bottom: 14px;
  color: var(--green-dark);
  line-height: 1.24;
}

.single-post-article .entry-content h2 {
  font-size: clamp(26px, 2.6vw, 32px);
}

.single-post-article .entry-content h3 {
  font-size: 24px;
}

.single-post-article .entry-content h4 {
  font-size: 20px;
}

.single-post-article .entry-content a:not(.btn) {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

.single-post-article .entry-content a:not(.btn):hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.single-post-article .entry-content strong {
  color: var(--ink);
}

.single-post-article .entry-content ul,
.single-post-article .entry-content ol {
  padding-left: 22px;
}

.single-post-article .entry-content li {
  margin-bottom: 10px;
}

.single-post-article .entry-content li::marker {
  color: var(--green);
}

.single-post-article .entry-content blockquote {
  margin-inline: 0;
  padding: 26px 30px;
  border-left: 4px solid var(--green);
  background: var(--leaf);
  color: var(--green-dark);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
}

.single-post-article .entry-content blockquote > :last-child {
  margin-bottom: 0;
}

.single-post-article .entry-content blockquote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
}

.single-post-article .entry-content figure {
  margin-inline: 0;
}

.single-post-article .entry-content figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.single-post-article .entry-content pre {
  overflow-x: auto;
  padding: 22px;
  background: var(--green-dark);
  color: #eaf7ef;
  font-size: 14px;
  line-height: 1.6;
}

.single-post-article .entry-content code {
  padding: 2px 6px;
  background: var(--leaf);
  color: var(--green-dark);
  font-size: 0.92em;
}

.single-post-article .entry-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.single-post-article .entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.single-post-article .entry-content th,
.single-post-article .entry-content td {
  padding: 13px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.single-post-article .entry-content th {
  background: var(--bg);
  color: var(--green-dark);
  font-weight: 800;
}

.single-post-article .entry-content hr {
  height: 1px;
  border: 0;
  background: var(--line);
}

.single-post-article .page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 30px;
  color: var(--green-dark);
  font-weight: 800;
}

.single-post-article .page-links a {
  padding: 6px 13px;
  border: 1px solid var(--line);
}

.single-post-article .page-links a:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.single-post-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.single-post-tags,
.single-post-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.single-post-tags > span,
.single-post-share > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-post-tags a {
  padding: 7px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.single-post-tags a:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.single-post-share a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green-dark);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.single-post-share svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.single-post-share a:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.single-post-author {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 28px;
  border-top: 4px solid var(--orange);
  background: var(--bg);
}

.single-post-author img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.single-post-author span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-post-author h3 {
  margin: 7px 0 10px;
  color: var(--green-dark);
  font-size: 22px;
}

.single-post-author p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.single-post-author > div > a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.single-post-author > div > a:hover {
  color: var(--orange);
}

.single-post-edit {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
}

.single-post-edit a {
  color: var(--orange);
}

.single-post-section .post-navigation {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.single-post-section .post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.single-post-section .post-navigation .nav-next {
  text-align: right;
}

.single-post-section .post-navigation .nav-links > div:only-child {
  grid-column: 1 / -1;
}

.single-post-section .post-navigation a {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  color: var(--green-dark);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.single-post-section .post-navigation a:hover {
  border-color: var(--green);
  box-shadow: 0 14px 34px rgba(22, 75, 53, 0.09);
}

.single-post-section .post-navigation .nav-subtitle {
  display: block;
  color: var(--orange);
}

.single-post-section .post-navigation svg {
  width: 22px;
  height: 22px;
}

.single-post-section .post-navigation .nav-title {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.news-sidebar-panel a:not(.btn) em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.single-related {
  background: var(--bg);
}

.single-related .eyebrow {
  display: block;
}

.single-related .news-card {
  background: #fff;
  padding-bottom: 0;
}

.single-related .news-image a,
.single-related .news-card h3 a {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  text-transform: none;
}

.single-related .news-image a::after,
.single-related .news-card h3 a::after {
  content: none;
}

.single-related .news-card h3 a:hover {
  color: var(--green);
}

.single-comments {
  padding-top: 0;
  background: #fff;
}

.comments-area {
  max-width: 860px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.comments-title,
.comment-reply-title {
  margin: 0 0 26px;
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 700;
}

.comment-list {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin: 0 0 0 clamp(16px, 4vw, 48px);
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.comment-list .comment-author {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--green-dark);
  font-weight: 800;
}

.comment-list .comment-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.comment-list .comment-metadata {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.comment-list .comment-content {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.comment-list .comment-content > :last-child {
  margin-bottom: 0;
}

.comment-list .reply a,
.comment-list .comment-metadata a {
  color: var(--green-dark);
  font-weight: 700;
}

.comment-list .reply a:hover,
.comment-list .comment-metadata a:hover {
  color: var(--orange);
}

.comment-list .reply {
  margin-top: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.comment-respond {
  padding: 30px;
  border-top: 4px solid var(--green);
  background: var(--bg);
}

.comment-form {
  display: grid;
  gap: 16px;
}

.comment-form .comment-notes,
.comment-form .comment-form-cookies-consent label {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.comment-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--green);
  outline: none;
}

.comment-form .comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.comment-form .submit {
  justify-self: start;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.comment-form .submit:hover {
  background: #b91d27;
}

.comments-area .no-comments {
  color: var(--muted);
  font-size: 15px;
}

.comment-navigation .nav-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .single-post-hero {
    padding: 128px 0 52px;
  }

  .single-post-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  .news-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .single-post-hero {
    padding: 104px 0 42px;
  }

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

  .single-post-article .entry-content {
    font-size: 16px;
  }

  .single-post-footer {
    gap: 20px;
    align-items: flex-start;
  }

  .single-post-author {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .single-post-section .post-navigation .nav-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-post-section .post-navigation .nav-next {
    text-align: left;
  }

  .comment-respond {
    padding: 22px;
  }
}

/* Category archive */
.category-archive-page {
  background: #fff;
}

/* Empty state (used by category, archive, index, search templates) */
.no-results {
  padding: 90px 0 100px;
  text-align: center;
}

.no-results p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 17px;
}

.no-results .search-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.no-results .search-field {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.no-results .search-submit {
  padding: 0 22px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.no-results .search-submit .screen-reader-text {
  display: none;
}

/* WordPress integration */
.entry-content, .wp-site-blocks { max-width: none; margin: 0; padding: 0; }
.entry-content > * { max-width: none; }
.brand img { display: block; width: auto; height: 72px; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin: 0 0 10px; }
.is-sticky-enabled.is-scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
[class*="wp-block-carbon-fields-isdebd-"] { margin-block: 0; }

/* History page block variants. The static markup carried these as inline
   styles; as blocks they are class-scoped so editors cannot lose them. */
.history-story .section-copy h2 span { color: var(--orange); }
.timeline-section .section-heading h2 span { color: var(--orange); }

.milestones-section { background: var(--green-dark); color: #fff; }
.milestones-section .eyebrow { color: var(--orange); }
.milestones-section h2 { color: #fff; }
.milestones-section h2 span { color: var(--orange); }
.milestones-section .impact-copy > p { margin-top: 18px; color: rgba(255,255,255,.85); }
.milestones-section .check-list { margin-top: 24px; color: rgba(255,255,255,.9); }

/* Where We Work stacks its intro and coverage tables as separate blocks, so
   collapse the gap between them into the single region the design intends. */
.location-section + .location-section { padding-top: 0; }

.faq-section { background: var(--bg); }
.faq-block-heading { margin-bottom: 28px; }
.faq-block-heading .muted { margin-top: 8px; }
