:root {
  --green-950: #064b50;
  --green-900: #075e63;
  --green-800: #0a7377;
  --orange-500: #f36b21;
  --ink: #1b1f1e;
  --muted: #5f6f70;
  --line: #d7e4e2;
  --white: #fafaf8;
  --teal-soft: #dcefed;
  --aqua-pale: #eef8f7;
  --cream-soft: #f8f5ef;
  --border-soft: #d7e4e2;
  --shell: 1272px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 1100px;
  background: var(--white);
}

body {
  min-width: 1100px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}

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

/* Header */

.site-header {
  position: relative;
  z-index: 20;
  height: 104px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(6, 75, 80, .08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 202px;
  flex: 0 0 202px;
}

.brand img {
  width: 202px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 39px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.primary-nav > a:not(.header-cta) {
  position: relative;
  padding: 12px 0;
}

.primary-nav > a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: transparent;
}

.primary-nav > a:not(.header-cta):hover,
.primary-nav > a:not(.header-cta):focus-visible,
.primary-nav > a.is-current {
  color: var(--orange-500);
}

.primary-nav > a.is-current::after {
  background: var(--orange-500);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.header-cta {
  min-width: 179px;
  min-height: 54px;
  padding: 15px 25px;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 8px 18px rgba(243, 107, 33, .18);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(6, 75, 80, .18);
}

/* Hero */

.impact-mobile-summary,
.reading-summary-mobile,
.service-summary-mobile {
  display: none;
}

.hero {
  position: relative;
  height: 858px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  right: auto;
  width: 104%;
  max-width: none;
  object-position: left 48%;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 75, 80, .06) 35%, rgba(6, 75, 80, .2) 100%),
    linear-gradient(90deg,
      rgba(6, 75, 80, .97) 0%,
      rgba(7, 94, 99, .94) 25%,
      rgba(7, 94, 99, .82) 42%,
      rgba(7, 94, 99, .44) 56%,
      rgba(6, 75, 80, .13) 68%,
      rgba(6, 75, 80, .04) 82%,
      rgba(6, 75, 80, .02) 100%);
}

.hero-inner {
  position: relative;
  height: 100%;
}

.hero-copy {
  position: absolute;
  top: 142px;
  left: 0;
  width: 620px;
}

.hero-copy h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(6, 75, 80, .16);
}

.hero-copy > p {
  width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  padding: 14px 27px;
  border: 1px solid transparent;
  font-size: 13px;
}

.button-primary {
  min-width: 231px;
  color: var(--white);
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.button-secondary {
  min-width: 198px;
  color: var(--white);
  background: rgba(6, 75, 80, .18);
  border-color: rgba(255, 255, 255, .78);
}

.hero-story {
  position: absolute;
  right: -1px;
  bottom: 112px;
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 18px 28px rgba(0, 30, 25, .28));
}

.hero-story > img {
  width: 278px;
  height: 258px;
  object-fit: cover;
  object-position: 62% center;
  border: 3px solid rgba(255, 255, 255, .72);
  border-radius: 13px;
}

.hero-story blockquote {
  width: 208px;
  min-height: 178px;
  margin: 0 0 0 -23px;
  padding: 24px 24px 21px 28px;
  color: var(--white);
  background: rgba(0, 55, 46, .96);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
}

.quote-mark {
  display: block;
  height: 34px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: .9;
}

.hero-story blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.45;
}

/* Overlapping impact strip */

main {
  padding-bottom: 0;
}

.impact-strip {
  position: relative;
  z-index: 10;
  min-height: 152px;
  margin-top: -78px;
  padding: 22px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  box-shadow: 0 16px 38px rgba(6, 75, 80, .1);
}

.impact-item {
  min-width: 0;
  padding: 4px 31px;
  display: grid;
  grid-template-columns: 67px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  position: relative;
}

.impact-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

.impact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.impact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.impact-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--teal-soft);
}

/* Calendar icon */

.icon-calendar::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 26px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-calendar::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 24px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 -1px currentColor, 0 12px 0 -1px currentColor;
}

.icon-calendar i::before,
.icon-calendar i::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
}

.icon-calendar i::before { left: 24px; }
.icon-calendar i::after { right: 24px; }

/* People icon */

.icon-people i {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-people i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 16px;
  height: 11px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
  transform: translateX(-50%);
}

.icon-people i:nth-child(1) { left: 14px; top: 25px; }
.icon-people i:nth-child(2) { left: 25px; top: 16px; }
.icon-people i:nth-child(3) { right: 14px; top: 25px; }
.icon-people i:nth-child(2)::after { width: 18px; height: 14px; }

/* Book icon */

.icon-book i {
  position: absolute;
  top: 17px;
  width: 15px;
  height: 27px;
  border: 2px solid currentColor;
  background: transparent;
}

.icon-book i:first-child {
  left: 15px;
  border-right-width: 1px;
  border-radius: 4px 0 0 4px;
  transform: skewY(7deg);
}

.icon-book i:last-child {
  right: 15px;
  border-left-width: 1px;
  border-radius: 0 4px 4px 0;
  transform: skewY(-7deg);
}

.icon-book::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 18px;
  width: 2px;
  height: 26px;
  background: currentColor;
}

/* Phone icon */

.icon-phone i {
  position: absolute;
  left: 21px;
  top: 13px;
  width: 19px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-phone i::before,
.icon-phone i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.icon-phone i::before {
  top: 4px;
  width: 7px;
  height: 1px;
}

.icon-phone i::after {
  bottom: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

/* Why Reading Matters */

.reading-matters {
  position: relative;
  overflow: hidden;
  padding: 79px 0 118px;
  background: var(--white);
}

.reading-layout {
  display: grid;
  grid-template-columns: 470px 1fr;
  align-items: center;
  gap: 116px;
}

.reading-copy {
  padding-left: 17px;
}

.section-kicker {
  margin: 0 0 19px;
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.reading-copy h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.032em;
}

.reading-copy > p:not(.section-kicker) {
  max-width: 455px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.reading-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 29px;
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 800;
}

.reading-link span {
  font-size: 16px;
  transition: transform 160ms ease;
}

.reading-link:hover span,
.reading-link:focus-visible span {
  transform: translateX(4px);
}

.reading-visual {
  position: relative;
  width: 686px;
  height: 401px;
  justify-self: end;
}

.reading-visual > img {
  width: 584px;
  height: 401px;
  object-fit: cover;
  object-position: center 62%;
  border-radius: 11px;
  box-shadow: 0 19px 38px rgba(6, 75, 80, .1);
}

.reading-quote {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 216px;
  min-height: 289px;
  margin: 0;
  padding: 40px 25px 30px 31px;
  color: var(--white);
  background: var(--green-950);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 11px;
  box-shadow: 0 18px 34px rgba(6, 75, 80, .18);
}

.reading-quote > span {
  display: block;
  height: 39px;
  color: var(--orange-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 53px;
  font-weight: 700;
  line-height: .9;
}

.reading-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.48;
}

.reading-dots {
  position: absolute;
  width: 116px;
  height: 112px;
  background-image: radial-gradient(circle, currentColor 1.6px, transparent 1.8px);
  background-size: 16px 16px;
  opacity: .72;
}

.reading-dots-left {
  left: -55px;
  top: 104px;
  color: var(--orange-500);
}

.reading-dots-right {
  right: -40px;
  top: 52px;
  color: #6ca9a7;
}

/* What We Do */

.what-we-do {
  position: relative;
  margin-top: -58px;
  padding: 58px 0 96px;
  background: var(--cream-soft);
}

.services-heading {
  text-align: center;
}

.services-heading .section-kicker {
  margin-bottom: 17px;
}

.services-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}

.heading-accent {
  display: block;
  width: 56px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--orange-500);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  margin-top: 41px;
}

.service-card {
  position: relative;
  min-height: 356px;
  padding: 32px 33px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(6, 75, 80, .065);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: var(--card-accent);
}

.service-card-fundza {
  --card-accent: var(--green-900);
  --icon-background: var(--teal-soft);
}

.service-card-workshops {
  --card-accent: var(--orange-500);
  --icon-background: #fbeddf;
}

.service-card-publishing {
  --card-accent: #7f861b;
  --icon-background: #f0f2e7;
}

.service-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  flex: 0 0 60px;
  color: var(--green-900);
  background: var(--icon-background);
  border-radius: 50%;
}

.service-card h3 {
  margin: 18px 0 13px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.022em;
}

.service-card > p {
  max-width: 332px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.service-link {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-bottom: 3px;
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 800;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 160ms ease;
}

.service-link > span {
  font-size: 16px;
  transition: transform 160ms ease;
}

.service-link:hover::after,
.service-link:focus-visible::after {
  width: calc(100% - 26px);
}

.service-link:hover > span,
.service-link:focus-visible > span {
  transform: translateX(4px);
}

.service-icon-books i {
  position: absolute;
  bottom: 17px;
  width: 9px;
  border: 2px solid currentColor;
  border-radius: 2px 2px 1px 1px;
}

.service-icon-books i:nth-child(1) {
  left: 17px;
  height: 25px;
}

.service-icon-books i:nth-child(2) {
  left: 27px;
  height: 29px;
}

.service-icon-books i:nth-child(3) {
  left: 38px;
  height: 23px;
  transform: rotate(-7deg);
  transform-origin: bottom center;
}

.service-icon-books::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 14px;
  bottom: 13px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

/* Our Impact */

.outcomes-section {
  position: relative;
  height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.outcomes-photo,
.outcomes-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.outcomes-photo {
  object-fit: cover;
  object-position: center 54%;
}

.outcomes-overlay {
  background:
    linear-gradient(180deg, rgba(7, 94, 99, .87), rgba(6, 75, 80, .93)),
    linear-gradient(90deg, rgba(7, 94, 99, .25), rgba(6, 75, 80, .08) 50%, rgba(7, 94, 99, .25));
}

.outcomes-inner {
  position: relative;
  z-index: 2;
  padding-top: 48px;
}

.outcomes-heading {
  text-align: center;
}

.outcomes-heading .section-kicker {
  margin-bottom: 14px;
}

.outcomes-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 47px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.032em;
}

.outcomes-panel {
  width: calc(100% - 32px);
  min-height: 232px;
  margin: 29px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(6, 75, 80, .36);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 12px;
  box-shadow: 0 13px 31px rgba(6, 75, 80, .18);
}

.outcome-item {
  position: relative;
  min-width: 0;
  padding: 18px 21px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.outcome-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, .48) 0,
    rgba(255, 255, 255, .48) 3px,
    transparent 3px,
    transparent 7px
  );
}

.outcome-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  flex: 0 0 60px;
  color: rgba(255, 255, 255, .9);
}

.outcome-item strong {
  display: block;
  margin-top: 2px;
  color: var(--orange-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.outcome-item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.48;
}

/* Latest News */

.latest-news {
  height: 690px;
  padding: 58px 0 62px;
  background: var(--white);
}

.news-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news-heading .section-kicker {
  margin-bottom: 16px;
}

.news-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 47px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}

.news-view-all {
  min-width: 175px;
  min-height: 52px;
  margin-bottom: 1px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--green-900);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.news-view-all:hover,
.news-view-all:focus-visible {
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-2px);
}

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

.news-card {
  min-width: 0;
  height: 454px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(6, 75, 80, .065);
}

.news-card-image {
  width: 100%;
  height: 200px;
  flex: 0 0 200px;
  object-fit: cover;
  border-bottom: 1px solid #e4e7e4;
}

.news-card-image-fundza {
  object-position: 50% 42%;
}

.news-card-image-anthology {
  object-position: center 22%;
}

.news-card-image-workshops {
  object-position: center 43%;
}

.news-card-body {
  min-height: 0;
  padding: 24px 27px 25px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.news-card-body > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.news-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 800;
}

.news-link span {
  font-size: 15px;
  transition: transform 160ms ease;
}

.news-link:hover span,
.news-link:focus-visible span {
  transform: translateX(4px);
}

/* Working Together */

.partners-section {
  height: 348px;
  padding: 54px 0;
  background: var(--white);
  border-top: 1px solid #f0f1ee;
}

.partners-layout {
  height: 240px;
  display: grid;
  grid-template-columns: 410px 1fr;
}

.partners-copy {
  padding: 4px 64px 0 17px;
  border-right: 1px solid var(--border-soft);
}

.partners-copy .section-kicker {
  margin-bottom: 17px;
}

.partners-copy h2 {
  margin: 0 0 19px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.032em;
}

.partners-copy > p:not(.section-kicker) {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.partners-showcase {
  padding: 4px 0 0 65px;
}

.partners-label {
  margin: 0 0 18px;
  color: #33443e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 229px);
  gap: 14px;
}

.partner-card {
  height: 180px;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(6, 75, 80, .055);
}

.partner-logo {
  display: block;
  width: min(100%, 230px);
  height: 96px;
  object-fit: contain;
  object-position: center;
}

/* Get Involved */

.get-involved-section {
  position: relative;
  padding: 34px 0;
  overflow: hidden;
  background: var(--white);
}

.get-involved-banner {
  position: relative;
  z-index: 2;
  min-height: 310px;
  padding: 40px 0;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--green-950);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(6, 75, 80, .16);
}

.get-involved-photo,
.get-involved-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.get-involved-photo {
  left: 6%;
  right: auto;
  width: 106%;
  max-width: none;
  object-fit: cover;
  object-position: center 14%;
}

.get-involved-overlay {
  background:
    linear-gradient(90deg,
      rgba(6, 75, 80, .99) 0%,
      rgba(7, 94, 99, .98) 38%,
      rgba(7, 94, 99, .94) 51%,
      rgba(7, 94, 99, .62) 68%,
      rgba(6, 75, 80, .16) 100%),
    linear-gradient(180deg, rgba(6, 75, 80, .13), rgba(6, 75, 80, .28));
}

.get-involved-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 68%);
  padding: 0 0 0 62px;
}

.get-involved-copy h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.27vw, 47px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.032em;
  text-wrap: balance;
}

.get-involved-copy p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.55;
}

.get-involved-button {
  min-width: 186px;
  min-height: 52px;
  margin-top: 20px;
  padding: 13px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--white);
  background: var(--orange-500);
  border-radius: 999px;
  box-shadow: 0 11px 24px rgba(243, 107, 33, .24);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.get-involved-button:hover,
.get-involved-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 13px 27px rgba(6, 75, 80, .24);
}

.cta-dots {
  position: absolute;
  z-index: 1;
  right: -34px;
  top: 50%;
  width: 124px;
  height: 126px;
  color: var(--orange-500);
  background-image: radial-gradient(circle, currentColor 1.7px, transparent 1.9px);
  background-size: 16px 16px;
  opacity: .8;
  transform: translateY(-50%);
}

/* Footer */

.site-footer {
  min-height: 368px;
  color: rgba(255, 255, 255, .82);
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
}

.footer-main {
  min-height: 298px;
  padding: 34px 17px 27px;
  display: grid;
  grid-template-columns: 340px 160px 230px minmax(0, 1fr);
  gap: 55px;
}

.footer-logo {
  width: 178px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand > p {
  max-width: 286px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.52;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social > a {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.footer-social > a:hover,
.footer-social > a:focus-visible {
  color: var(--green-950);
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.social-icon {
  position: relative;
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.social-facebook {
  padding-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.social-instagram {
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.social-instagram::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.social-instagram::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 50%;
}

.social-x {
  font-size: 12px;
}

.social-linkedin {
  font-size: 11px;
  letter-spacing: -.04em;
}

.social-youtube {
  width: 17px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.social-youtube::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid currentColor;
}

.footer-column,
.footer-contact {
  padding-top: 2px;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.footer-column > a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.38;
}

.footer-column > a:hover,
.footer-column > a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange-500);
}

.footer-contact dl {
  margin: 0;
}

.footer-contact dl > div {
  margin-bottom: 12px;
}

.footer-contact dt {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-contact dd {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.42;
}

[data-content-status="temporary"] {
  font-style: italic;
}

.footer-legal {
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  background: rgba(6, 75, 80, .28);
}

.footer-legal-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 44px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.footer-legal-inner > p {
  margin: 0;
}

.footer-legal nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-registration {
  justify-self: end;
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .button,
  .reading-link span,
  .service-link::after,
  .service-link > span,
  .news-view-all,
  .news-link span,
  .get-involved-button,
  .footer-social > a {
    transition: none;
  }
}
