:root {
  --blue: #004aad;
  --blue-dark: #073587;
  --blue-soft: #eaf6fc;
  --sky: #5f91f5;
  --gray-nav: #d9d9d9;
  --gold: #f5c400;
  --black: #0a0a0a;
  --white: #ffffff;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #eeeeee;
  color: var(--black);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.42;
}
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 20;
  padding: .65rem 1rem;
  background: var(--blue);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(100%, var(--max));
  margin: 0 auto;
  background: var(--white);
}
.site-title {
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: .4rem 1rem .2rem;
  font-size: clamp(1.55rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0;
}
.site-title a { text-decoration: none; }
.nav-wrap {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem 0 9.5rem;
  background: var(--gray-nav);
}
.brand {
  position: absolute;
  left: 3.1rem;
  top: -12px;
  width: 76px;
  z-index: 2;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
}
.site-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .96rem;
  white-space: nowrap;
}
.site-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a.active { color: var(--blue); }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.has-dropdown > .nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 15;
  min-width: 250px;
  display: none;
  flex-direction: column;
  gap: .15rem;
  padding: .75rem .55rem .55rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  white-space: normal;
}
.dropdown-menu a {
  display: block;
  padding: .48rem .6rem;
  line-height: 1.25;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--blue-soft);
  color: var(--blue);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: flex;
}
.site-nav .donate-link {
  margin-left: auto;
  min-width: 154px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(#fff5a8, #dca513);
  color: #000;
  font-size: 1.55rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 3px rgba(0,0,0,.18);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 38px;
  border: 1px solid #aaa;
  background: #fff;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #000;
}

main {
  width: min(100%, var(--max));
  margin: 0 auto;
  background: var(--white);
}

.hero {
  width: 100%;
  margin: 0;
  min-height: 394px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #002b86 0%, #6595fb 100%);
  box-shadow: none;
}
.hero-full {
  min-height: 190px;
  display: block;
  padding: 0;
  background: linear-gradient(180deg, #05216f 0%, #6595fb 100%);
}
.hero-full .hero-content {
  min-height: 190px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 1.8rem 1.5rem;
  text-align: center;
  align-items: center;
}
.hero-full h1 {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 1.4rem;
  font-size: 1.52rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}
.hero-full p {
  display: block;
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: .74rem;
  line-height: 1.45;
  font-weight: 400;
  text-align: center;
}
.programs-hero h1::after {
  content: "";
  display: block;
  width: min(430px, 72%);
  height: 1px;
  margin: 1.15rem auto 0;
  background: rgba(255,255,255,.55);
}
.hero-full .hero-visual {
  display: none;
}
.hero-content {
  padding: 2.2rem 2rem 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  margin: 0 0 1.6rem;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4.1vw, 2.55rem);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: 0;
}
.hero h1 em,
.hero h1 strong { font-weight: 800; font-style: italic; }
.home-hero {
  position: relative;
}
.home-hero .hero-heading-full {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 2.2rem 2rem 0;
  color: var(--white);
}
.home-hero .hero-content {
  padding-top: 8rem;
  align-items: center;
  text-align: center;
}
.home-hero .hero-content::before {
  content: "";
  width: min(410px, 82%);
  height: 1px;
  margin-bottom: 1.45rem;
  background: rgba(255,255,255,.35);
}
.hero p {
  max-width: 560px;
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--white);
}
.hero-visual {
  min-width: 0;
  display: grid;
  align-content: stretch;
}
.hero-figure {
  margin: 0;
  height: 100%;
  min-height: 394px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 394px;
  display: block;
  object-fit: cover;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 2.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 43px;
  padding: .45rem 1.2rem;
  border-radius: 0;
  border: 0;
  text-decoration: none;
  font-size: 1.22rem;
  font-weight: 800;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-secondary { background: var(--gold); color: var(--blue); }
.btn-gold { background: var(--gold); color: var(--blue); }
.hero-aside {
  display: none;
}

.content-section {
  padding: 2.2rem 1.7rem;
  background: var(--white);
}
.content-section.alt { background: #f2f7ff; }
.content-section.sage,
.content-section.teal,
.content-section.coral { background: var(--blue-soft); color: var(--black); }
.section-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.section-inner.narrow { max-width: 900px; }
.content-section h2 {
  margin: 0 0 .55rem;
  color: var(--blue);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.14;
  text-align: center;
  font-weight: 800;
}
.content-section h3 {
  margin: 0 0 .55rem;
  color: var(--blue);
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 800;
}
.content-section p {
  margin: 0 0 1rem;
}
.section-intro {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  text-align: center;
  font-size: 1.08rem;
  font-weight: 600;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-top: 1.6rem;
}
.info-card {
  min-height: 214px;
  background: var(--white);
  border: 0;
  border-radius: 0;
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: none;
}
.icon-card {
  min-height: 144px;
  padding: 1rem 1.1rem;
  background: #dbeaff;
  border-radius: 24px;
  cursor: help;
}
.panel-image-card {
  min-height: 144px;
  padding: 0;
  background: transparent;
  cursor: help;
}
.panel-image {
  display: block;
  width: 100%;
  height: auto;
}
.icon-card p {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.clipart-icon {
  width: 92px;
  height: 92px;
  margin: .65rem auto 0;
  color: #111;
}
.clipart-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card:has(.card-photo) {
  padding: 0 0 1rem;
}
.card-photo {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
  margin: 0 0 .8rem;
}
.info-card p {
  margin: 0 0 .9rem;
  color: #000;
  font-size: .94rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 37px;
  padding: .35rem .9rem;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}
.program-section {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.program-section h2 {
  font-size: 1.15rem;
  line-height: 1.2;
  position: relative;
  margin-bottom: .45rem;
}
.program-section h2::before,
.program-section h2::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 2px;
  margin: 0 .7rem .28rem;
  background: var(--blue);
}
.programs-overview h2 {
  font-size: 1.45rem;
}
.programs-forward h2 {
  font-size: 1.42rem;
}
.programs-forward p {
  margin-right: auto;
  margin-left: auto;
  max-width: 900px;
}
.programs-start p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.programs-start .button-row {
  justify-content: center;
  gap: 2.6rem;
}
.programs-start .btn {
  min-width: 280px;
  border-radius: 10px;
}
.program-section .section-intro {
  display: block;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 2rem;
  max-width: 900px;
  margin: 1.35rem auto 0;
}
.program-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #dcecff;
}
.program-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.program-card-feature {
  display: flex;
  flex-direction: column;
  padding-top: .55rem;
}
.program-card-feature img {
  width: calc(100% - 3rem);
  height: 180px;
  margin: 0 1.5rem;
  object-fit: contain;
  object-position: center;
}
.program-card-feature-copy {
  padding: .55rem 1rem 0;
}
.program-card-feature-copy h3 {
  margin-bottom: .3rem;
}
.program-card-feature-copy .program-card-subtitle {
  max-width: none;
  margin: 0;
}
.program-card-body {
  min-height: 152px;
  padding: .75rem 1rem 1rem;
}
.program-card h3 {
  margin-bottom: .45rem;
  text-align: left;
  font-size: 1rem;
}
.program-card p {
  max-width: 310px;
  margin: 0 0 .75rem;
  font-size: .82rem;
  line-height: 1.35;
  text-align: left;
}
.program-card .text-link {
  min-width: 118px;
  min-height: 35px;
  font-size: .9rem;
}
.stats-band {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, #f3dad5, #d8e8ff);
  text-align: center;
}
.stats-band div {
  border-left: 2px solid var(--blue);
}
.stats-band div:first-child {
  border-left: 0;
}
.stats-band strong {
  display: block;
  color: var(--blue);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
}
.stats-band span {
  display: block;
  margin-top: .25rem;
  font-size: .78rem;
}

.home-hero .hero-heading-full {
  width: 82%;
  max-width: 82%;
  font-size: clamp(1.65rem, 2.7vw, 1.95rem);
  line-height: 1.22;
}
.home-hero .hero-figure img {
  transform: scale(1.42);
  transform-origin: 52% 42%;
}
.home-benefits {
  padding: 1.1rem 1.7rem 1.9rem;
}
.home-benefits h2 {
  margin-bottom: .35rem;
  font-size: clamp(1.8rem, 3.4vw, 2.35rem);
}
.home-benefits .section-intro {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: .85rem;
  font-size: 1.04rem;
  text-align: center;
}
.home-benefits .card-grid {
  grid-template-columns: repeat(3, minmax(0, 230px));
  justify-content: space-between;
  gap: 2rem;
  max-width: 930px;
  margin: 1rem auto 0;
}
.home-benefits .panel-image-card {
  min-height: 0;
}
.home-programs {
  padding-top: 1.25rem;
  padding-bottom: 2.1rem;
}
.home-programs h2 {
  max-width: 840px;
  margin: 0 auto 1.3rem;
  font-size: 1.48rem;
  line-height: 1.18;
  position: relative;
}
.home-resource-cta h2::before,
.home-resource-cta h2::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 2px;
  margin: 0 .8rem .35rem;
  background: var(--blue);
}
.home-programs-heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  white-space: nowrap;
}
.home-programs-heading-line::before,
.home-programs-heading-line::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  flex: 0 0 70px;
  background: var(--blue);
}
.home-programs-heading-continuation {
  display: block;
}
.home-programs .card-grid {
  gap: 2.4rem;
  margin-top: 0;
}
.home-programs .info-card {
  min-height: 0;
  padding: 0 0 1rem;
  background: var(--white);
}
.home-programs .card-photo {
  height: 98px;
  margin-bottom: .65rem;
}
.home-programs .info-card h3 {
  margin-bottom: .55rem;
  font-size: 1.08rem;
  line-height: 1.1;
}
.home-programs .info-card p {
  max-width: 250px;
  min-height: 58px;
  margin: 0 auto .65rem;
  font-size: .82rem;
  line-height: 1.27;
}
.home-programs .text-link {
  min-width: 116px;
  min-height: 34px;
  font-size: .9rem;
}
.home-intro-section {
  padding: 1.3rem 1.7rem 1.35rem;
  background: var(--white);
  text-align: center;
}
.home-intro-section p {
  max-width: 780px;
  margin: 0 auto 1rem;
  color: var(--blue);
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 800;
}
.home-intro-section p:last-child {
  margin-bottom: 0;
}
.stats-band.home-stats {
  grid-template-columns: repeat(4, 1fr);
  padding: 1.45rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, #8eb3ff 0%, #dfeaff 100%);
}
.stats-band.home-stats div {
  min-height: 72px;
  display: grid;
  align-content: center;
  border-left: 3px solid var(--blue);
}
.stats-band.home-stats div:first-child {
  border-left: 0;
}
.stats-band.home-stats strong {
  color: #000;
  font-size: 2.25rem;
}
.stats-band.home-stats span {
  max-width: 170px;
  margin: .35rem auto 0;
  color: #1c1c1c;
  font-size: .9rem;
  line-height: 1.25;
}
.home-quote-section {
  padding: 0 1.7rem;
  background: #eef6ff;
}
.home-quote-layout {
  min-height: 210px;
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 3.2rem;
  align-items: end;
}
.home-quote-layout img {
  width: 310px;
  max-height: 208px;
  object-fit: contain;
  align-self: end;
}
.home-quote-layout blockquote {
  margin: 0;
  align-self: center;
}
.home-quote-layout p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.28;
  font-style: italic;
}
.home-resource-cta,
.home-sponsor-cta {
  padding: 2rem 1.7rem;
  text-align: center;
}
.home-resource-cta {
  background: #f1f1f1;
}
.home-sponsor-cta {
  background: var(--white);
}
.home-resource-cta h2,
.home-sponsor-cta h2 {
  margin: 0 0 .9rem;
  color: var(--blue);
  font-size: 1.65rem;
  line-height: 1.18;
  font-weight: 800;
}
.home-resource-cta p,
.home-sponsor-cta p {
  max-width: 620px;
  margin: 0 auto 1.15rem;
  font-size: 1.02rem;
  line-height: 1.35;
}
.home-resource-cta .btn {
  min-width: 300px;
  color: var(--blue);
  border-radius: 10px;
}
.home-sponsor-cta .btn {
  min-width: 280px;
  border-radius: 10px;
}

.nav-hero {
  position: relative;
  height: 315px;
  min-height: 315px;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  background: url('/assets/img/pdf/page-03-img-07.png') center/cover no-repeat;
}
.nav-hero .hero-heading-full {
  position: absolute;
  top: 10px;
  left: 65.6%;
  z-index: 2;
  width: min(430px, 50%);
  margin: 0;
  transform: translateX(-50%);
  color: var(--blue);
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.478;
  text-align: center;
}
.nav-hero .hero-heading-full::after {
  content: "";
  display: block;
  width: min(410px, 86vw);
  height: 1px;
  margin: 1.2rem auto 0;
  background: rgba(255,255,255,.7);
}
.nav-hero .hero-content {
  height: 315px;
  position: relative;
  z-index: 1;
  order: 2;
  color: var(--blue);
  padding: 155px 1rem 1rem;
  justify-content: flex-start;
  text-align: center;
  background: transparent;
}
.nav-hero .hero-visual {
  order: 1;
}
.nav-hero .hero-figure,
.nav-hero .hero-figure img {
  height: 315px;
  min-height: 315px;
}
.nav-hero .hero-figure img {
  transform: scale(1.36);
  transform-origin: 49% 51%;
}
.nav-hero h1 {
  max-width: 430px;
  margin: 0 auto 1.7rem;
  color: var(--blue);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.18;
}
.nav-hero p {
  max-width: 500px;
  margin: 0 auto;
  transform: translateX(-6.25rem);
  color: #111;
  font-size: 1.25rem;
  line-height: 1.3875;
  font-weight: 400;
}
.nav-resource-section {
  padding-top: 1.7rem;
  padding-bottom: 1.3rem;
}
.nav-resource-section h2 {
  font-size: 1.55rem;
  position: relative;
}
.nav-resource-section h2::before,
.nav-resource-section h2::after,
.nav-programs h2::before,
.nav-programs h2::after,
.nav-support-band h2::before,
.nav-support-band h2::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 2px;
  margin: 0 .7rem .32rem;
  background: var(--blue);
}
.nav-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.nav-resource-card {
  min-height: 238px;
  padding: .75rem .8rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, #82a7ff, #dce9ff);
}
.nav-resource-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto .6rem;
}
.nav-resource-card h3 {
  margin: 0 0 .45rem;
  color: #111;
  font-size: .98rem;
  font-weight: 500;
}
.nav-resource-card h3::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: .55rem auto .7rem;
  background: var(--blue);
}
.nav-resource-card p {
  min-height: 58px;
  margin: 0 0 .75rem;
  font-size: .76rem;
  line-height: 1.25;
}
.nav-resource-card .text-link {
  min-width: 124px;
  min-height: 34px;
  font-size: .86rem;
}
.journey-tools {
  height: 239px;
  min-height: 239px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 26px;
  background-size: cover;
  background-position: center 44%;
  color: #fff;
  text-align: center;
}
.journey-tools h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.journey-tool-links {
  width: min(668.5px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46.5px;
  margin-top: 0;
}
.journey-tool-links .btn {
  min-width: 0;
  width: 100%;
  min-height: 58.5px;
  padding: .25rem .5rem;
  color: var(--blue);
  background: var(--gold);
  font-size: 1.125rem;
  line-height: 1.375;
}
.nav-programs {
  padding-top: 2.1rem;
  background: #edf5ff;
}
.nav-programs h2 {
  font-size: 1.65rem;
}
.nav-programs .program-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 970px;
  gap: 2rem;
}
.nav-programs .program-card {
  background: #fff;
}
.nav-programs .program-card img {
  height: 106px;
}
.nav-programs .program-card-body {
  min-height: 174px;
  text-align: center;
  padding: .75rem .8rem 1rem;
}
.nav-programs .program-card h3,
.nav-programs .program-card p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.nav-programs .program-card h3 {
  font-size: .95rem;
}
.nav-programs .program-card p {
  font-size: .74rem;
}
.nav-support-band {
  padding: 2.2rem 1rem;
  background: linear-gradient(180deg, #8fb1ff, #dce8ff);
}
.nav-support-band .section-inner,
.not-alone-band .section-inner {
  max-width: 720px;
  text-align: center;
}
.nav-support-band h2 {
  font-size: 1.65rem;
}
.nav-support-band p,
.not-alone-band p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.nav-support-band .button-row {
  justify-content: center;
  gap: 1rem;
}
.nav-support-band .btn {
  min-width: 220px;
  font-size: 1rem;
}
.not-alone-band {
  padding: 2.5rem 1rem;
  background:
    linear-gradient(rgba(255,255,255,.68), rgba(255,255,255,.68)),
    url('/assets/img/pdf/page-03-img-15.jpeg') center/cover no-repeat;
}
.not-alone-band h2 {
  font-size: 1.75rem;
}
.get-help-hero {
  min-height: 215px;
  position: relative;
  display: block;
  overflow: hidden;
  background: #1f4c88;
}
.get-help-hero .hero-visual {
  position: absolute;
  inset: 0;
  display: block;
}
.get-help-hero .hero-figure,
.get-help-hero .hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 215px;
}
.get-help-hero .hero-figure img {
  object-position: center 48%;
}
.get-help-hero .hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.08) 48%, rgba(0,0,0,.38));
}
.get-help-hero .hero-content {
  position: relative;
  z-index: 1;
  min-height: 215px;
  padding: 1.1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 2rem;
  color: #fff;
}
.get-help-hero h1 {
  grid-column: 1;
  max-width: 360px;
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.86rem;
  line-height: 1.06;
  font-weight: 800;
}
.get-help-hero p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  justify-self: end;
  max-width: 405px;
  margin: 0 0 .7rem;
  color: #fff;
  font-size: .95rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: right;
}
.get-help-hero .button-row {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  justify-content: start;
  gap: .45rem;
  margin: 0;
}
.get-help-hero .btn {
  min-width: 132px;
  min-height: 28px;
  padding: .28rem .65rem;
  font-size: .76rem;
}
.get-help-programs {
  padding-top: 1.15rem;
  padding-bottom: 1.35rem;
  background: #fff;
}
.get-help-programs h2 {
  font-size: 1.45rem;
}
.get-help-programs .section-intro {
  max-width: 930px;
  margin-bottom: 1rem;
  font-size: .86rem;
  line-height: 1.35;
  text-align: center;
}
.get-help-programs .program-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 930px;
}
.get-help-programs .program-card {
  background: #fff;
  text-align: center;
}
.get-help-programs .program-card img {
  height: 92px;
}
.get-help-programs .program-card-body {
  min-height: 143px;
  padding: .55rem .55rem .75rem;
}
.get-help-programs .program-card h3,
.get-help-programs .program-card p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.get-help-programs .program-card h3 {
  font-size: .86rem;
}
.get-help-programs .program-card p {
  max-width: 250px;
  font-size: .68rem;
  line-height: 1.28;
}
.get-help-programs .program-card .text-link {
  min-width: 108px;
  min-height: 27px;
  font-size: .74rem;
}
.get-help-serve-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1.3rem 1.5rem 1.45rem;
  background: #dbeaff;
  text-align: center;
}
.get-help-serve-section h2 {
  margin: 0 0 .55rem;
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 800;
}
.get-help-serve-section p {
  max-width: 850px;
  margin: 0 auto .35rem;
  font-size: .82rem;
  line-height: 1.35;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 700px;
  margin: 1.65rem auto 0;
  gap: 1.75rem;
}
.serve-item {
  display: grid;
  justify-items: center;
  gap: .55rem;
  color: #111;
  font-size: .9rem;
}
.serve-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  background: transparent;
}
.serve-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.get-help-quote-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: .8rem 2.5rem 1rem;
  background: #fff;
}
.get-help-quote-section blockquote {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
  padding: 1.05rem 2.85rem 1.15rem;
  font-size: .9rem;
  font-style: italic;
  line-height: 1.35;
}
.get-help-quote-section blockquote::before,
.get-help-quote-section blockquote::after {
  position: absolute;
  color: #000;
  font-size: 3.2rem;
  line-height: 1;
  font-style: normal;
}
.get-help-quote-section blockquote::before {
  content: "“";
  left: .75rem;
  top: .25rem;
}
.get-help-quote-section blockquote::after {
  content: "”";
  right: .55rem;
  bottom: .25rem;
}
.get-help-quote-section p {
  margin: 0;
}
.get-help-quote-section cite {
  display: block;
  margin-top: .3rem;
  text-align: right;
  font-size: .72rem;
}
.get-help-resource-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: 185px;
  display: grid;
  align-items: center;
  padding: 1.2rem 2rem;
  background-position: center, -340px center;
  background-size: 100% 100%, 145% auto;
  background-repeat: no-repeat;
}
.get-help-resource-content {
  max-width: 475px;
  margin-left: 45%;
  text-align: left;
}
.get-help-resource-content h2 {
  margin: 0 0 .55rem;
  color: var(--blue);
  font-size: 1.32rem;
  font-weight: 800;
  text-align: center;
}
.get-help-resource-content p {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .98rem;
  line-height: 1.42;
}
.get-help-resource-content .btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  min-height: 32px;
  min-width: 150px;
  font-size: .84rem;
}
.get-help-contact-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  gap: 1rem;
  align-items: end;
  padding: 1.55rem 2rem 1.65rem;
  background: #fff;
  text-align: center;
}
.get-help-contact-section img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}
.get-help-contact-section h2 {
  margin: 0 0 .4rem;
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 800;
}
.get-help-contact-section p {
  max-width: 520px;
  margin: 0 auto .75rem;
  font-size: .82rem;
  line-height: 1.35;
}
.get-help-contact-section .btn {
  min-height: 28px;
  min-width: 112px;
  font-size: .76rem;
}
.retreat-hero {
  min-height: 285px;
  position: relative;
  display: block;
  overflow: hidden;
  background: #eef2fb;
}
.retreat-hero .hero-visual {
  position: absolute;
  inset: 0;
  display: block;
}
.retreat-hero .hero-figure,
.retreat-hero .hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 285px;
}
.retreat-hero .hero-figure img {
  object-position: center 44%;
  filter: saturate(.9);
}
.retreat-hero .hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.68);
}
.retreat-hero .hero-content {
  position: relative;
  z-index: 1;
  min-height: 285px;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1.65rem;
  text-align: center;
  color: var(--blue);
}
.retreat-hero h1 {
  margin: 0 0 .55rem;
  color: var(--blue);
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}
.retreat-hero p {
  max-width: 750px;
  margin: 0 auto 1.35rem;
  color: #111;
  font-size: 1.28rem;
  line-height: 1.35;
  font-weight: 500;
}
.retreat-hero .button-row {
  width: min(720px, 92%);
  display: grid;
  grid-template-columns: repeat(2, 260px);
  gap: 8rem;
  justify-content: center;
  margin: 0 auto;
}
.retreat-hero .btn {
  min-width: 260px;
  min-height: 47px;
  padding: .5rem 1.3rem;
  border-radius: 999px;
  font-size: 1.14rem;
  line-height: 1;
}
.retreat-hero .button-row .btn:only-child {
  grid-column: 1 / -1;
  justify-self: center;
}
.retreat-detail-section {
  background: #fff;
  color: #111;
}
.retreat-detail-section h2,
.retreat-detail-section h3 {
  color: var(--blue);
  line-height: 1.12;
}
.retreat-intro {
  max-width: 940px;
  margin: 0 auto;
  padding: 1.05rem 2rem 1rem;
  text-align: center;
}
.retreat-intro p {
  margin: 0;
  color: var(--blue);
  font-size: .96rem;
  line-height: 1.28;
  font-weight: 600;
}
.retreat-intro::after {
  content: "";
  display: block;
  width: 345px;
  max-width: 54%;
  height: 3px;
  margin: .8rem auto 0;
  background: #6258db;
}
.retreat-pillars {
  max-width: 980px;
  margin: .25rem auto 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--blue);
  text-align: center;
  font-size: 1.32rem;
  line-height: 1.1;
  font-weight: 800;
}
.retreat-pillars div {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: .35rem 1.25rem;
  border-left: 3px solid #6258db;
}
.retreat-pillars div:first-child { border-left: 0; }
.retreat-education {
  position: relative;
  min-height: 315px;
  padding: .55rem 1.5rem 1.7rem;
  text-align: center;
}
.retreat-education-copy {
  max-width: 850px;
  margin: 0 auto;
}
.retreat-education h2 {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 .8rem;
  font-size: 1.45rem;
  font-weight: 800;
}
.retreat-education h2::before,
.retreat-education h2::after {
  content: "";
  width: 96px;
  height: 2px;
  background: var(--blue);
}
.retreat-education p {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: .35rem 3.5rem .38rem;
  color: #222;
  background: #e0e0e0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 42px) 50%, 100% 100%, 0 100%, 42px 50%);
  font-size: 1rem;
  font-weight: 700;
}
.retreat-circle {
  position: absolute;
  top: 30px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  object-fit: cover;
}
.retreat-circle-left { left: 3.6rem; }
.retreat-circle-right { right: 3.6rem; }
.retreat-topic-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .58rem .82rem;
  max-width: 760px;
  margin: 0 auto 1.25rem;
}
.retreat-topic-grid span {
  min-width: 104px;
  padding: .34rem .86rem .36rem;
  border-radius: 999px;
  background: #e7e7e7;
  color: #333;
  font-size: .94rem;
  line-height: 1.15;
  box-shadow: inset 0 -1px 1px rgba(0,0,0,.12);
}
.retreat-speakers-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  min-height: 48px;
  padding: .52rem 1.2rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}
.retreat-community {
  padding: 1.45rem 2rem 1.7rem;
  background: linear-gradient(180deg, #7fa6fb 0%, #dceaff 100%);
  text-align: center;
}
.retreat-community h2 {
  margin: 0 0 .9rem;
  font-size: 1.48rem;
}
.retreat-community p {
  max-width: 920px;
  margin: 0 auto .85rem;
  font-size: .9rem;
  line-height: 1.35;
}
.retreat-details {
  display: grid;
  grid-template-columns: 1fr 1fr 290px;
  gap: 1.6rem;
  padding: 1.45rem 2.5rem 1.3rem;
  background: linear-gradient(180deg, #fff 0%, #fff9df 100%);
}
.retreat-details article {
  padding-right: 1.05rem;
  border-right: 3px solid #6258db;
}
.retreat-details h3 {
  margin: 0 0 .7rem;
  color: #111;
  font-size: 1.18rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #6258db;
  text-decoration-thickness: 3px;
}
.retreat-details p {
  margin: 0 0 .7rem;
  font-size: .88rem;
  line-height: 1.35;
}
.retreat-event-card {
  align-self: center;
  min-height: 240px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 1.25rem 1rem;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffcf55 0%, #ff7f35 100%);
  color: #fff;
  text-align: center;
}
.retreat-event-card h3 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 1.18rem;
  text-decoration: none;
}
.retreat-event-card p {
  margin: 0 0 .15rem;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 800;
}
.retreat-event-card .btn {
  min-width: 190px;
  min-height: 38px;
  margin-top: 1.25rem;
  border-radius: 999px;
  font-size: .95rem;
  background: var(--blue);
  color: #fff;
}
.retreat-quote-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1rem 2.6rem 1.1rem;
  background: #fffdf0;
}
.retreat-quote-row img {
  width: 152px;
  height: auto;
  justify-self: center;
  object-fit: contain;
}
.retreat-quote-row blockquote {
  margin: 0;
  max-width: 850px;
  color: #111;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.35;
}
.retreat-quote-row p { margin: 0; }
.retreat-quote-row cite {
  display: block;
  margin-top: .2rem;
  font-size: .9rem;
}
.retreat-photos {
  padding: .45rem 2rem 1.15rem;
  background: #fff;
  text-align: center;
}
.retreat-photos h2 {
  margin: 0 0 .85rem;
  font-size: 2rem;
  font-weight: 800;
}
.retreat-photo-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.65fr 1fr;
  grid-template-rows: 100px 100px;
  gap: .6rem 1rem;
}
.retreat-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.retreat-photo-grid img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.retreat-photo-grid img:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.retreat-photo-grid img:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.retreat-photo-grid img:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}
.retreat-photo-grid img:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
.retreat-closing {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 1.45rem;
  text-align: left;
}
.retreat-closing p {
  margin: 0 0 .55rem;
  font-size: .82rem;
  line-height: 1.35;
}
.lipa-hero {
  min-height: 245px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  background: #fff;
  overflow: hidden;
}
.lipa-hero .hero-content {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: 245px;
  padding: .85rem 1.8rem 1rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #dff2ff 0%, #ffffff 100%);
  color: var(--blue);
  text-align: center;
}
.lipa-hero h1 {
  width: calc(100% + 72px);
  max-width: 640px;
  margin: 0 auto .55rem;
  transform: translateX(36px);
  color: var(--blue);
  font-size: 1.95rem;
  line-height: 1.08;
  font-weight: 800;
}
.lipa-hero h1::after {
  content: "";
  display: block;
  width: min(430px, 82%);
  height: 2px;
  margin: .55rem auto 0;
  background: rgba(0, 74, 173, .35);
}
.lipa-hero p {
  width: calc(100% + 56px);
  max-width: 630px;
  margin: 0 auto .75rem;
  transform: translateX(28px);
  color: #111;
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 500;
}
.lipa-hero .button-row {
  width: min(420px, 90%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.65rem;
  margin: 0 auto;
}
.lipa-hero .btn {
  min-width: 0;
  min-height: 52px;
  display: grid;
  gap: .08rem;
  padding: .38rem .6rem;
  background: #58dce0;
  color: var(--blue);
  font-size: .92rem;
  line-height: 1;
  text-align: center;
  border-radius: 0;
}
.lipa-hero .btn strong {
  font-size: 1rem;
  font-weight: 800;
}
.lipa-hero .hero-visual,
.lipa-hero .hero-figure,
.lipa-hero .hero-figure img {
  position: relative;
  z-index: 1;
  min-height: 245px;
}
.lipa-hero .hero-figure img {
  object-position: center;
  opacity: .48;
}
@media (min-width: 901px) {
  .lipa-hero,
  .lipa-hero .hero-content,
  .lipa-hero .hero-visual,
  .lipa-hero .hero-figure,
  .lipa-hero .hero-figure img {
    height: 255px;
    min-height: 255px;
  }
  .lipa-hero .hero-content {
    padding-top: .55rem;
    padding-bottom: .65rem;
  }
  .lipa-hero h1 {
    margin-bottom: .4rem;
    font-size: 1.82rem;
  }
  .lipa-hero h1::after {
    margin-top: .4rem;
  }
  .lipa-hero p {
    margin-bottom: .55rem;
    font-size: .9rem;
  }
  .lipa-hero .btn {
    min-height: 46px;
  }
}
.lipa-detail-section {
  background: #fff;
  font-size: .95rem;
}
.lipa-detail-section h2 {
  margin: 0;
  color: var(--blue);
  font-size: 2.05rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}
.lipa-support {
  padding: 1.55rem 1.6rem 1.85rem;
  text-align: center;
}
.lipa-support h2 {
  margin-bottom: 1.25rem;
  font-size: 1.72rem;
}
.lipa-support p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.35;
}
.lipa-help {
  padding: 1.6rem 1.4rem 2.6rem;
  background: #eaf6fc;
  border-top: 1px solid #d7effb;
  border-bottom: 1px solid #d7effb;
}
.lipa-help h2 {
  position: relative;
  margin-bottom: .65rem;
}
.lipa-help h2::before,
.lipa-help h2::after,
.lipa-for h2::before,
.lipa-for h2::after {
  content: "";
  display: inline-block;
  width: 185px;
  height: 1px;
  margin: 0 1rem .55rem;
  background: #b5d9ed;
}
.lipa-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.2rem;
  max-width: 980px;
  margin: 0 auto;
}
.lipa-help-intro {
  max-width: 570px;
  margin: 0 auto 1.7rem;
  font-size: .95rem;
  line-height: 1.3;
  text-align: center;
}
.lipa-help-grid article {
  min-width: 0;
  text-align: center;
}
.lipa-icon {
  width: 118px;
  height: 118px;
  display: block;
  margin: 0 auto .8rem;
  border-radius: 50%;
  object-fit: contain;
}
.lipa-help-grid h3 {
  min-height: 2.35em;
  margin: 0 auto .4rem;
  color: #111;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 800;
}
.lipa-help-grid p {
  max-width: 180px;
  margin: 0 auto;
  font-size: .9rem;
  line-height: 1.22;
}
.lipa-works {
  padding: 1.75rem 1.5rem 2.5rem;
  background: #fff;
}
.lipa-works h2 {
  position: relative;
  margin-bottom: 2.3rem;
}
.lipa-works h2::before,
.lipa-works h2::after {
  content: "";
  display: inline-block;
  width: 185px;
  height: 1px;
  margin: 0 1rem .55rem;
  background: #b5d9ed;
}
.lipa-step-grid {
  max-width: 990px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}
.lipa-step-grid article {
  min-height: 205px;
  padding: 1.45rem 1.05rem 1.25rem;
  border-radius: 34px;
  background: #eef6ff;
  text-align: center;
}
.lipa-step-title {
  min-height: 58px;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  align-items: center;
  margin: 0 auto 1rem;
  color: var(--blue);
  text-align: left;
}
.lipa-step-title span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #58dce0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}
.lipa-step-title h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.25rem;
  line-height: 1.08;
  font-weight: 800;
}
.lipa-step-grid p {
  margin: 0 auto;
  max-width: 235px;
  color: var(--blue);
  font-size: .94rem;
  line-height: 1.28;
}
.lipa-for {
  padding: 1.45rem 1.6rem 1.9rem;
  background: #eaf6fc;
  border-top: 1px solid #d7effb;
  border-bottom: 1px solid #d7effb;
}
.lipa-for h2 {
  position: relative;
  margin-bottom: 1.55rem;
}
.lipa-for-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.lipa-for-copy p,
.lipa-for-copy li {
  font-size: .95rem;
  line-height: 1.35;
}
.lipa-no-cost {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.lipa-for-copy p {
  margin: 0 0 .85rem;
}
.lipa-for-copy ul {
  width: fit-content;
  margin: 0 0 .7rem 3.2rem;
  padding-left: 1.2rem;
}
.lipa-alone {
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: stretch;
  min-height: 328px;
  overflow: hidden;
  background: #fff;
}
.lipa-alone > div {
  display: grid;
  align-content: center;
  padding: 1.7rem 2rem;
}
.lipa-alone h2 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  text-align: center;
}
.lipa-alone h2::after {
  content: "";
  display: block;
  width: 220px;
  max-width: 100%;
  height: 2px;
  margin: .45rem auto 0;
  background: var(--blue);
}
.lipa-alone p {
  max-width: 620px;
  margin: 0 0 1rem;
  font-size: .95rem;
  line-height: 1.35;
  text-align: center;
}
.lipa-alone p:last-child {
  margin-bottom: 0;
}
.lipa-alone img {
  width: 108%;
  max-width: none;
  height: 100%;
  min-height: 328px;
  object-fit: cover;
  object-position: center;
}
.lipa-contact-band {
  padding: 1.55rem 1.6rem 1.7rem;
  background: #fff;
  text-align: center;
}
.lipa-contact-band h2 {
  margin-bottom: 1.6rem;
  font-size: 1.35rem;
}
.lipa-contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.lipa-contact-grid a {
  display: grid;
  gap: .08rem;
  min-height: 56px;
  align-content: center;
  padding: .45rem .8rem;
  background: #58dce0;
  color: var(--blue);
  font-size: .9rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0;
}
.lipa-contact-grid strong {
  font-size: .98rem;
  font-weight: 800;
}
.resource-bag-hero {
  min-height: 205px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: #fff;
  overflow: hidden;
}
.resource-bag-hero .hero-content {
  min-height: 205px;
  padding: 1.25rem 1.7rem 1rem;
  align-items: center;
  justify-content: center;
  background: #fff4df;
  color: #000;
  text-align: center;
}
.resource-bag-hero h1 {
  max-width: 550px;
  margin: 0 auto .5rem;
  color: #000;
  font-size: 2.08rem;
  line-height: 1.08;
  font-weight: 800;
}
.resource-bag-hero p {
  max-width: 470px;
  margin: 0 auto .8rem;
  color: #111;
  font-size: .86rem;
  line-height: 1.25;
  font-weight: 500;
}
.resource-bag-hero .button-row {
  width: min(500px, 92%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 0 auto;
}
.resource-bag-hero .btn {
  min-width: 0;
  min-height: 42px;
  display: grid;
  gap: .08rem;
  padding: .28rem .55rem;
  background: #5f78fb;
  color: #fff;
  font-size: .78rem;
  line-height: 1;
  text-align: center;
}
.resource-bag-hero .btn strong {
  font-size: .88rem;
  font-weight: 800;
}
.resource-bag-hero .hero-visual,
.resource-bag-hero .hero-figure,
.resource-bag-hero .hero-figure img {
  min-height: 205px;
}
.resource-bag-hero .hero-figure img {
  object-position: center;
}
.resource-bag-detail-section {
  background: #fff;
  color: #111;
}
.resource-bag-detail-section h2 {
  margin: 0;
  color: #111;
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}
.resource-conversation {
  padding: 1.2rem 1.7rem 1.25rem;
}
.resource-conversation h2 {
  margin-bottom: .8rem;
  text-align: left;
}
.resource-conversation p {
  max-width: 900px;
  margin: 0 0 .7rem;
  font-size: .82rem;
  line-height: 1.35;
}
.resource-support-band {
  padding: 1.15rem 2rem 1.2rem;
  background: linear-gradient(90deg, #ffe552 0%, #ff8141 100%);
  text-align: center;
}
.resource-support-band h2 {
  margin-bottom: .55rem;
}
.resource-support-band p {
  max-width: 900px;
  margin: 0 auto;
  font-size: .82rem;
  line-height: 1.34;
}
.resource-included {
  padding: 1.05rem 1.4rem 1.45rem;
  background: #fff;
  text-align: center;
}
.resource-included h2 {
  margin-bottom: 1.05rem;
}
.resource-item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 980px;
  margin: 0 auto;
}
.resource-item-grid article {
  min-height: 250px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: #fff4df;
  text-align: center;
}
.resource-item-grid img {
  width: 100%;
  height: 105px;
  display: block;
  object-fit: cover;
}
.resource-item-grid h3 {
  min-height: 44px;
  display: grid;
  align-items: center;
  margin: .55rem .45rem .35rem;
  color: #000;
  font-size: .82rem;
  line-height: 1.12;
  font-weight: 800;
}
.resource-item-grid p {
  margin: 0 .65rem .8rem;
  font-size: .68rem;
  line-height: 1.25;
}
.resource-family {
  padding: 1.3rem 1.7rem 1.35rem;
  background: #fff4df;
  text-align: center;
}
.resource-family h2,
.resource-request h2 {
  margin-bottom: .7rem;
}
.resource-family p,
.resource-request p {
  max-width: 890px;
  margin: 0 auto;
  font-size: .8rem;
  line-height: 1.35;
}
.resource-request {
  padding: 1.2rem 1.7rem 1.3rem;
  background: #fff;
  text-align: center;
}
.resource-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 560px;
  margin: 1rem auto 0;
}
.resource-contact-grid a {
  min-height: 43px;
  display: grid;
  align-content: center;
  gap: .08rem;
  padding: .3rem .7rem;
  background: #5f78fb;
  color: #fff;
  font-size: .72rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}
.resource-contact-grid strong {
  font-size: .78rem;
}
.resource-alone {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  min-height: 180px;
  background: linear-gradient(90deg, #ffe552 0%, #ff8241 100%);
}
.resource-alone img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center;
}
.resource-alone > div {
  display: grid;
  align-content: center;
  padding: 1rem 1.6rem;
  text-align: center;
}
.resource-alone h2 {
  max-width: 320px;
  margin: 0 auto .8rem;
  color: #000;
}
.resource-alone p {
  max-width: 520px;
  margin: 0 auto;
  font-size: .78rem;
  line-height: 1.35;
}
.resource-donate {
  padding: .9rem 1.5rem 1rem;
  background: #fff;
  text-align: center;
}
.resource-donate p {
  margin: 0 auto .55rem;
  font-size: .78rem;
  font-style: italic;
  line-height: 1.3;
}
.resource-donate .btn {
  min-width: 130px;
  min-height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-size: .86rem;
}

@media (min-width: 901px) {
  .resource-bag-hero {
    height: 263px;
    min-height: 263px;
    grid-template-columns: 58.3% 41.7%;
  }

  .resource-bag-hero .hero-content,
  .resource-bag-hero .hero-visual,
  .resource-bag-hero .hero-figure {
    height: 263px;
    min-height: 263px;
  }

  .resource-bag-hero .hero-content {
    justify-content: flex-start;
    padding: 1.25rem 0 1rem 2.5rem;
  }

  .resource-bag-hero h1 {
    max-width: 590px;
    margin: 0 auto 2rem;
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .resource-bag-hero p {
    max-width: 520px;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
    line-height: 1.35;
  }

  .resource-bag-hero .button-row {
    width: 100%;
    max-width: 578px;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.75rem;
    margin: 0;
  }

  .resource-bag-hero .btn {
    min-height: 72px;
    font-size: 1.125rem;
  }

  .resource-bag-hero .btn strong {
    font-size: 1.22rem;
  }

  .resource-bag-hero .hero-figure {
    overflow: visible;
  }

  .resource-bag-hero .hero-figure img {
    width: 110.5%;
    max-width: none;
    height: 267px;
    min-height: 267px;
    object-fit: cover;
    object-position: center;
  }

  .resource-conversation {
    min-height: 254px;
    padding: 2.2rem 2.9rem 2.1rem;
  }

  .resource-bag-detail-section h2 {
    font-size: 1.75rem;
  }

  .resource-conversation h2 {
    margin-bottom: 1.55rem;
  }

  .resource-conversation p {
    max-width: 760px;
    margin: 0 0 0.72rem;
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .resource-support-band {
    min-height: 165px;
    padding: 1.2rem 2rem 1.45rem;
  }

  .resource-support-band h2 {
    margin-bottom: 1rem;
  }

  .resource-support-band p {
    max-width: 790px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .resource-included {
    min-height: 551px;
    padding: 1.7rem 0.95rem 2rem;
  }

  .resource-included h2 {
    margin-bottom: 2.55rem;
  }

  .resource-item-grid {
    max-width: 1028px;
    gap: 1.8rem;
  }

  .resource-item-grid article {
    min-height: 366px;
    border-radius: 0 0 48px 48px;
  }

  .resource-item-grid img {
    height: 160px;
  }

  .resource-item-grid article:nth-child(2) img {
    object-position: center 26%;
  }

  .resource-item-grid article:nth-child(4) img {
    object-position: center 44%;
  }

  .resource-item-grid h3 {
    min-height: 58px;
    margin: 0.9rem 0.65rem 0.45rem;
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .resource-item-grid p {
    margin: 0 0.85rem 1rem;
    font-size: 1rem;
    line-height: 1.35;
  }

  .resource-family {
    min-height: 170px;
    padding: 1.75rem 1.7rem 0.95rem;
  }

  .resource-family h2,
  .resource-request h2 {
    margin-bottom: 1.15rem;
  }

  .resource-family p {
    max-width: 880px;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .resource-request {
    min-height: 288px;
    padding: 2.9rem 1.7rem 2.1rem;
  }

  .resource-request h2 {
    margin-bottom: 2.05rem;
  }

  .resource-request p {
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .resource-contact-grid {
    max-width: 650px;
    gap: 2.75rem;
    margin-top: 1.35rem;
  }

  .resource-contact-grid a {
    min-height: 60px;
    font-size: 1.05rem;
  }

  .resource-contact-grid strong {
    font-size: 1.1rem;
  }

  .resource-alone {
    height: 264px;
    min-height: 264px;
    grid-template-columns: 45% 55%;
  }

  .resource-alone img {
    min-height: 264px;
  }

  .resource-alone > div {
    align-content: start;
    padding: 3.9rem 1.8rem 1rem;
  }

  .resource-alone h2 {
    max-width: 420px;
    margin-bottom: 1.8rem;
    font-size: 1.7rem;
    line-height: 1.35;
  }

  .resource-alone p {
    max-width: 600px;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .resource-donate {
    min-height: 141px;
    padding: 2.7rem 1.5rem 1rem;
  }

  .resource-donate p {
    margin-bottom: 0.45rem;
    font-size: 1.125rem;
  }

  .resource-donate .btn {
    height: 40px;
    min-width: 240px;
    min-height: 40px;
    padding: 0 1rem;
    font-size: 1.35rem;
  }
}

.cto-hero {
  min-height: 195px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  background: linear-gradient(180deg, #003184 0%, #5f91f5 100%);
}
.cto-hero .hero-content {
  min-height: 195px;
  padding: 1.25rem 1.7rem 1rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.cto-hero h1 {
  max-width: 560px;
  margin: 0 auto .75rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
}
.cto-hero h1::after {
  content: "";
  display: block;
  width: min(390px, 82%);
  height: 2px;
  margin: .65rem auto 0;
  background: rgba(255, 255, 255, .48);
}
.cto-hero p {
  max-width: 545px;
  margin: 0 auto .85rem;
  color: #fff;
  font-size: .84rem;
  line-height: 1.3;
  font-weight: 500;
}
.cto-hero .button-row {
  margin: 0 auto;
  justify-content: center;
}
.cto-hero .btn {
  min-width: 150px;
  min-height: 30px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: .82rem;
}
.cto-hero .hero-visual,
.cto-hero .hero-figure,
.cto-hero .hero-figure img {
  min-height: 195px;
}
.cto-hero .hero-figure img {
  object-position: center;
}
.cto-detail-section {
  background: #fff;
  color: #111;
}
.cto-detail-section h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}
.cto-simple {
  padding: 1rem 1.7rem 1.1rem;
  text-align: center;
}
.cto-simple h2 {
  margin-bottom: .65rem;
}
.cto-simple p {
  max-width: 680px;
  margin: 0 auto;
  font-size: .82rem;
  line-height: 1.35;
}
.cto-nowrap {
  white-space: nowrap;
}
.cto-manage {
  padding: 1.05rem 1.4rem 1.2rem;
  background: #eaf6fc;
  text-align: center;
}
.cto-manage h2 {
  margin-bottom: 1rem;
}
.cto-manage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto .75rem;
}
.cto-manage-grid article {
  text-align: center;
}
.cto-manage-grid img {
  width: 82px;
  height: 82px;
  display: block;
  margin: 0 auto .45rem;
  object-fit: contain;
}
.cto-manage-grid h3 {
  margin: 0 auto;
  color: #111;
  font-size: .72rem;
  line-height: 1.12;
  font-weight: 800;
}
.cto-manage-grid h3 span {
  display: block;
}
.cto-manage p {
  margin: 0 auto;
  font-size: .74rem;
  line-height: 1.25;
}
.cto-created {
  padding: 1.2rem 1.7rem 1.1rem;
}
.cto-created h2 {
  max-width: 260px;
  margin-bottom: .65rem;
  text-align: left;
}
.cto-created p {
  max-width: 980px;
  margin: 0 0 .65rem;
  font-size: .92rem;
  line-height: 1.35;
}
.cto-clarity {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 210px;
}
.cto-clarity img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.cto-clarity > div {
  display: grid;
  align-content: center;
  padding: 1.1rem 1.7rem;
  background: linear-gradient(180deg, #8fb1ff 0%, #dce8ff 100%);
}
.cto-clarity h2 {
  margin-bottom: .7rem;
}
.cto-clarity p,
.cto-clarity li {
  font-size: .92rem;
  line-height: 1.28;
}
.cto-clarity p {
  margin: 0 0 .35rem;
  text-align: center;
}
.cto-clarity ul {
  width: fit-content;
  margin: 0 auto;
  padding-left: 1.2rem;
}
.cto-info-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 1.35rem 4rem;
  background: #fff;
}
.cto-info-panels article {
  min-height: 220px;
  padding: 1.25rem 1.3rem;
  background: #eaf6fc;
}
.cto-request-panel {
  scroll-margin-top: 2rem;
  outline: 5px solid transparent;
  outline-offset: 7px;
}
.cto-request-panel:target {
  animation: cto-request-highlight 2.8s ease-out;
}
.cto-request-panel a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@keyframes cto-request-highlight {
  0% {
    outline-color: transparent;
    box-shadow: 0 0 0 0 rgba(24, 128, 67, 0);
  }
  16%,
  58% {
    outline-color: rgba(24, 128, 67, .98);
    box-shadow:
      0 0 0 9px rgba(24, 128, 67, .3),
      0 0 0 18px rgba(90, 181, 112, .2);
  }
  100% {
    outline-color: transparent;
    box-shadow: 0 0 0 0 rgba(24, 128, 67, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cto-request-panel:target {
    animation: none;
    outline-color: #188043;
  }
}
.cto-info-panels h2 {
  margin-bottom: .7rem;
  color: #111;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cto-info-panels p,
.cto-info-panels li {
  font-size: .78rem;
  line-height: 1.32;
}
.cto-info-panels p {
  margin: 0 0 .6rem;
}
.cto-info-panels ul {
  margin: 0 0 .7rem;
  padding-left: 1.15rem;
}
.cto-more {
  padding: 1.1rem 1.7rem 1.45rem;
  text-align: center;
}
.cto-more h2 {
  margin-bottom: 1.2rem;
  font-size: 1.38rem;
}
.cto-more > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 880px;
  margin: 0 auto;
}
.cto-more a {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: .82rem;
  line-height: 1.05;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 901px) {
  .cto-hero {
    position: relative;
    height: 256px;
    min-height: 256px;
    grid-template-columns: 56.3% 43.7%;
    background: url("/assets/img/pdf/page-08-img-06.png") center / cover no-repeat;
  }

  .cto-hero .hero-content,
  .cto-hero .hero-visual,
  .cto-hero .hero-figure {
    height: 256px;
    min-height: 256px;
  }

  .cto-hero .hero-content {
    z-index: 2;
    justify-content: flex-start;
    padding: 35px 12px 12px;
  }

  .cto-hero h1 {
    max-width: 570px;
    margin: 0 auto 31px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    line-height: 40px;
    font-weight: 700;
  }

  .cto-hero h1::after {
    width: 432px;
    height: 4px;
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.5);
  }

  .cto-hero p {
    max-width: 568px;
    margin: 0 auto 19px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24.75px;
  }

  .cto-hero .button-row {
    margin: 0 auto;
  }

  .cto-hero .btn {
    min-width: 220px;
    min-height: 44px;
    padding: 0.35rem 1.2rem;
    background: #0055b8;
    color: #fff;
    font-size: 22px;
    line-height: 1;
  }

  .cto-hero .hero-visual,
  .cto-hero .hero-figure {
    position: relative;
    overflow: hidden;
  }

  .cto-hero .hero-figure img {
    position: absolute;
    top: -159px;
    left: -36.5%;
    width: 170.5%;
    max-width: none;
    height: auto;
    min-height: 0;
    object-fit: initial;
  }

  .cto-detail-section h2 {
    font-size: 28px;
    line-height: 32.2px;
  }

  .cto-simple {
    height: 179px;
    min-height: 179px;
    padding: 29px 32px 14px;
  }

  .cto-simple h2 {
    margin-bottom: 18px;
  }

  .cto-simple p {
    max-width: 650px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
  }

  .cto-manage {
    height: 358px;
    min-height: 358px;
    padding: 26px 32px 24px;
    background: #f0f7ff;
  }

  .cto-manage h2 {
    margin-bottom: 18.5px;
  }

  .cto-manage-grid {
    grid-template-columns: repeat(5, 112px);
    justify-content: space-between;
    gap: 0;
    max-width: 834px;
    margin: 0 auto 42px;
    transform: translateX(7px);
  }

  .cto-manage-grid img {
    width: 112px;
    height: 112px;
    margin-bottom: 28px;
  }

  .cto-manage-grid h3 {
    width: 170px;
    margin-left: 50%;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
    transform: translateX(-50%);
  }

  .cto-manage-grid article:first-child h3 {
    width: 180px;
  }

  .cto-manage-grid h3 span {
    display: block;
    white-space: nowrap;
  }

  .cto-manage p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
  }

  .cto-created {
    height: 372px;
    min-height: 372px;
    padding: 19.3px 42px 23.7px;
  }

  .cto-created h2 {
    max-width: 340px;
    margin-bottom: 11px;
    font-size: 24px;
    line-height: 33px;
  }

  .cto-created p {
    max-width: 900px;
    margin-bottom: 23.25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16.9px;
    line-height: 23.25px;
  }

  .cto-created p:last-child {
    margin-bottom: 0;
  }

  .cto-created p:nth-of-type(3) {
    max-width: 830px;
  }

  .cto-created p:nth-of-type(2) {
    max-width: 830px;
  }

  .cto-clarity {
    height: 298px;
    min-height: 298px;
    grid-template-columns: 46% 54%;
    overflow: hidden;
  }

  .cto-clarity img {
    height: 298px;
    min-height: 298px;
    object-fit: cover;
    object-position: right center;
  }

  .cto-clarity > div {
    align-content: start;
    padding: 35px 5px 20px;
    background: url("/assets/img/pdf/page-08-img-07.png") center / cover no-repeat;
  }

  .cto-clarity h2 {
    margin-bottom: 31px;
  }

  .cto-clarity p,
  .cto-clarity li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24.75px;
  }

  .cto-clarity p {
    margin-bottom: 0;
  }

  .cto-clarity ul {
    padding-left: 1.25rem;
    transform: translateX(-24px);
  }

  .cto-info-panels {
    height: 363px;
    min-height: 363px;
    grid-template-columns: repeat(2, 1fr);
    gap: 140px;
    padding: 34px 0 32px;
    max-width: none;
  }

  .cto-info-panels article {
    min-height: 297px;
    padding: 16px 18px;
    background: #e0edff;
  }

  .cto-info-panels article:first-child {
    margin-left: auto;
  }

  .cto-info-panels article:last-child {
    margin-right: auto;
  }

  .cto-info-panels article {
    width: 351px;
  }

  .cto-info-panels h2 {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 27.75px;
  }

  .cto-info-panels p,
  .cto-info-panels li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 19.5px;
  }

  .cto-info-panels p {
    margin: 0;
  }

  .cto-info-panels article > p:first-of-type {
    white-space: nowrap;
    font-size: 13.5px;
  }

  .cto-info-panels article:first-child p:first-of-type {
    margin-bottom: 19.5px;
  }

  .cto-info-panels article:first-child ul {
    margin: 0 0 19.5px;
    padding-left: 1.25rem;
  }

  .cto-info-panels article:nth-child(2) p:nth-of-type(1),
  .cto-info-panels article:nth-child(2) p:nth-of-type(2),
  .cto-info-panels article:nth-child(2) p:nth-of-type(5) {
    margin-bottom: 19.5px;
  }

  .cto-info-panels article:nth-child(2) h2 {
    margin-bottom: 7px;
  }

  .cto-more {
    height: 270px;
    min-height: 270px;
    padding: 35px 24px 30px;
  }

  .cto-more h2 {
    margin-bottom: 61px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    line-height: 42px;
  }

  .cto-more > div {
    gap: 92px;
    max-width: 843px;
  }

  .cto-more a {
    min-height: 55px;
    padding: 0.35rem 0.4rem;
    font-size: 17px;
    line-height: 21.25px;
  }
}

.volunteer-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 205px;
  background: #fff;
}
.volunteer-hero .hero-visual {
  grid-column: 1;
  grid-row: 1;
}
.volunteer-hero .hero-content {
  grid-column: 2;
  grid-row: 1;
  min-height: 205px;
  padding: 1.1rem 1.2rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #fff18b 0%, #ffca5b 46%, #ff8a45 100%);
  color: #111;
  text-align: center;
}
.volunteer-hero h1 {
  max-width: 500px;
  margin: 0 auto .55rem;
  color: #111;
  font-size: 1.65rem;
  line-height: 1.08;
  font-weight: 800;
}
.volunteer-hero p {
  max-width: 440px;
  margin: 0 auto .9rem;
  color: #111;
  font-size: .82rem;
  line-height: 1.25;
}
.volunteer-hero .button-row {
  justify-content: center;
  gap: .8rem;
}
.volunteer-hero .btn {
  min-width: 162px;
  min-height: 36px;
  display: grid;
  align-content: center;
  gap: .08rem;
  padding: .25rem .65rem;
  border-radius: 0;
  background: #5f7dff;
  color: #fff;
  font-size: .72rem;
  line-height: 1.05;
  box-shadow: none;
}
.volunteer-hero .btn strong {
  display: block;
  font-size: .82rem;
}
.volunteer-hero .hero-figure,
.volunteer-hero .hero-figure img {
  height: 100%;
  min-height: 205px;
}
.volunteer-hero .hero-figure img {
  object-position: center;
}
.volunteer-detail-section {
  background: #fff;
  color: #111;
}
.volunteer-detail-section h2 {
  margin: 0;
  color: #111;
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}
.volunteer-powered {
  display: grid;
  grid-template-columns: 1.55fr .78fr;
  gap: 1.35rem;
  padding: .95rem 1.5rem .9rem;
  background: #fffaf0;
  align-items: center;
}
.volunteer-powered h2 {
  margin-bottom: .35rem;
  text-align: left;
}
.volunteer-powered p {
  margin: 0 0 .55rem;
  font-size: .82rem;
  line-height: 1.38;
}
.volunteer-powered-intro {
  font-weight: 600;
}
.volunteer-powered img {
  width: 100%;
  max-height: 122px;
  object-fit: cover;
}
.volunteer-why,
.volunteer-quote {
  background: linear-gradient(90deg, #ffe65d 0%, #ffc44f 43%, #ff8944 100%);
}
.volunteer-why {
  padding: 1rem 1.4rem 1.25rem;
}
.volunteer-why h2 {
  margin-bottom: .8rem;
}
.volunteer-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 330px));
  justify-content: center;
  gap: .45rem 2.25rem;
}
.volunteer-why-grid article {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: .65rem;
}
.volunteer-why-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}
.volunteer-why-grid article:nth-child(1) {
  transform: translateX(-114px);
}
.volunteer-why-grid article:nth-child(2) {
  transform: translateX(-142px);
}
.volunteer-why-grid article:nth-child(3) {
  transform: translateX(-3px);
}
.volunteer-why-grid article:nth-child(4) {
  transform: translateX(55px);
}
.volunteer-why-grid p {
  margin: 0;
  max-width: 220px;
  color: #111;
  font-size: .82rem;
  line-height: 1.12;
  font-weight: 700;
}
.volunteer-why-grid article:nth-child(1) p {
  max-width: 175px;
}
.volunteer-why-grid article:nth-child(4) p {
  max-width: 246px;
}
.volunteer-ways {
  padding: .95rem 1.25rem .9rem;
  background: #fff;
}
.volunteer-ways h2 {
  margin-bottom: .8rem;
}
.volunteer-way-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.05rem;
}
.volunteer-way-grid article {
  min-height: 138px;
  padding: 1.05rem .75rem .85rem;
  border-radius: 18px;
  background: #fff0dc;
}
.volunteer-way-grid h3 {
  margin: 0 auto .55rem;
  color: #111;
  font-size: .76rem;
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}
.volunteer-way-grid ul {
  margin: 0;
  padding-left: .8rem;
}
.volunteer-way-grid li {
  margin-bottom: .18rem;
  font-size: .66rem;
  line-height: 1.25;
}
.volunteer-who {
  padding: .75rem 1.5rem .95rem;
  text-align: left;
}
.volunteer-who h2 {
  margin-bottom: .25rem;
  text-align: center;
}
.volunteer-who p,
.volunteer-who li {
  font-size: .76rem;
  line-height: 1.28;
}
.volunteer-who p {
  max-width: 520px;
  margin: 0 auto .2rem;
}
.volunteer-who ul {
  width: 310px;
  max-width: calc(100% - 2rem);
  margin: 0 auto .3rem;
  padding-left: 1rem;
  text-align: left;
}
.volunteer-quote {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 1.25rem;
  align-items: center;
  padding: .9rem 1.5rem;
}
.volunteer-quote blockquote {
  position: relative;
  margin: 0;
  padding: .2rem 1.75rem;
  border-left: 3px solid #111;
  font-style: italic;
}
.volunteer-quote blockquote::before,
.volunteer-quote blockquote::after {
  position: absolute;
  color: #111;
  font-size: 2.8rem;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
}
.volunteer-quote blockquote::before {
  content: open-quote;
  left: -1.15rem;
  top: -.35rem;
}
.volunteer-quote blockquote::after {
  content: close-quote;
  right: -.85rem;
  bottom: -.6rem;
}
.volunteer-quote p {
  margin: 0 0 .3rem;
  font-size: .84rem;
  line-height: 1.32;
}
.volunteer-quote cite {
  display: block;
  text-align: right;
  font-size: .7rem;
}
.volunteer-quote img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}
.volunteer-help {
  padding: .9rem 1.5rem .8rem;
  text-align: center;
}
.volunteer-help h2 {
  margin-bottom: .55rem;
}
.volunteer-help p {
  max-width: 760px;
  margin: 0 auto;
  font-size: .78rem;
  line-height: 1.36;
}
.volunteer-cta {
  max-width: 540px;
  margin: .55rem auto 1.05rem;
  padding: 1.25rem 1.35rem 1.15rem;
  border-radius: 8px;
  background: #fff0dc;
  text-align: center;
}
.volunteer-cta h2 {
  margin-bottom: .7rem;
  font-size: 1.12rem;
}
.volunteer-cta p {
  margin: 0 0 .75rem;
  font-size: .76rem;
  line-height: 1.34;
}
.volunteer-cta p:last-child {
  margin-bottom: 0;
}
.volunteer-cta a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.speakers-hero {
  display: block;
  min-height: 200px;
  background: linear-gradient(180deg, #062378 0%, #5f91f5 100%);
}
.speakers-hero .hero-content {
  min-height: 200px;
  padding: 1.35rem 1.5rem 1.25rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.speakers-hero h1 {
  margin: 0 0 1.35rem;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.05;
  font-weight: 800;
}
.speakers-hero p {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.28;
  font-weight: 400;
}
.speakers-hero .hero-visual {
  display: none;
}
.speakers-detail-section {
  padding: 1.75rem 2.8rem 7.1rem;
  background: #fff;
  color: #111;
}
.speaker-year {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 2.2rem;
  align-items: start;
  margin-bottom: 2.1rem;
}
.speaker-year:last-child {
  margin-bottom: 0;
}
.speakers-detail-section h2 {
  margin: 0 0 1rem;
  color: #111;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.speakers-detail-section ul {
  margin: 0;
  padding-left: 1.35rem;
}
.speakers-detail-section li {
  margin-bottom: .18rem;
  font-size: .76rem;
  line-height: 1.15;
}
.speaker-photo-stack {
  display: grid;
  gap: 2.2rem;
  margin-top: 1.75rem;
}
.speaker-photo-stack img {
  width: 100%;
  max-width: 370px;
  display: block;
  object-fit: cover;
}
.speaker-year:nth-child(1) .speaker-photo-stack img {
  height: 260px;
  object-position: center 38%;
}
.speaker-year:nth-child(2) .speaker-photo-stack img {
  height: 230px;
  object-position: center;
}
.speaker-year:nth-child(3) .speaker-photo-stack img:first-child {
  height: 190px;
  object-position: center;
}
.speaker-year:nth-child(3) .speaker-photo-stack img:last-child {
  height: 205px;
  object-position: center;
}
.page-driving .site-title {
  min-height: 62px;
  padding: 0;
  font-size: 35px;
  line-height: 1.15;
}
.page-driving .nav-wrap {
  min-height: 74px;
  z-index: 20;
}
.page-driving .brand {
  top: -16px;
}
.page-driving .site-nav {
  gap: 16.7px;
  transform: translateY(-9px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}
.page-driving .site-nav .donate-link {
  width: 162px;
  min-width: 162px;
  height: 41px;
  min-height: 41px;
  background: center / 100% 100% no-repeat url('/assets/img/pdf/page-01-img-02.png');
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  box-shadow: none;
}
.page-driving main,
.page-driving .site-footer {
  font-family: Arial, Helvetica, sans-serif;
}
.driving-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  min-height: 245px;
  height: 245px;
  margin-bottom: 88px;
  overflow: visible;
  background: #fff;
}
.driving-hero .hero-content {
  min-height: 245px;
  height: 245px;
  padding: 14px 30px;
  align-items: center;
  justify-content: flex-start;
  background: #8b4ff0;
  color: #fff;
  text-align: center;
}
.driving-hero h1 {
  margin: -1px 0 28px;
  color: #fff;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}
.driving-hero p {
  max-width: 630px;
  margin: 0 auto 36px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.driving-hero .hero-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 22px;
}
.driving-hero .hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.driving-hero .hero-meta span + span {
  border-left: 2px solid rgba(255,255,255,.9);
  padding-left: 10px;
}
.driving-hero .hero-meta span:first-child::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' fill='%23fff'/%3E%3Crect x='3' y='5' width='18' height='5' rx='2' fill='%23e23a3a'/%3E%3Cpath d='M7 3v4M17 3v4M6 13h12M6 17h8' stroke='%23222' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.driving-hero .hero-meta span:nth-child(2)::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e23a3a' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7zm0 9.6a2.6 2.6 0 1 1 0-5.2 2.6 2.6 0 0 1 0 5.2z'/%3E%3C/svg%3E");
}
.driving-hero .hero-meta span:nth-child(3)::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='13' r='7' fill='%23fff' stroke='%23e23a3a' stroke-width='2'/%3E%3Cpath d='M12 9v4l3 2' fill='none' stroke='%23222' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M7 3 4 6M17 3l3 3' stroke='%23e23a3a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.driving-hero .hero-visual {
  display: grid;
  place-items: center;
  min-height: 245px;
  height: 245px;
  overflow: visible;
  background: #fff;
}
.driving-hero .hero-figure,
.driving-hero .hero-figure img {
  width: 219px;
  height: 219px;
  min-height: 0;
}
.driving-hero .hero-figure {
  transform: translateY(-11px);
}
.driving-hero .hero-figure img {
  object-fit: contain;
}
.driving-hero .button-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -88px;
  height: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 74px;
  margin: 0;
  padding: 8px 35px 10px;
  background: #fff;
}
.driving-hero .paypal-donate-form {
  display: grid;
}
.driving-hero .paypal-donate-form .btn {
  width: 100%;
}
.driving-hero .btn,
.driving-detail-section .btn {
  min-width: 0;
  min-height: 64px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffcc16;
  color: #8b4ff0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 27px;
  font-weight: 800;
  box-shadow: none;
}
.driving-detail-section {
  background: #fff;
  color: #111;
}
.driving-detail-section h2 {
  margin: 0;
  color: #111;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
  text-align: center;
}
.driving-intro {
  height: 575px;
  min-height: 575px;
  padding: 17px 28px 14px;
  text-align: center;
}
.driving-intro h2 {
  margin-bottom: 13px;
}
.driving-intro p {
  max-width: 1000px;
  margin: 0 auto 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 21px;
}
.driving-intro p:last-of-type {
  margin-bottom: 5px;
}
.driving-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 697px;
  max-width: 100%;
  margin: -3px auto 0;
}
.driving-photo-grid img {
  width: 100%;
  height: 229px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.driving-photo-grid img:first-child {
  grid-column: 1 / span 2;
  height: 154px;
  object-position: center 42%;
}
.driving-event-grid {
  display: grid;
  grid-template-columns: 518px minmax(0, 1fr);
  grid-template-rows: 225px 298px;
  column-gap: 27px;
  height: 523px;
  min-height: 523px;
  margin-top: -23px;
  padding: 0 22px;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, #fff 56%, #fffaf0 100%);
}
.driving-happening {
  height: 218px;
  margin-top: 4px;
  padding: 14px 20px 10px 31px;
  border-radius: 46px;
  background: #ffcc16;
}
.driving-happening h2,
.driving-matters h2,
.driving-schedule h2,
.driving-show h2,
.driving-super h2,
.driving-yellow-band h2 {
  margin-bottom: 9px;
  text-align: left;
}
.driving-happening h2 {
  font-size: 20px;
  line-height: 25px;
}
.driving-happening li,
.driving-matters li,
.driving-show li,
.driving-super li,
.driving-yellow-band li {
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 21px;
}
.driving-happening ul {
  margin: 0;
  padding-left: 19px;
}
.driving-matters {
  padding: 8px 0 0 44px;
}
.driving-matters ul,
.driving-show ul,
.driving-super ul,
.driving-yellow-band ul {
  margin: 0 0 17px;
  padding-left: 18px;
}
.driving-matters h2 {
  margin-left: -44px;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
}
.driving-matters strong {
  font-size: 18px;
}
.driving-matters p,
.driving-show p,
.driving-super p,
.driving-yellow-band p,
.driving-challenge p {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}
.driving-schedule {
  padding: 31px 0 0 23px;
}
.driving-schedule h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 34px;
  text-align: left;
}
.driving-schedule p {
  max-width: 440px;
  margin: 0 0 0 -8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 25px;
}
.driving-show {
  padding: 33px 0 0 44px;
}
.driving-show h2 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}
.driving-show p {
  max-width: 405px;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 20px;
}
.driving-show li {
  font-size: 18px;
  line-height: 25px;
}
.driving-show .btn {
  position: relative;
  left: 70px;
  width: fit-content;
  min-width: 232px;
  min-height: 48px;
  margin: 13px auto 0;
  font-size: 22px;
  line-height: 28px;
}
.driving-activity-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 340px;
  min-height: 340px;
  padding: 23px 8px 17px;
  background: #8b4ff0;
}
.driving-pickleball-wrap {
  padding-right: 19px;
  border-right: 3px solid #ffcc16;
}
.driving-pickleball {
  height: 299px;
  padding: 0 15px 11px;
  border-radius: 46px;
  background: #ffcc16;
  text-align: center;
}
.driving-picklr-wordmark {
  width: 119px;
  height: 62px;
  display: block;
  margin: 0 auto 6px;
  object-fit: contain;
}
.driving-pickleball h2 {
  margin-bottom: 1px;
  font-size: 32px;
  line-height: 39px;
}
.driving-pickleball p {
  max-width: 490px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
}
.driving-pickleball .driving-pickleball-lead {
  margin-top: 4px;
  margin-bottom: 2px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 25px;
  font-weight: 800;
}
.driving-pickleball .driving-pickleball-call {
  margin-top: 32px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.driving-pickleball-call a {
  text-decoration: none;
}
.driving-mammography {
  display: grid;
  grid-template-columns: 231px minmax(0, 1fr);
  gap: 17px;
  padding: 0 30px 0 39px;
}
.driving-mammography-flyer,
.driving-mammography-flyer img {
  width: 231px;
  height: 298px;
  display: block;
}
.driving-mammography-flyer img {
  object-fit: contain;
}
.driving-mammography-copy {
  padding-top: 27px;
  color: #fff;
  text-align: center;
}
.driving-mammography-copy p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 23px;
}
.driving-mammography-copy p:nth-child(3) {
  color: #ffcc16;
}
.driving-mammography-buttons {
  display: grid;
  gap: 26px;
  margin-top: 38px;
  justify-items: center;
}
.driving-mammography-buttons .btn {
  width: 164px;
  min-height: 49px;
  font-size: 22px;
  line-height: 29px;
}
.driving-supporters {
  height: auto;
  min-height: 0;
  padding: 14px 28px 24px;
  background: #fff;
}
.driving-supporters h2 {
  margin: 0 0 18px;
  padding: 0;
  font-size: 34px;
  line-height: 41px;
}
.driving-supporter-logos {
  display: grid;
  gap: 24px;
}
.driving-supporter-row {
  display: grid;
  align-items: stretch;
}
.driving-supporter-row-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 26px 38px;
}
.driving-supporter-row-bottom {
  grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
  width: min(100%, 850px);
  min-height: 95px;
  gap: 32px;
  align-items: center;
  margin: 0 auto;
}
.driving-supporter-row-bottom .driving-supporter-cell {
  height: 95px;
}
.driving-individual-sponsors {
  display: grid;
  gap: 9px;
  align-content: center;
  color: #111;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.driving-individual-sponsors-left {
  text-align: right;
}
.driving-individual-sponsors-right {
  text-align: left;
}
.driving-supporter-cell {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.driving-supporter-logo {
  position: absolute;
  inset: 6px;
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: contain;
  object-position: center;
}
.driving-supporter-logo.supporter-picklr,
.driving-supporter-logo.supporter-bosque,
.driving-supporter-logo.supporter-rebel {
  object-fit: cover;
}
.driving-supporter-cell.picklr,
.driving-supporter-cell.rebel {
  background: #000;
}
.driving-supporter-logo.supporter-picklr,
.driving-supporter-logo.supporter-rebel {
  inset: 0;
  width: 100%;
  height: 100%;
}
.driving-supporter-logo.supporter-bosque {
  object-position: center top;
}
.driving-yellow-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  min-height: 0;
  align-items: stretch;
  gap: 0;
  padding: 8px 6px 20px;
  background: #ffcc16;
}
.driving-super {
  margin-right: 24px;
  padding: 5px 49px 10px;
  border-radius: 46px;
  background: #8b4ff0;
  color: #fff;
}
.driving-super h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}
.driving-super p,
.driving-super li {
  font-size: 15px;
  line-height: 21px;
}
.driving-super p {
  margin-bottom: 16px;
}
.driving-super ul {
  margin: -1px 0 16px;
  padding-left: 25px;
}
.driving-super .btn {
  position: relative;
  left: -13px;
  width: fit-content;
  min-width: 224px;
  min-height: 48px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 29px;
}
.driving-super .paypal-donate-form {
  display: grid;
  justify-items: center;
}
.driving-partner {
  padding: 0 20px 8px 31px;
  border-left: 3px solid #111;
}
.driving-partner h2 {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
}
.driving-partner p,
.driving-partner li {
  font-size: 14px;
  line-height: 19px;
}
.driving-partner p {
  margin-bottom: 2px;
}
.driving-partner ul {
  margin: 7px 0 16px;
  padding-left: 50px;
}
.driving-yellow-band .driving-partner .btn {
  position: relative;
  left: 26px;
  top: 7px;
  width: fit-content;
  min-width: 394px;
  min-height: 48px;
  margin: 0 auto;
  background: #8b4ff0;
  color: #ffcc16;
  font-size: 22px;
  line-height: 29px;
}
.driving-challenge {
  height: 284px;
  min-height: 284px;
  padding: 25px 28px 0;
  text-align: center;
}
.driving-challenge h2 {
  margin-bottom: 17px;
  font-size: 36px;
  line-height: 43px;
}
.challenge-teams {
  display: grid;
  gap: 0;
  width: fit-content;
  margin: 11px auto 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 21px;
}
.challenge-teams strong {
  font-size: 16px;
}
.driving-challenge p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
}
.driving-challenge .challenge-teams + p {
  margin-bottom: 19px;
}
.page-driving .site-footer,
.page-driving .footer-grid {
  min-height: 173px;
}
.page-driving .footer-contact { top: 28px; }
.page-driving .footer-logo { top: 30px; }
.page-driving .site-footer ul { top: 21px; }
.page-driving .site-footer ul li:last-child { display: none; }
.page-driving .social-links { top: 119px; }
.driving-registration-hero {
  grid-template-columns: minmax(0, 1fr) 270px;
  min-height: 270px;
  height: auto;
  margin-bottom: 0;
  overflow: hidden;
}
.driving-registration-hero .hero-content,
.driving-registration-hero .hero-visual {
  min-height: 270px;
  height: auto;
}
.driving-registration-hero .hero-content {
  justify-content: center;
  padding: 1.6rem 2.1rem;
}
.driving-registration-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.2vw, 2.8rem);
  line-height: 1.08;
}
.driving-registration-hero p {
  margin: 0 auto 1.15rem;
  font-size: 1.05rem;
  line-height: 1.4;
}
.driving-registration-hero .hero-meta {
  flex-wrap: wrap;
}
.driving-registration-hero .hero-visual {
  padding: 1rem;
  overflow: hidden;
}
.driving-registration-hero .hero-figure {
  transform: none;
}
.driving-registration-section {
  padding: 2rem 1.8rem 2.6rem;
  background: linear-gradient(180deg, #fff 0%, #fffdf2 100%);
}
.driving-registration-intro {
  max-width: 780px;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.driving-registration-intro h2 {
  margin: .75rem 0 .55rem;
  color: #111;
  font-size: 2.35rem;
  line-height: 1.08;
}
.driving-registration-intro p {
  margin: 0;
}
.registration-back-link {
  color: #6331c9;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.registration-message {
  max-width: 850px;
  margin: 0 auto 1.25rem;
  padding: .85rem 1rem;
  border: 2px solid #9a6200;
  border-radius: 12px;
  background: #fff5cc;
  font-weight: 700;
}
.registration-message.success {
  border-color: #247443;
  background: #e8f8ee;
  color: #174d2d;
}
.registration-payment-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 1.4rem;
  border: 2px solid #8b4ff0;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}
.registration-payment-card p {
  margin: 0 0 1rem;
  font-weight: 700;
}
.driving-registration-form {
  max-width: 850px;
  margin: 0 auto;
}
.driving-registration-form fieldset {
  margin: 0 0 1.2rem;
  padding: 1.2rem 1.25rem 1.35rem;
  border: 2px solid #8b4ff0;
  border-radius: 20px;
  background: #fff;
}
.driving-registration-form legend {
  padding: 0 .55rem;
  color: #6331c9;
  font-size: 1.45rem;
  font-weight: 800;
}
.registration-fields {
  display: grid;
  gap: .85rem 1rem;
}
.registration-fields.two-column {
  grid-template-columns: 1fr 1fr;
}
.registration-fields.four-column {
  grid-template-columns: repeat(4, 1fr);
}
.registration-fields.state-zip {
  grid-template-columns: 110px 1fr;
}
.registration-fields .full-width {
  grid-column: 1 / -1;
}
.registration-fields label {
  display: grid;
  align-content: start;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 700;
}
.registration-fields input,
.registration-fields textarea,
.registration-fields select {
  width: 100%;
  min-height: 44px;
  padding: .65rem .7rem;
  border: 1px solid #8c8c8c;
  border-radius: 7px;
  background: #fff;
  color: #111;
  font: inherit;
}
.registration-fields textarea {
  min-height: 120px;
  resize: vertical;
}
.registration-fields input:focus,
.registration-fields textarea:focus,
.registration-fields select:focus {
  outline: 3px solid rgba(139, 79, 240, .24);
  border-color: #6331c9;
}
.registration-fields .has-error input,
.registration-fields .has-error textarea,
.registration-fields .has-error select,
.registration-check.has-error {
  border-color: #ad1d1d;
}
.driving-registration-form small {
  display: block;
  color: #ad1d1d;
  font-size: .76rem;
  font-weight: 700;
}
.registration-agreements {
  display: grid;
  gap: .7rem;
  margin: .2rem 0 1.25rem;
}
.registration-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .7rem;
  padding: .9rem 1rem;
  border: 1px solid #d8c5ff;
  border-radius: 12px;
  background: #fbf9ff;
  font-size: .82rem;
  line-height: 1.4;
}
.registration-check input {
  width: 18px;
  height: 18px;
  margin: .15rem 0 0;
  accent-color: #6331c9;
}
.registration-check a {
  color: #6331c9;
  font-weight: 800;
}
.registration-submit {
  display: flex;
  width: fit-content;
  min-width: 240px;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffcc16;
  color: #6331c9;
  cursor: pointer;
}
.registration-payment {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffcc16;
  color: #6331c9;
  text-align: center;
}
.registration-honeypot {
  position: absolute;
  left: -9999px;
}
.leadership-hero {
  min-height: 225px;
  display: block;
  background: linear-gradient(180deg, #76a2ff 0%, #dce8ff 72%, #f9fbff 100%);
}
.leadership-hero .hero-content {
  min-height: 225px;
  padding: 1.1rem 1rem 1.25rem;
  align-items: center;
  text-align: center;
  color: #111;
}
.leadership-hero h1 {
  max-width: 430px;
  margin: 0 auto .9rem;
  color: #111;
  font-size: 2.25rem;
  line-height: 1.08;
  font-weight: 800;
}
.leadership-hero p {
  max-width: 460px;
  margin: 0 auto;
  color: #111;
  font-size: 1.08rem;
  line-height: 1.35;
}
.leadership-detail-section {
  background: #fff;
  color: #111;
}
.leadership-detail-section h2 {
  margin: 0 0 .75rem;
  color: #111;
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}
.leadership-guided {
  min-height: 270px;
  padding: 1.45rem 2.1rem 1.6rem;
}
.leadership-guided h2 {
  text-align: left;
  font-size: 1.22rem;
}
.leadership-guided p {
  margin: 0 0 .9rem;
  font-size: 1rem;
  line-height: 1.4;
}
.leadership-board {
  padding: 1.15rem 1.6rem 1.2rem;
  background: #dcecff;
  text-align: center;
}
.leadership-board > p,
.leadership-staff > p,
.leadership-medical > p {
  max-width: 820px;
  margin: 0 auto 1.05rem;
  font-size: .95rem;
  line-height: 1.35;
  text-align: center;
}
.leadership-people-row {
  display: grid;
  gap: .75rem;
  margin: 0 auto;
}
.leadership-directors {
  grid-template-columns: repeat(5, 1fr);
}
.leadership-staff-row {
  grid-template-columns: repeat(2, 150px);
  justify-content: center;
}
.leadership-person {
  min-width: 0;
  text-align: center;
}
.leadership-person img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.leadership-directors .leadership-person img {
  height: 165px;
}
.leadership-staff-row .leadership-person img {
  height: 110px;
}
.leadership-person h3 {
  margin: .45rem 0 .1rem;
  color: #111;
  font-size: .9rem;
  line-height: 1.15;
  font-weight: 500;
}
.leadership-person p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.2;
}
.leadership-staff {
  padding: 1.1rem 1.7rem 1rem;
  background: #0057b8;
  color: #fff;
  text-align: center;
}
.leadership-staff h2,
.leadership-staff p,
.leadership-staff h3 {
  color: #fff;
}
.leadership-staff .leadership-person p {
  color: #fff;
}
.leadership-staff-closing {
  margin-top: 1rem !important;
  font-size: .82rem !important;
}
.leadership-medical {
  min-height: 580px;
  padding: 1.55rem 2rem 1.7rem;
  background: linear-gradient(180deg, #e7f1ff 0%, #fff 40%);
}
.leadership-medical ul {
  max-width: 900px;
  margin: .35rem auto 0;
  padding-left: 1.25rem;
}
.leadership-medical li {
  margin-bottom: .38rem;
  font-size: 1rem;
  line-height: 1.25;
}
.leadership-medical li::marker {
  color: #111;
}
.leadership-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  padding: 1.2rem 6.5rem 1.65rem;
  background: #fff;
}
.leadership-cta {
  padding: 1.4rem 1.65rem 1.2rem;
  text-align: center;
}
.leadership-cta h2 {
  font-size: 1.25rem;
}
.leadership-cta p {
  margin: 0 0 .95rem;
  font-size: .9rem;
  line-height: 1.35;
  text-align: left;
}
.leadership-cta .btn {
  min-width: 145px;
  min-height: 34px;
  margin: .4rem auto 0;
  font-size: .82rem;
}
.leadership-cta-light {
  background: #fff;
}
.leadership-cta-light .btn {
  background: #9ec3ff;
  color: #fff;
}
.leadership-cta-blue {
  background: #0057b8;
  color: #fff;
}
.leadership-cta-blue h2,
.leadership-cta-blue p {
  color: #fff;
}
.leadership-cta-blue .btn {
  background: #ffcc16;
  color: #0057b8;
}
.contact-hero {
  display: block;
  min-height: 280px;
  background:
    linear-gradient(rgba(255,255,255,.58), rgba(255,255,255,.72)),
    center 38% / cover no-repeat url('/assets/img/pdf/page-16-img-04.jpeg');
}
.contact-hero .hero-content {
  min-height: 280px;
  padding: 2.3rem 1rem 2rem;
  align-items: center;
  text-align: center;
  color: #111;
}
.contact-hero .hero-visual {
  display: none;
}
.contact-hero h1 {
  margin: 0 0 1.05rem;
  color: #111;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}
.contact-hero p {
  max-width: 520px;
  margin: 0 auto;
  color: #111;
  font-size: 1.35rem;
  line-height: 1.28;
}
.contact-detail-section {
  background: #fff;
  color: #111;
}
.lined-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.2rem;
  color: #111;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}
.lined-heading::before,
.lined-heading::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #111;
}
.contact-help {
  min-height: 460px;
  padding: 1.35rem 2.2rem 1.2rem;
}
.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.05rem 4.6rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-help-grid article {
  min-height: 132px;
  padding: 1rem 1.15rem;
  border-radius: 8px;
  background: #ffdf4f;
}
.contact-help-grid article:nth-child(2),
.contact-help-grid article:nth-child(4) {
  background: linear-gradient(100deg, #ffdf4f, #ff8237);
}
.contact-help-grid h3 {
  margin: 0 0 .65rem;
  color: #111;
  font-size: .95rem;
  line-height: 1.18;
  font-weight: 800;
}
.contact-help-grid p {
  margin: .1rem 0;
  font-size: .92rem;
  line-height: 1.25;
}
.contact-help-grid .btn {
  min-width: 130px;
  min-height: 30px;
  margin: .55rem auto 0;
  border-radius: 999px;
  background: #ff8a30;
  color: #111;
  font-size: .75rem;
}
.contact-statewide {
  max-width: 770px;
  margin: 1.1rem auto 0;
  font-size: .82rem;
  line-height: 1.35;
  text-align: center;
}
.contact-form-wrap {
  min-height: 775px;
  padding: 1.05rem 2rem 1.25rem;
}
.contact-form {
  min-height: 560px;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.05rem 1.4rem 1.2rem;
  border: 2px solid #111;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffe790, #ffe39d 70%, #ffd977);
}
.contact-form h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 800;
}
.form-field {
  margin-bottom: 1rem;
}
.form-field label {
  display: block;
  margin-bottom: .25rem;
  font-size: .76rem;
  font-weight: 800;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.28);
  border-radius: 2px;
  background: rgba(255,255,255,.28);
  color: #111;
  font: inherit;
  font-size: .95rem;
}
.form-field input {
  min-height: 40px;
  padding: .25rem .45rem;
}
.form-field textarea {
  min-height: 120px;
  padding: .45rem;
  resize: vertical;
}
.contact-form button,
.contact-subscribe-box button {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #ff8a30;
  color: #111;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
}
.robot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-alert {
  margin: 0 0 .9rem;
  padding: .65rem .8rem;
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 700;
}
.form-alert-success {
  background: #d9f7df;
  color: #124d1f;
}
.form-alert-error {
  background: #ffe0df;
  color: #8a1b13;
}
.has-error input,
.has-error textarea {
  border-color: #b71717;
  background: #fff8f7;
}
.field-error {
  margin: .2rem 0 0;
  color: #8a1b13;
  font-size: .72rem;
  font-weight: 700;
}
.contact-response-note {
  margin: .85rem auto 0;
  max-width: 760px;
  font-size: .85rem;
  text-align: center;
}
.contact-subscribe {
  min-height: 350px;
  padding: 1rem 2rem 1.6rem;
}
.contact-subscribe-box {
  max-width: 430px;
  margin: 0 auto;
  min-height: 220px;
  padding: 1.55rem 1.4rem 1.35rem;
  border-radius: 8px;
  background: #fff1b7;
  box-shadow: 0 0 0 1px rgba(0,0,0,.14);
}
.contact-subscribe-box label {
  display: block;
  margin-bottom: .85rem;
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 800;
}
.contact-subscribe-box input {
  width: 100%;
  min-height: 34px;
  margin-bottom: .75rem;
  border: 1px solid rgba(0,0,0,.3);
  border-radius: 4px;
  background: #fff;
  font: inherit;
}
.contact-subscribe-box button {
  background: #ffdf4f;
  color: #111;
}
.contact-subscribe-box p {
  margin: .55rem 0 0;
  color: rgba(0,0,0,.58);
  font-size: .62rem;
  text-align: center;
}
.contact-help-footer {
  min-height: 205px;
  padding: 1.35rem 1rem 2.25rem;
  text-align: center;
}
.contact-help-footer h2 {
  margin: 0 0 .8rem;
  color: #111;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 800;
}
.contact-help-footer p {
  max-width: 620px;
  margin: 0 auto;
  font-size: .95rem;
  line-height: 1.35;
}
.foundation-hero {
  display: block;
  min-height: 350px;
  background:
    linear-gradient(rgba(255,255,255,.28), rgba(255,255,255,.32)),
    center 54% / cover no-repeat url('/assets/img/pdf/page-17-img-11.png');
}
.foundation-hero .hero-content {
  min-height: 350px;
  padding: 2.2rem 1rem 1.85rem;
  align-items: center;
  text-align: center;
}
.foundation-hero .hero-visual {
  display: none;
}
.foundation-hero h1 {
  margin: 0 0 1.4rem;
  color: #111;
  font-size: 2.6rem;
  line-height: 1.08;
  font-weight: 800;
}
.foundation-hero p {
  max-width: 820px;
  margin: 0 auto;
  padding: .2rem .35rem;
  color: #111;
  background: rgba(255,241,67,.65);
  font-size: 1.25rem;
  line-height: 1.25;
}
.foundation-detail-section {
  background: #fff;
  color: #111;
}
.foundation-detail-section h2 {
  margin: 0 0 .75rem;
  color: #111;
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}
.foundation-intro,
.foundation-why,
.foundation-steward,
.foundation-sustain {
  padding: 1.05rem 1.9rem 1.15rem;
  text-align: center;
}
.foundation-intro {
  min-height: 305px;
  display: grid;
  align-content: center;
}
.foundation-intro p,
.foundation-why p,
.foundation-steward p,
.foundation-sustain p {
  max-width: 1040px;
  margin: 0 auto .9rem;
  font-size: 1rem;
  line-height: 1.36;
}
.foundation-why,
.foundation-steward {
  background: #fff8dc;
}
.foundation-support {
  min-height: 520px;
  padding: 1.2rem 1.6rem 1.5rem;
}
.foundation-support .lined-heading,
.foundation-board .lined-heading {
  max-width: 100%;
  margin-bottom: .9rem;
}
.foundation-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.foundation-support-grid article {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .9rem 1rem 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffdf4f, #fff0a1);
  text-align: center;
}
.foundation-support-grid h3 {
  min-height: 48px;
  margin: 0 0 .75rem;
  color: #0057b8;
  font-size: 1.16rem;
  line-height: 1.05;
  font-weight: 800;
}
.foundation-support-image {
  display: block;
  width: 172px;
  height: 92px;
  margin: 0 auto .75rem;
  object-fit: cover;
  object-position: center;
}
.foundation-support-grid article:first-child .foundation-support-image {
  width: 184px;
  object-fit: contain;
}
.foundation-support-grid p {
  margin: 0 0 .85rem;
  font-size: .9rem;
  line-height: 1.28;
}
.foundation-support-grid .btn,
.foundation-sustain .btn {
  min-width: 140px;
  min-height: 34px;
  margin-top: auto;
  border-radius: 999px;
  background: #0057b8;
  color: #fff;
  font-size: .82rem;
}
.foundation-board {
  padding: .45rem 1.5rem .65rem;
  background: #fff8dc;
  text-align: center;
}
.foundation-board > p {
  max-width: 900px;
  margin: 0 auto .55rem;
  font-size: .92rem;
  line-height: 1.35;
}
.foundation-board-grid {
  display: grid;
  grid-template-columns: repeat(4, 128px);
  justify-content: center;
  gap: .5rem 1.55rem;
}
.foundation-board-grid article {
  min-width: 0;
  text-align: center;
}
.foundation-board-grid img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  margin: 0 auto .35rem;
}
.foundation-board-grid h3 {
  margin: 0;
  color: #111;
  font-size: .78rem;
  line-height: 1.15;
  font-weight: 500;
}
.foundation-board-grid p {
  margin: .05rem 0 0;
  font-size: .7rem;
  line-height: 1.12;
}
.foundation-steward {
  min-height: 160px;
  padding-top: 1.1rem;
  padding-bottom: 1rem;
}
.foundation-sustain {
  padding-top: .3rem;
  padding-bottom: .5rem;
}
.foundation-sustain p { margin-bottom: .3rem; }
.foundation-sustain .btn {
  min-width: 250px;
  min-height: 42px;
  margin-top: .2rem;
  background: #ffcc16;
  color: #0057b8;
  font-size: 1.1rem;
}
.paypal-donate-form {
  margin: 0;
}
.paypal-donate-form button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.donate-hero {
  min-height: 280px;
  position: relative;
  display: block;
  background: #111;
  overflow: hidden;
}
.donate-hero .hero-visual {
  display: block;
  position: absolute;
  inset: 0;
}
.donate-hero .hero-figure,
.donate-hero .hero-figure img {
  width: 100%;
  height: 100%;
  display: block;
}
.donate-hero .hero-figure {
  margin: 0;
}
.donate-hero .hero-figure img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.45);
  transform-origin: 0% 50%;
}
.donate-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.22) 42%, rgba(0,0,0,.03) 100%);
}
.donate-hero .hero-content {
  min-height: 280px;
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 2rem 1.5rem 1.6rem;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  text-align: left;
}
.donate-hero h1 {
  margin: 0 0 .85rem;
  color: #fff;
  font-size: 2.05rem;
  line-height: 1.08;
  font-weight: 800;
}
.donate-hero p {
  max-width: 430px;
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
}
.donate-hero .button-row {
  margin: 0;
}
.donate-hero .btn {
  min-width: 150px;
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffdc58 0%, #ff8f4a 100%);
  color: #111;
  font-size: .92rem;
}
.donate-detail-section {
  background: #fff;
  color: #111;
}
.donate-detail-section h2 {
  margin: 0;
  color: #111;
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
}
.donate-detail-section p,
.donate-detail-section li {
  font-size: .88rem;
  line-height: 1.28;
}
.donate-possible {
  min-height: 215px;
  padding: 1.05rem 1.35rem 1.1rem;
}
.donate-possible h2 {
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.donate-possible-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: start;
  text-align: center;
}
.donate-possible-grid article {
  display: grid;
  justify-items: center;
  gap: .35rem;
}
.donate-impact-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}
.donate-possible-grid p {
  max-width: 190px;
  margin: 0 auto;
  font-size: .78rem;
  line-height: 1.14;
}
.donate-sponsor {
  min-height: 440px;
  margin: 0 1.3rem;
  padding: .3rem 1.4rem 1.25rem;
  border-radius: 28px;
  background: url('/assets/img/pdf/page-12-img-07.png') center / cover no-repeat;
}
.donate-sponsor > h2 {
  width: min(560px, 84%);
  min-height: 36px;
  display: grid;
  place-items: center;
  margin: -.1rem auto .15rem;
  color: var(--blue);
  background: rgba(255,255,255,.55);
  font-size: .9rem;
  font-style: italic;
}
.donate-sponsor-body {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 1.2rem;
  align-items: center;
}
.donate-sponsor h3 {
  margin: 0 0 .3rem;
  color: #111;
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: underline;
}
.donate-sponsor p {
  margin: 0 0 .25rem;
}
.donate-sponsor ul {
  margin: .35rem 0 .7rem 1.1rem;
  padding: 0;
}
.donate-sponsor li {
  margin: .16rem 0;
}
.donate-sponsor .paypal-donate-form {
  display: flex;
  justify-content: flex-start;
}
.donate-sponsor .btn {
  min-width: 160px;
  min-height: 36px;
  border-radius: 999px;
  font-size: .82rem;
}
.donate-sponsor-body img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  object-position: 50% 100%;
  display: block;
}
.donate-special {
  max-width: 840px;
  margin: .55rem 0 0;
  padding: .45rem .75rem 0;
  text-align: left;
}
.donate-special h3 {
  display: inline-block;
  margin-bottom: .3rem;
  font-size: .86rem;
  text-decoration: underline;
}
.donate-special p {
  margin: 0;
  font-size: .76rem;
}
.donate-quote {
  min-height: 130px;
  padding: 1rem 1.25rem .95rem;
  background: #fff;
}
.donate-quote blockquote {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: .3rem 2.8rem;
  border-left: 3px solid #111;
  border-right: 3px solid #111;
  font-size: .83rem;
  line-height: 1.35;
  font-style: normal;
}
.donate-quote blockquote::before,
.donate-quote blockquote::after {
  position: absolute;
  top: -.25rem;
  color: #111;
  font-size: 3.2rem;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
}
.donate-quote blockquote::before {
  content: "\201C";
  left: 0;
}
.donate-quote blockquote::after {
  content: "\201D";
  right: 0;
}
.donate-reason,
.donate-managed {
  min-height: 155px;
  display: grid;
  align-content: center;
  padding: 1.05rem 2rem 1.15rem;
  text-align: center;
}
.donate-reason h2,
.donate-managed h2 {
  margin-bottom: .35rem;
  font-size: 1.25rem;
}
.donate-reason p,
.donate-managed p {
  max-width: 820px;
  margin: 0 auto .45rem;
}
.donate-reason-cream {
  background: #fff3c2;
}
.donate-reason-yellow {
  background: #ffeb99;
}
.donate-reason-gold { background: #ffde59; }
.donate-managed { background: #ffd21f; }
.donate-managed {
  border-top: 2px solid rgba(255,255,255,.75);
}
.donate-gift {
  min-height: 380px;
  padding: 1.25rem 1.7rem 1.35rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 62%;
  text-align: center;
}
.donate-gift h2 {
  margin-bottom: .35rem;
  color: #111;
  font-size: 2rem;
}
.donate-paypal-gold {
  min-width: 190px;
  min-height: 42px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffdc58 0%, #ff8f4a 100%);
  color: #111;
  font-size: 1rem;
}
.donate-gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
  margin-top: .2rem;
  text-align: left;
}
.donate-gift-grid p {
  margin: 0 0 .15rem;
  color: #000;
  font-size: .72rem;
  line-height: 1.16;
  font-weight: 700;
}

/* Donate page: desktop layout, crops, colors, and typography from PDF page 12. */
@media (min-width: 901px) {
  .donate-hero {
    height: 309px;
    min-height: 309px;
  }
  .donate-hero .hero-visual,
  .donate-hero .hero-figure {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 309px;
    min-height: 309px;
    overflow: hidden;
  }
  .donate-hero .hero-figure img {
    position: absolute;
    top: -188px;
    left: 0;
    width: 1466px;
    max-width: none;
    height: auto;
    min-height: 0;
    object-fit: fill;
    object-position: initial;
    transform: none;
  }
  .donate-hero::after {
    background: linear-gradient(90deg, rgba(0,0,0,.54) 0%, rgba(0,0,0,.20) 43%, rgba(0,0,0,.02) 100%);
  }
  .donate-hero .hero-content {
    width: 520px;
    max-width: 520px;
    height: 309px;
    min-height: 309px;
    padding: 18px 0 0 22px;
    justify-content: flex-start;
  }
  .donate-hero h1 {
    width: 480px;
    margin: 0 0 26px;
    font-size: 32px;
    line-height: 44.25px;
  }
  .donate-hero p {
    width: 462px;
    max-width: 462px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
  }
  .donate-hero .button-row {
    margin: 34px 0 0 143px;
  }
  .donate-hero .btn {
    width: 215px;
    min-width: 215px;
    height: 55px;
    min-height: 55px;
    padding: 0 18px;
    background: linear-gradient(90deg, #ffdc58 0%, #ff8f4a 100%);
    font-size: 24px;
    line-height: 28px;
  }

  .donate-possible {
    height: 221px;
    min-height: 221px;
    padding: 3px 22px 12px;
  }
  .donate-possible h2 {
    margin-bottom: 17px;
    font-size: 28px;
    line-height: 33px;
  }
  .donate-possible-grid {
    width: 920px;
    grid-template-columns: repeat(4, 230px);
    gap: 0;
    margin-left: 84px;
  }
  .donate-possible-grid article {
    gap: 12px;
  }
  .donate-possible-grid article:nth-child(4) {
    transform: translateX(15px);
  }
  .donate-impact-icon {
    width: 64px;
    height: 64px;
  }
  .donate-possible-grid p {
    max-width: 145px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 18px;
  }
  .donate-possible-grid article:nth-child(4) p {
    max-width: 125px;
  }

  .donate-sponsor {
    position: relative;
    width: 866px;
    height: 442px;
    min-height: 442px;
    margin: 0 auto;
    padding: 0;
    border-radius: 48px;
    overflow: hidden;
    background: url('/assets/img/pdf/page-12-img-07.png') center / 100% 100% no-repeat;
  }
  .donate-sponsor > h2 {
    position: absolute;
    top: 6px;
    left: 111px;
    width: 656px;
    height: 38px;
    min-height: 38px;
    margin: 0;
    padding: 0 34px;
    color: #004aad;
    background: #eee39e;
    clip-path: polygon(0 0, 5.5% 50%, 0 100%, 100% 100%, 94.5% 50%, 100% 0);
    font-size: 20px;
    line-height: 24px;
  }
  .donate-sponsor-body {
    position: absolute;
    top: 56px;
    left: 32px;
    width: 802px;
    display: block;
  }
  .donate-sponsor-body > div {
    width: 600px;
  }
  .donate-sponsor h3 {
    margin: 0 0 9px;
    font-size: 21px;
    line-height: 25px;
  }
  .donate-sponsor p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 23.25px;
  }
  .donate-sponsor-intro {
    width: 520px;
    margin: 0;
  }
  .donate-sponsor-intro strong {
    color: #df5d2d;
    font-weight: 700;
  }
  .donate-sponsor ul {
    width: 525px;
    margin: 2px 0 14px 25px;
    padding: 0;
  }
  .donate-sponsor li {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 21px;
  }
  .donate-sponsor .paypal-donate-form {
    justify-content: flex-start;
    margin-left: 120px;
  }
  .donate-sponsor .btn {
    width: 208px;
    min-width: 208px;
    height: 40px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 18px;
    line-height: 22px;
  }
  .donate-sponsor-body > img {
    position: absolute;
    top: 52px;
    left: 598px;
    width: 182px;
    height: 220px;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: 50% 100%;
  }
  .donate-special {
    position: absolute;
    top: 337px;
    left: 59px;
    width: 650px;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .donate-special h3 {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 17px;
    font-style: italic;
  }
  .donate-special p {
    margin: 0;
    font-size: 12px;
    line-height: 16.5px;
    font-style: italic;
  }

  .donate-quote {
    position: relative;
    height: 160px;
    min-height: 160px;
    padding: 0;
    overflow: hidden;
  }
  .donate-quote blockquote {
    position: absolute;
    top: 24px;
    left: 45px;
    right: 41px;
    max-width: none;
    margin: 0;
    padding: 16px 48px;
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
    font-style: normal;
  }
  .donate-quote::before,
  .donate-quote::after {
    position: absolute;
    z-index: 1;
    color: #111;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 76px;
    line-height: 1;
    font-weight: 800;
  }
  .donate-quote::before {
    content: "\201C";
    top: -2px;
    left: 27px;
  }
  .donate-quote::after {
    content: "\201D";
    right: 26px;
    bottom: -18px;
  }
  .donate-quote blockquote::before,
  .donate-quote blockquote::after {
    content: none;
  }

  .donate-reason,
  .donate-managed {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    border-top: 0;
    border-bottom: 4px solid #fff;
  }
  .donate-reason-cream { height: 169px; background: #fff3c2; }
  .donate-reason-yellow { height: 147px; background: #ffeb99; }
  .donate-reason-gold { height: 152px; background: #ffde59; }
  .donate-managed { height: 149px; background: #ffd21f; }
  .donate-reason-gold,
  .donate-managed {
    justify-content: flex-start;
    padding-top: 17px;
  }
  .donate-reason h2,
  .donate-managed h2 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 26px;
  }
  .donate-reason p,
  .donate-managed p {
    max-width: 840px;
    margin: 0 auto 17px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
  }
  .donate-reason p:last-child,
  .donate-managed p:last-child {
    margin-bottom: 0;
  }

  .donate-gift {
    position: relative;
    height: 364px;
    min-height: 364px;
    padding: 0;
    background-image: linear-gradient(rgba(255,255,255,.62), rgba(255,255,255,.62)), url('/assets/img/pdf/page-12-img-09.jpeg') !important;
    background-size: 1080px auto;
    background-position: center -222px;
  }
  .donate-gift h2 {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 48px;
    line-height: 58px;
  }
  .donate-gift > .paypal-donate-form {
    position: absolute;
    top: 89px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .donate-paypal-gold {
    width: 374px;
    min-width: 374px;
    height: 62px;
    min-height: 62px;
    margin: 0;
    padding: 0 24px;
    background: linear-gradient(90deg, #ffdc58 0%, #ff8f4a 100%);
    font-size: 32px;
    line-height: 38px;
  }
  .donate-gift-grid {
    position: absolute;
    top: 198px;
    left: 51px;
    right: 51px;
    grid-template-columns: 420px 410px;
    justify-content: space-between;
    gap: 0;
    margin: 0;
  }
  .donate-gift-grid p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 23.25px;
    font-weight: 700;
  }
  .donate-gift-grid p:first-child {
    font-weight: 400;
  }
}
.emotional-hero {
  min-height: 0;
  display: block;
  background: #fff;
}
.emotional-hero .hero-content {
  padding: 1.55rem 1.65rem .65rem;
  align-items: center;
  text-align: center;
}
.emotional-hero .hero-visual {
  display: none;
}
.emotional-hero h1 {
  margin: 0 0 1.3rem;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
}
.emotional-hero .hero-gallery {
  width: min(944px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto 1.65rem;
}
.emotional-hero .hero-gallery img {
  width: 100%;
  height: 177px;
  object-fit: cover;
  display: block;
}
.emotional-hero p {
  margin: 0;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1.15;
  font-weight: 800;
}
.emotional-detail-section {
  background: #fff;
  color: #111;
  padding-bottom: 2.35rem;
}
.emotional-detail-section h2 {
  margin: 0 0 .4rem;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.14;
  font-weight: 800;
}
.emotional-detail-section p,
.emotional-detail-section li,
.emotional-detail-section a {
  font-size: .95rem;
  line-height: 1.42;
}
.emotional-intro {
  max-width: 1050px;
  margin: 0 auto;
  padding: .35rem 1.6rem 1.7rem;
  text-align: center;
}
.emotional-intro p {
  margin: 0 auto .2rem;
}
.emotional-needs,
.emotional-callout,
.emotional-resources {
  max-width: 980px;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
.emotional-needs {
  padding-top: .25rem;
  padding-bottom: 3.05rem;
}
.emotional-callout {
  padding-top: 1.35rem;
  padding-bottom: 1.55rem;
}
.emotional-alone {
  padding-bottom: 1.76rem;
}
.emotional-callout:not(.emotional-alone) {
  padding-bottom: 1.08rem;
}
.emotional-needs ul {
  max-width: 600px;
  margin: 2rem 0 0 1.25rem;
  padding: 0;
}
.emotional-needs li {
  margin: .3rem 0;
}
.emotional-callout p {
  margin: 0;
}
.emotional-resources {
  padding-top: .4rem;
  padding-bottom: 4.3rem;
}
.emotional-resources article {
  margin: 1.9rem 0 1.6rem;
}
.emotional-resources h3 {
  margin: 0 0 .1rem;
  color: #111;
  font-size: .95rem;
  line-height: 1.2;
  font-weight: 500;
}
.emotional-resources h3 a {
  color: #111;
}
.emotional-resources p {
  margin: 0;
}
.emotional-resources p,
.emotional-resources a {
  font-size: .95rem;
  line-height: 1.42;
}
.emotional-resources h3 { font-size: .95rem; }
.emotional-resources a {
  color: #111;
  text-decoration: underline;
}
.emotional-logo-band {
  min-height: 322px;
  display: grid;
  place-items: center;
  background: #ff8745;
}
.emotional-logo-band img {
  width: 220px;
  max-width: 44%;
  display: block;
}
.emotional-photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.emotional-photo-band img {
  width: 100%;
  height: 322px;
  object-fit: cover;
  display: block;
}
.emotional-photo-band img:first-child {
  object-position: 40% 50%;
}
.emotional-photo-band img:nth-child(2) {
  object-position: 50% 45%;
}
.caregiver-hero {
  min-height: 0;
  display: block;
  background: #fff;
}
.caregiver-hero .hero-content {
  padding: .5rem 1.65rem .35rem;
  align-items: center;
  text-align: center;
}
.caregiver-hero .hero-visual {
  display: none;
}
.caregiver-hero h1 {
  margin: 0 0 .65rem;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
}
.caregiver-hero .hero-gallery {
  width: min(480px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin: 0 auto .55rem;
}
.caregiver-hero .hero-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.caregiver-hero .hero-gallery img:first-child {
  object-position: 50% 45%;
}
.caregiver-hero .hero-gallery img:nth-child(2) {
  object-position: 45% 50%;
}
.caregiver-hero p {
  margin: 0;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
}
.caregiver-detail-section {
  background: #fff;
  color: #111;
}
.caregiver-detail-section h2 {
  margin: 0 0 .35rem;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.14;
  font-weight: 800;
}
.caregiver-detail-section p,
.caregiver-detail-section li,
.caregiver-detail-section a {
  font-size: 1.1rem;
  line-height: 1.42;
}
.caregiver-intro {
  max-width: 860px;
  margin: 0 auto;
  padding: .85rem 1.6rem 1.15rem;
  text-align: center;
}
.caregiver-intro p {
  margin: 0 auto .12rem;
}
.caregiver-needs,
.caregiver-alone,
.caregiver-video,
.caregiver-reach,
.caregiver-resources {
  max-width: 980px;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
.caregiver-needs {
  padding-top: .8rem;
  padding-bottom: 2.1rem;
}
.caregiver-alone {
  padding-top: 0;
  padding-bottom: 2.8rem;
}
.caregiver-needs ul {
  max-width: 560px;
  margin: .3rem 0 0 1.25rem;
  padding: 0;
}
.caregiver-needs li {
  margin: .12rem 0;
}
.caregiver-alone p {
  margin: 0 0 1.6rem;
}
.caregiver-alone .caregiver-strong {
  font-weight: 800;
}
.caregiver-button-row {
  width: 100%;
  max-width: 720px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 1.45rem auto 0;
}
.caregiver-button-row .btn {
  min-width: 240px;
  min-height: 52px;
  border-radius: 999px;
  font-size: .95rem;
}
.caregiver-video {
  padding-top: 0;
  padding-bottom: 2rem;
  text-align: center;
}
.caregiver-video h2 {
  margin-bottom: 2rem;
  font-size: 1.65rem;
  text-align: center;
}
.caregiver-video > div {
  width: 430px;
  max-width: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: .6rem;
  margin: 0 auto;
  padding: 1rem;
  background: #e5f3ff;
}
.caregiver-video img {
  width: 235px;
  max-width: 100%;
  display: block;
}
.caregiver-video .btn {
  min-width: 210px;
  min-height: 46px;
  border-radius: 999px;
  font-size: .95rem;
}
.caregiver-reach p {
  margin: 0;
}
.caregiver-reach {
  padding-top: .4rem;
  padding-bottom: 2rem;
}
.caregiver-resources {
  padding-top: .35rem;
  padding-bottom: .5rem;
}
.caregiver-resources article {
  margin: 1rem 0 1.2rem;
}
.caregiver-resources h3 {
  margin: 0;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.42;
  font-weight: 400;
}
.caregiver-resources h3 a {
  color: #111;
}
.caregiver-resources p {
  margin: 0;
}
.caregiver-resources p,
.caregiver-resources a {
  font-size: 1.05rem;
}
.caregiver-resources a {
  color: #111;
  text-decoration: underline;
}
.financial-hero,
.children-hero {
  min-height: 0;
  display: block;
  background: #fff;
}
.financial-hero .hero-content,
.children-hero .hero-content {
  padding: 1.55rem 1.65rem .7rem;
  align-items: center;
  text-align: center;
}
.financial-hero .hero-visual,
.children-hero .hero-visual {
  display: none;
}
.financial-hero h1,
.children-hero h1 {
  margin: 0 0 1.3rem;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
}
.financial-hero .hero-gallery,
.children-hero .hero-gallery {
  width: 556px;
  max-width: 100%;
  display: grid;
  margin: 0 auto 1.25rem;
}
.financial-hero .hero-gallery img,
.children-hero .hero-gallery img {
  width: 100%;
  height: 294px;
  object-fit: cover;
  display: block;
}
.financial-hero .hero-gallery {
  width: 556px;
}
.children-hero .hero-gallery {
  width: 455px;
}
.children-hero .hero-gallery img {
  height: 265px;
  object-position: 50% 48%;
}
.financial-hero p,
.children-hero p {
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1.16;
  font-weight: 800;
}
.resource-guide-detail-section {
  background: #fff;
  color: #111;
  padding-bottom: 1.85rem;
}
.resource-guide-detail-section h2 {
  margin: 0 0 .4rem;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.14;
  font-weight: 800;
}
.resource-guide-detail-section p,
.resource-guide-detail-section li,
.resource-guide-detail-section a {
  font-size: 1.05rem;
  line-height: 1.42;
}
.financial-guide { padding-bottom: 4.4rem; }
.resource-guide-intro,
.resource-guide-needs,
.resource-guide-callout,
.resource-guide-video,
.resource-guide-resources {
  max-width: 980px;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
.resource-guide-intro {
  padding-top: .1rem;
  padding-bottom: 3rem;
}
.resource-guide-intro p {
  margin: 0 0 .15rem;
}
.children-guide .resource-guide-intro {
  text-align: center;
}
.children-guide { padding-bottom: 1.75rem; }
.children-guide .resource-guide-intro {
  padding-bottom: 3rem;
}
.resource-guide-needs {
  padding-top: .25rem;
  padding-bottom: 2.65rem;
}
.resource-guide-callout {
  padding-top: .1rem;
  padding-bottom: 2.75rem;
}
.resource-guide-callout + .resource-guide-callout {
  padding-bottom: 2.65rem;
}
.resource-guide-needs ul {
  max-width: 580px;
  margin: .25rem 0 0 1.25rem;
  padding: 0;
}
.resource-guide-needs li {
  margin: .1rem 0;
}
.resource-guide-callout p {
  margin: 0;
}
.resource-guide-video {
  padding-top: .1rem;
  padding-bottom: 2.25rem;
}
.resource-guide-video h2 {
  margin-bottom: .4rem;
}
.resource-guide-video p {
  max-width: 916px;
  margin: 0 0 1.15rem;
}
.resource-guide-video > div {
  width: 402px;
  max-width: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: .5rem;
  margin: 0 auto;
  padding: 1rem;
  background: #e5f3ff;
}
.resource-guide-video img {
  width: 235px;
  max-width: 100%;
  display: block;
}
.resource-guide-video .btn {
  min-width: 200px;
  min-height: 46px;
  border-radius: 999px;
  font-size: .9rem;
}
.resource-guide-resources {
  padding-top: .15rem;
  padding-bottom: 1.55rem;
}
.financial-guide .resource-guide-resources {
  padding-bottom: 3rem;
}
.financial-guide .resource-guide-resources article {
  margin-bottom: 1.7rem;
}
.financial-guide .resource-guide-resources article > a {
  display: block;
  margin-top: 1.5rem;
}
.children-guide .resource-guide-resources {
  padding-top: .4rem;
  padding-bottom: 3.1rem;
}
.resource-guide-resources article {
  margin: .85rem 0 1.1rem;
}
.resource-guide-resources h3 {
  margin: 0 0 .1rem;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 500;
}
.resource-guide-resources h3 a {
  color: #111;
}
.resource-guide-resources p {
  margin: 0;
}
.resource-guide-resources a {
  color: #111;
  text-decoration: underline;
}
.resource-guide-bottom-image {
  width: 614px;
  max-width: calc(100% - 4rem);
  margin: 2rem auto 0;
}
.resource-guide-bottom-image img {
  width: 100%;
  height: 357px;
  object-fit: cover;
  display: block;
}
.resource-guide-photo-grid {
  width: 672px;
  max-width: calc(100% - 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem 0;
  margin: .9rem auto 0;
}
.resource-guide-photo-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.resource-guide-photo-grid img:first-child {
  object-position: 50% 58%;
}
.resource-guide-photo-grid img:nth-child(2) {
  object-position: 50% 50%;
}
.resource-guide-photo-grid img:nth-child(3) {
  object-position: 50% 52%;
}
.resource-guide-photo-grid img:nth-child(4) {
  object-position: 50% 50%;
}
.appointment-hero {
  min-height: 137px;
  display: block;
  background: #fff;
}
.appointment-hero .hero-content {
  min-height: 137px;
  padding: .95rem 1.4rem .75rem;
  align-items: center;
  text-align: center;
}
.appointment-hero .hero-visual {
  display: none;
}
.appointment-hero h1 {
  margin: 0 0 .75rem;
  color: var(--blue);
  font-size: 1.62rem;
  line-height: 1.08;
  font-weight: 800;
}
.appointment-hero p {
  max-width: 920px;
  margin: 0 auto;
  color: #111;
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: 400;
}
.appointment-detail-section {
  padding: 0 0 9.4rem;
  background: #fff;
  color: #111;
}
.appointment-detail-section h2 {
  margin: 0 0 .45rem;
  color: var(--blue);
  font-size: 1.08rem;
  line-height: 1.12;
  font-weight: 800;
}
.appointment-detail-section p,
.appointment-detail-section li,
.appointment-detail-section a {
  font-size: .82rem;
  line-height: 1.42;
}
.appointment-use,
.appointment-prep,
.appointment-reminder {
  max-width: 900px;
  margin: 0 auto;
  padding: .2rem 1.8rem .45rem;
}
.appointment-use { min-height: 371px; }
.appointment-use p,
.appointment-prep p {
  margin: 0 0 .6rem;
}
.appointment-downloads {
  min-height: 100px;
  width: 600px;
  max-width: calc(100% - 3.6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7.2rem;
  margin: .55rem auto .35rem;
}
.appointment-download {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  line-height: 1.05;
}
.appointment-download span,
.appointment-download strong {
  display: block;
  font-size: .84rem;
  line-height: 1.05;
}
.appointment-question-note {
  min-height: 77px;
  max-width: 430px;
  margin: .2rem auto 1rem;
  color: var(--blue);
  font-size: .88rem;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}
.appointment-prep ul {
  margin: .2rem 0 0 1.1rem;
  padding: 0;
}
.appointment-prep-day { min-height: 265px; }
.appointment-prep-before { min-height: 280px; }
.appointment-prep-after { min-height: 259px; }
.appointment-prep li {
  margin: .24rem 0;
}
.appointment-reminder {
  min-height: 39px;
  margin-top: .1rem;
  margin-bottom: .15rem;
  font-weight: 500;
}
.appointment-cto {
  min-height: 356px;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.1rem;
  align-items: start;
  margin: .45rem auto 0;
  padding: 0 1.8rem;
}
.appointment-cto h2 {
  text-align: center;
}
.appointment-cto-image-frame {
  height: 280px;
  overflow: hidden;
}
.appointment-cto-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 44%;
  transform: translateY(55px) scale(1.42);
  transform-origin: center 50%;
  display: block;
}
.appointment-cto-card {
  min-height: 300px;
  padding: 1rem 1.1rem;
  background: #eaf6fc;
  text-align: center;
}
.appointment-cto-card p {
  margin: .45rem 0;
}
.appointment-cto-card a {
  color: #111;
  text-decoration: none;
}
.about-hero {
  min-height: 82px;
  display: block;
  background: linear-gradient(180deg, #fff7cc, #fffdf0);
}
.about-hero .hero-content {
  min-height: 82px;
  padding: .75rem 1rem .65rem;
  align-items: center;
  text-align: center;
  color: var(--blue);
}
.about-hero h1 {
  margin: 0 0 .25rem;
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 800;
}
.about-hero h1::after {
  content: "";
  display: block;
  width: 230px;
  max-width: 65vw;
  height: 2px;
  margin: .25rem auto 0;
  background: var(--blue);
}
.about-hero p {
  max-width: none;
  margin: 0;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 400;
}
.about-hero .hero-visual {
  display: none;
}
.about-why-section,
.about-difference-section,
.about-need-section,
.about-pillars-section,
.about-volunteers-section,
.about-funding-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  background: #fffaf0;
}
.about-why-section {
  padding: 1.25rem 1.8rem 1.05rem;
}
.about-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 305px;
  gap: 1.8rem;
  align-items: center;
}
.about-copy h2,
.about-difference-section h2,
.about-need-section h2,
.about-volunteers-section h2,
.about-approach-section h2,
.about-funding-section h2 {
  margin: 0 0 .55rem;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 800;
}
.about-copy h2 {
  text-align: left;
}
.about-copy p,
.about-difference-section p,
.about-difference-section li,
.about-need-section p,
.about-volunteers-section p,
.about-approach-section li,
.about-funding-section p {
  margin: 0 0 .62rem;
  font-size: .86rem;
  line-height: 1.38;
}
.about-portrait-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.about-portrait-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}
.about-difference-section {
  padding: .8rem 1.8rem;
  background: #fff;
}
.about-difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .9fr);
  gap: 1.2rem;
  align-items: center;
}
.about-difference-section h2 {
  text-align: left;
}
.about-difference-section ul,
.about-approach-section ul {
  margin: .2rem 0 .55rem;
  padding-left: 1.1rem;
}
.about-impact {
  padding: .75rem .9rem .85rem;
  border-radius: 24px;
  background: linear-gradient(90deg, #ffe253 0%, #ff8d45 100%);
}
.about-impact h3 {
  margin: 0 0 .6rem;
  color: #111;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
}
.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
  text-align: center;
}
.about-impact-grid div {
  padding: .25rem .15rem;
  border-left: 2px solid var(--blue);
}
.about-impact-grid div:first-child {
  border-left: 0;
}
.about-impact-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 800;
  margin-top: .12rem;
}
.about-impact-grid span {
  display: block;
  margin-top: .2rem;
  font-size: .62rem;
  line-height: 1.16;
}
.about-need-section {
  padding: 1.05rem 1.8rem .9rem;
  background: #e8f7ff;
  text-align: left;
}
.about-need-section .section-inner {
  max-width: 1010px;
}
.about-need-section h2 {
  text-align: center;
}
.about-pillars-section {
  padding: .55rem 1.8rem 1rem;
  background: #fff;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.about-pillars-grid article {
  min-height: 128px;
  padding: .8rem .9rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffe869, #f6c517);
  text-align: center;
}
.about-pillars-grid h3 {
  margin: 0 0 .55rem;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 800;
}
.about-pillars-grid p {
  margin: 0 0 .35rem;
  font-size: .78rem;
  line-height: 1.3;
}
.about-pillars-grid p:last-child {
  margin-bottom: 0;
}
.about-volunteers-section {
  padding: .75rem 1.8rem .95rem;
  background: #fff;
}
.about-volunteers-section .section-inner,
.about-approach-section .section-inner,
.about-funding-section .section-inner {
  max-width: 1010px;
}
.about-volunteers-section h2 {
  text-align: left;
}
.about-approach-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: .9rem 1.8rem 1.05rem;
  background: linear-gradient(90deg, #ffe557 0%, #ff8848 100%);
}
.about-approach-section h2 {
  color: #111;
}
.about-approach-section li {
  margin-bottom: .35rem;
}
.about-funding-section {
  padding: .75rem 1.8rem 1rem;
  background: #fff;
  text-align: center;
}
.about-funding-section .button-row {
  justify-content: center;
  margin-top: .4rem;
}
.about-funding-section .btn {
  min-height: 26px;
  min-width: 132px;
  font-size: .7rem;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem 2rem;
  max-width: 820px;
  margin: 1rem auto 0;
  padding-left: 1.3rem;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.callout-panel {
  background: #f2f7ff;
  border: 0;
  padding: 1.2rem;
}
.callout-panel ul { margin: 0; padding-left: 1.2rem; }
.contact-form {
  display: grid;
  gap: .75rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid #bcbcbc;
  padding: .75rem;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }

.site-footer {
  width: min(100%, var(--max));
  min-height: 164px;
  position: relative;
  margin: 0 auto;
  padding: 0;
  color: var(--white);
  background: linear-gradient(180deg, #001f65 0%, #6592f9 100%);
}
.footer-grid {
  min-height: 164px;
  position: relative;
}
.site-footer h2,
.site-footer h3 {
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.site-footer a {
  color: var(--white);
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }
.site-footer a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.footer-contact {
  width: 23.1%;
  position: absolute;
  top: 22px;
  left: 6.5%;
  margin: 0;
  color: var(--white);
  font-size: clamp(13px, 1.667vw, 18px);
  font-style: normal;
  line-height: 1.375;
  text-align: center;
  white-space: nowrap;
}
.footer-contact span,
.footer-contact a {
  display: block;
}
.footer-logo {
  width: clamp(60px, 7.57vw, 82px);
  position: absolute;
  top: 27px;
  left: 46.8%;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-links {
  display: contents;
}
.site-footer ul {
  position: absolute;
  top: 16px;
  left: 71.69%;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(13px, 1.667vw, 18px);
  line-height: 1.5;
}
.social-links {
  position: absolute;
  top: 84px;
  right: 1.48%;
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.social-link:hover { text-decoration: none; }
.social-link-instagram {
  width: 32px;
  height: 34px;
  position: relative;
}
.social-link-instagram::before {
  content: "";
  position: absolute;
  inset: 1px 0;
  padding: 4px;
  border-radius: 9px;
  background: linear-gradient(135deg, #405de6 5%, #833ab4 30%, #c13584 48%, #e1306c 62%, #fd1d1d 75%, #f77737 88%, #fcaf45 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.social-link-instagram .social-icon {
  width: 13px;
  height: 13px;
  position: relative;
  display: block;
  border: 3px solid #e1306c;
  border-radius: 50%;
}
.social-link-instagram .social-icon::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: -7px;
  right: -7px;
  border-radius: 50%;
  background: #c13584;
}
.social-link-youtube {
  width: 44px;
  height: 32px;
  border-radius: 7px;
  background: #ff0000;
}
.social-link-youtube .social-icon {
  width: 0;
  height: 0;
  display: block;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
}
.social-link-facebook {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 50%;
  background: #1877f2;
}
.social-link-facebook .social-icon {
  display: block;
  transform: translate(1px, 6px);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}
.inline-form {
  display: flex;
  gap: .5rem;
}
.inline-form button {
  border: 0;
  padding: .65rem .9rem;
  background: var(--gold);
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}
.small { font-size: .8rem; opacity: .9; }

/* PDF page 13: supporters */
.supporters-hero {
  position: relative;
  display: grid;
  min-height: 270px;
  overflow: hidden;
  background: #efe6d2;
}
.supporters-hero .hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  min-height: 270px;
  max-width: 660px;
  padding: 1.45rem 2rem 1.3rem;
  align-items: center;
  justify-content: center;
  color: #111;
  text-align: center;
}
.supporters-hero h1 {
  margin: 0 0 .9rem;
  color: #111;
  font-size: 2.2rem;
  line-height: 1.08;
  font-weight: 800;
}
.supporters-hero p {
  max-width: 540px;
  margin: 0 auto;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.42;
  font-weight: 500;
}
.supporters-hero .hero-visual,
.supporters-hero .hero-figure,
.supporters-hero .hero-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.supporters-hero .hero-figure img {
  object-fit: cover;
  object-position: center 43%;
}
.supporters-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
}
.supporters-detail-section {
  background: #fff;
  color: #111;
  text-align: center;
}
.supporters-detail-section h2 {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 800;
}
.supporters-leading,
.supporters-logos,
.supporters-community,
.supporters-family,
.supporters-gallery {
  padding-left: 3rem;
  padding-right: 3rem;
}
.supporters-leading {
  padding-top: 1.3rem;
  padding-bottom: 1.5rem;
}
.supporters-leading-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.supporters-leading-grid article {
  min-height: 140px;
  display: grid;
  place-items: center;
}
.supporters-leading-grid img {
  width: 100%;
  max-width: 180px;
  max-height: 125px;
  object-fit: contain;
}
.supporters-leading-grid p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}
.supporters-logos {
  padding-top: .75rem;
  padding-bottom: 1.4rem;
}
.supporters-logo-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: .9rem 1.25rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.supporters-logo-item {
  min-width: 0;
  min-height: 78px;
  display: grid;
  grid-column: span 5;
  place-items: center;
  gap: .25rem;
  padding: .25rem;
}
.supporters-logo-item:nth-child(n + 5):nth-child(-n + 9) {
  grid-column: span 4;
}
.supporters-logo-grid img {
  width: 100%;
  height: 78px;
  object-fit: contain;
}
.supporters-logo-name {
  max-width: 190px;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}
.supporters-logo-item small {
  font-size: .88rem;
  line-height: 1.3;
}
.supporters-community {
  padding-top: 1rem;
  padding-bottom: 1.7rem;
}
.supporters-community > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  max-width: 980px;
  margin: 0 auto;
}
.supporters-community span {
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 600;
}
.supporters-family {
  min-height: 0;
  padding-top: 1.35rem;
  padding-bottom: 3.25rem;
}
.supporters-family p {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.4;
}
.supporters-partner {
  min-height: 270px;
  padding: 1.45rem 2rem 1.6rem;
  background: linear-gradient(90deg, #ffe967 0%, #ffc354 48%, #ff8846 100%);
}
.supporters-partner h2 {
  color: #111;
}
.supporters-partner p {
  max-width: 800px;
  margin: 0 auto 1.15rem;
  font-size: 1.05rem;
  line-height: 1.42;
}
.supporters-partner-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.supporters-partner-buttons .btn {
  min-height: 52px;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: #0c65bf;
  color: #fff;
  font-size: .92rem;
  line-height: 1.15;
}
.supporters-partner-buttons .btn:first-child { background: #ff8c16; }
.supporters-partner-buttons .btn:last-child { background: #ffd719; color: #111; }
.supporters-partner small {
  font-size: .9rem;
  line-height: 1.35;
  font-style: italic;
}
.supporters-gallery {
  padding-top: 1.35rem;
  padding-bottom: 2rem;
}
.supporters-gallery > div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 205px 205px;
  gap: .65rem;
  max-width: 920px;
  margin: 0 auto;
}
.supporters-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
}
.supporters-gallery img:nth-child(1) { grid-column: 1 / 4; }
.supporters-gallery img:nth-child(2) { grid-column: 4 / 7; }
.supporters-gallery img:nth-child(3) { grid-column: 1 / 3; }
.supporters-gallery img:nth-child(4) { grid-column: 3 / 5; }
.supporters-gallery img:nth-child(5) { grid-column: 5 / 7; }

/* PDF page 18: stories and media */
.media-hero {
  min-height: 100px;
  display: block;
  background: #fff;
}
.media-hero .hero-content {
  min-height: 100px;
  padding: .5rem 1.5rem .4rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.media-hero h1 {
  margin: 0 0 .25rem;
  color: #111;
  font-size: 2.05rem;
  line-height: 1.08;
  font-weight: 800;
}
.media-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #111;
  font-size: .9rem;
  line-height: 1.25;
}
.media-hero .hero-visual { display: none; }
.media-detail-section {
  padding: 0 1.8rem 10.3rem;
  background: #fff;
  color: #111;
  text-align: center;
}
.media-detail-section h2 {
  margin: 0 0 .75rem;
  color: var(--blue);
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: 800;
}
.media-intro {
  min-height: 64px;
  display: grid;
  align-content: center;
  max-width: 780px;
  margin: 0 auto .5rem;
  color: var(--blue);
  font-size: .9rem;
  line-height: 1.35;
}
.media-detail-section > h2 {
  max-width: 360px;
  margin: 0 auto 1.625rem;
  padding-top: .75rem;
  border-top: 1px solid #a9a9a9;
}
.media-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  gap: 2.45rem 5.75rem;
}
.media-story-grid article {
  min-height: 248px;
  display: grid;
  grid-template-rows: 34px 130px 26px 36px;
  align-items: center;
  justify-items: center;
  padding: .5rem .625rem .625rem;
  background: #dfecff;
}
.media-story-grid h3 {
  min-height: 0;
  margin: 0;
  color: #111;
  font-size: .98rem;
  line-height: 1.08;
  font-weight: 800;
}
.media-story-grid img {
  width: 192px;
  height: 116px;
  max-height: 130px;
  object-fit: cover;
  object-position: center;
}
.media-story-grid article:nth-child(1) img { width: 175px; }
.media-story-grid article:nth-child(4) img {
  width: 154px;
  height: 130px;
}
.media-story-grid article:nth-child(6) img { object-position: left center; }
.media-story-grid p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.2;
}
.media-story-grid a,
.media-story-action,
.media-programs a {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: #0d65bf;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
}
.media-videos {
  min-height: 245px;
  padding: 2.55rem 1rem 1.5rem;
}
.media-videos h2 {
  margin-bottom: 1.55rem;
}
.media-videos p {
  max-width: 690px;
  margin: 0 auto 1.75rem;
  font-size: .95rem;
  line-height: 1.35;
}
.media-videos .btn {
  min-width: 170px;
  min-height: 48px;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
}
.media-programs {
  min-height: 441px;
  padding: 2.1rem 1rem 1.85rem;
}
.media-programs h2 {
  margin-bottom: 1.25rem;
}
.media-programs > div {
  display: grid;
  justify-items: center;
  gap: 1.55rem;
}
.media-programs a {
  min-width: 230px;
  min-height: 54px;
  padding: .55rem 1.4rem;
  font-size: .9rem;
}
.media-programs a:nth-child(3) { width: 276px; }
.media-programs a:nth-child(4) { width: 270px; }
.media-gallery {
  display: grid;
  grid-template-columns: 238px 238px 37px 225px 225px;
  grid-template-rows: 212px 214px;
  max-width: 963px;
  margin: 0 auto;
}
.media-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-gallery img:nth-child(1) { grid-column: 1; grid-row: 1; }
.media-gallery img:nth-child(2) { grid-column: 2; grid-row: 1; }
.media-gallery img:nth-child(3) { grid-column: 4; grid-row: 1; }
.media-gallery img:nth-child(4) { grid-column: 5; grid-row: 1; }
.media-gallery img:nth-child(5) { grid-column: 1 / 3; grid-row: 2; }
.media-gallery img:nth-child(6) { grid-column: 4; grid-row: 2; }
.media-gallery img:nth-child(7) { grid-column: 5; grid-row: 2; }

/* Page 10 spacing and proportions from the PDF. */
.volunteer-hero,
.volunteer-hero .hero-content,
.volunteer-hero .hero-figure,
.volunteer-hero .hero-figure img { min-height: 235px; }
.volunteer-hero h1 { font-size: 1.9rem; }
.volunteer-hero p { font-size: .96rem; }
.volunteer-powered {
  min-height: 225px;
  padding: 1.25rem 1.5rem;
}
.volunteer-powered p { font-size: .94rem; line-height: 1.42; }
.volunteer-powered img { max-height: 155px; }
.volunteer-detail-section h2 { font-size: 1.42rem; }
.volunteer-why { min-height: 336px; padding-top: 1.55rem; padding-bottom: 1.7rem; }
.volunteer-why h2 { margin-bottom: 2.85rem; }
.volunteer-why-grid { gap: 2.25rem 2.25rem; }
.volunteer-why-grid img { width: 96px; height: 96px; }
.volunteer-why-grid p { font-size: .94rem; line-height: 1.18; }
.volunteer-ways { min-height: 405px; padding-top: 1.35rem; padding-bottom: 1.45rem; }
.volunteer-way-grid article { min-height: 325px; padding: 1.5rem .95rem 1.1rem; }
.volunteer-way-grid h3 { font-size: .92rem; line-height: 1.15; }
.volunteer-way-grid li { font-size: .79rem; line-height: 1.35; }
.volunteer-who { min-height: 220px; padding-top: 1.35rem; padding-bottom: 1.4rem; }
.volunteer-who p,
.volunteer-who li { font-size: .88rem; line-height: 1.35; }
.volunteer-quote { min-height: 225px; padding-top: 1.35rem; padding-bottom: 1.35rem; }
.volunteer-quote p { font-size: .96rem; line-height: 1.38; }
.volunteer-quote cite { font-size: .8rem; }
.volunteer-quote img { height: 175px; }
.volunteer-help { min-height: 125px; padding-top: 1.35rem; padding-bottom: 1.2rem; }
.volunteer-help p { font-size: .9rem; line-height: 1.4; }
.volunteer-cta {
  min-height: 190px;
  margin-top: 1rem;
  margin-bottom: 1.7rem;
  padding-top: 1.65rem;
  padding-bottom: 1.5rem;
}
.volunteer-cta p { font-size: .88rem; line-height: 1.4; }

/* Volunteer page: desktop proportions and crops matched to PDF page 10. */
@media (min-width: 901px) {
  .volunteer-hero {
    position: relative;
    height: 245px;
    min-height: 245px;
    grid-template-columns: 41.5% 58.5%;
    overflow: hidden;
    background: #fff4e5;
  }
  .volunteer-hero .hero-visual,
  .volunteer-hero .hero-figure {
    position: relative;
    height: 245px;
    min-height: 245px;
    overflow: hidden;
  }
  .volunteer-hero .hero-figure img {
    position: absolute;
    top: -102px;
    left: -25px;
    width: 611px;
    max-width: none;
    height: auto;
    min-height: 0;
    object-fit: fill;
  }
  .volunteer-hero .hero-content {
    z-index: 1;
    height: 245px;
    min-height: 245px;
    padding: 10px 0 0;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible;
    background: #fff4e5;
  }
  .volunteer-hero h1 {
    width: 696px;
    max-width: none;
    margin: 0 0 12px;
    transform: translateX(-108px);
    color: #111;
    font-size: 28.6px;
    line-height: 35px;
    font-weight: 800;
    white-space: nowrap;
  }
  .volunteer-hero h1::after {
    content: "";
    display: block;
    width: 411px;
    height: 3px;
    margin: 7px auto 0;
    background: rgba(34, 34, 34, .32);
  }
  .volunteer-hero p {
    width: 520px;
    max-width: none;
    margin: 0 0 0 30px;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 27.5px;
    font-weight: 400;
    text-align: center;
  }
  .volunteer-hero .button-row {
    width: 579px;
    display: grid;
    grid-template-columns: 170px 371px;
    gap: 38px;
    margin: 16px 0 0 36px;
  }
  .volunteer-hero .btn {
    width: 100%;
    min-width: 0;
    height: 72px;
    min-height: 72px;
    padding: 4px 3px;
    gap: 1px;
    background: #5675ff;
    font-size: 21px;
    line-height: 23px;
  }
  .volunteer-hero .btn strong {
    font-size: 21px;
    line-height: 23px;
  }

  .volunteer-powered {
    height: 240px;
    min-height: 240px;
    grid-template-columns: 657px 295px;
    gap: 21px;
    padding: 10px 50px 8px;
    align-items: start;
  }
  .volunteer-powered h2,
  .volunteer-detail-section h2 {
    font-size: 28.6px;
    line-height: 33px;
  }
  .volunteer-powered h2 {
    margin-bottom: 4px;
    text-align: left;
  }
  .volunteer-powered p {
    margin: 0 0 13px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
  }
  .volunteer-powered-intro {
    font-weight: 400;
  }
  .volunteer-powered img {
    width: 295px;
    height: 157px;
    max-height: none;
    margin-top: 27px;
    object-fit: cover;
  }

  .volunteer-why {
    height: 330px;
    min-height: 330px;
    padding: 20px 0 18px;
    background: url('/assets/img/pdf/page-10-img-09.png') center / cover no-repeat;
  }
  .volunteer-why h2 {
    margin-bottom: 39px;
  }
  .volunteer-why-grid {
    width: min(840px, calc(100% - 96px));
    grid-template-columns: repeat(2, minmax(0, 330px));
    gap: 50px clamp(48px, 8vw, 180px);
    justify-content: space-between;
    margin: 0 auto;
  }
  .volunteer-why-grid article {
    width: 330px;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    justify-self: center;
    transform: none !important;
  }
  .volunteer-why-grid article:nth-child(3),
  .volunteer-why-grid article:nth-child(4) {
    transform: none;
  }
  .volunteer-why-grid img {
    width: 64px;
    height: 64px;
  }
  .volunteer-why-grid p,
  .volunteer-why-grid article:nth-child(4) p {
    max-width: 260px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }
  .volunteer-why-grid article:nth-child(1) p {
    max-width: 180px;
  }

  .volunteer-ways {
    height: 430px;
    min-height: 430px;
    padding: 9px 20px 20px;
  }
  .volunteer-ways h2 {
    margin-bottom: 10px;
  }
  .volunteer-way-grid {
    grid-template-columns: repeat(4, 240px);
    gap: 20px;
    justify-content: center;
  }
  .volunteer-way-grid article {
    width: 240px;
    height: 373px;
    min-height: 373px;
    padding: 52px 10px 16px;
    border-radius: 50px;
    background: #fff0dc;
  }
  .volunteer-way-grid h3 {
    width: 228px;
    max-width: none;
    margin-bottom: 19px;
    font-size: 18.5px;
    line-height: 25.5px;
  }
  .volunteer-way-grid ul {
    padding-left: 18px;
  }
  .volunteer-way-grid li {
    margin-bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
  }

  .volunteer-who {
    height: 220px;
    min-height: 220px;
    padding: 15px 24px 12px;
  }
  .volunteer-who h2 {
    margin-bottom: 2px;
  }
  .volunteer-who p,
  .volunteer-who li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 21.75px;
  }
  .volunteer-who p {
    max-width: 735px;
    margin-bottom: 0;
  }
  .volunteer-who ul {
    width: 735px;
    margin-bottom: 0;
    padding-left: 28px;
  }

  .volunteer-quote {
    position: relative;
    display: block;
    height: 242px;
    min-height: 242px;
    padding: 0;
    overflow: hidden;
    background: url('/assets/img/pdf/page-10-img-07.png') center / cover no-repeat;
  }
  .volunteer-quote blockquote {
    position: absolute;
    left: 60px;
    top: 54px;
    width: 655px;
    height: 91px;
    margin: 0;
    padding: 0 28px;
    border-left: 5px solid #111;
    border-right: 5px solid #111;
    font-style: normal;
  }
  .volunteer-quote blockquote::before,
  .volunteer-quote blockquote::after {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 76px;
    line-height: 1;
    font-weight: 800;
  }
  .volunteer-quote blockquote::before {
    left: -40px;
    top: -45px;
  }
  .volunteer-quote blockquote::after {
    right: -28px;
    bottom: -65px;
  }
  .volunteer-quote p {
    position: static;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24.75px;
    font-style: normal;
    text-align: center;
  }
  .volunteer-quote p::before,
  .volunteer-quote p::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 4px;
    background: #111;
  }
  .volunteer-quote p::before {
    left: 39px;
    top: -17px;
  }
  .volunteer-quote p::after {
    right: 38px;
    bottom: -22px;
  }
  .volunteer-quote cite {
    position: absolute;
    right: -80px;
    top: 153px;
    width: 285px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-style: normal;
    text-align: left;
    white-space: nowrap;
  }
  .volunteer-quote-image {
    position: absolute;
    top: 14px;
    right: 41px;
    width: 265px;
    height: 175px;
    overflow: hidden;
  }
  .volunteer-quote-image img {
    position: absolute;
    top: -25px;
    left: -44px;
    width: 353px;
    max-width: none;
    height: 235px;
    margin: 0;
    object-fit: fill;
  }

  .volunteer-help {
    height: 126px;
    min-height: 126px;
    padding: 18px 24px 12px;
  }
  .volunteer-help h2 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 29px;
  }
  .volunteer-help p {
    max-width: 795px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24.75px;
  }

  .volunteer-cta {
    width: 553px;
    max-width: 553px;
    height: 246px;
    min-height: 246px;
    margin: 0 auto 17px;
    padding: 28px 30px 22px;
    border-radius: 0;
  }
  .volunteer-cta h2 {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 27px;
  }
  .volunteer-cta p {
    max-width: 440px;
    margin: 0 auto 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24.75px;
  }
  .volunteer-cta p:last-child {
    max-width: 405px;
    font-size: 20px;
    line-height: 27.75px;
  }
}

@media (max-width: 900px) {
  .site-title { min-height: 48px; font-size: 1.05rem; }
  .nav-wrap {
    min-height: 56px;
    padding: 0 .8rem 0 4rem;
  }
  .brand {
    left: .75rem;
    top: -2px;
    width: 52px;
  }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: .5rem;
    right: .5rem;
    top: 56px;
    z-index: 5;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
    padding: 1rem;
    background: var(--gray-nav);
    white-space: normal;
  }
  .site-nav.open { display: flex; }
  .nav-item {
    display: block;
  }
  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    display: flex;
    gap: .2rem;
    margin-top: .45rem;
    padding: .25rem 0 .25rem .75rem;
    background: transparent;
    border: 0;
    border-left: 3px solid rgba(0,74,173,.35);
    box-shadow: none;
  }
  .dropdown-menu a {
    padding: .32rem 0;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus {
    background: transparent;
  }
  .site-nav .donate-link {
    margin-left: 0;
    min-width: 0;
    font-size: 1.1rem;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .hero-full,
  .hero-full .hero-content { min-height: 140px; }
  .hero-full h1 { font-size: 1.15rem; }
  .hero-full p { font-size: .62rem; }
  .hero-content {
    padding: 1.2rem .75rem;
  }
  .hero h1 { font-size: 1.05rem; margin-bottom: 1.2rem; }
  .home-hero .hero-heading-full {
    padding: 1.2rem .75rem 0;
    font-size: 1.02rem;
    line-height: 1.18;
  }
  .home-hero .hero-content {
    padding-top: 6.2rem;
  }
  .hero p { font-size: .66rem; }
  .hero-figure,
  .hero-figure img { min-height: 0; height: 100%; }
  .button-row { gap: 1.2rem; margin-top: 1.7rem; }
  .btn {
    min-width: 91px;
    min-height: 28px;
    font-size: .76rem;
    padding: .25rem .5rem;
  }
  .content-section { padding: 1.5rem .9rem; }
  .content-section h2 { font-size: 1.3rem; }
  .programs-overview h2 { font-size: 1.28rem; }
  .programs-forward h2 { font-size: 1rem; }
  .programs-start .button-row {
    justify-content: center;
    gap: 1rem;
  }
  .programs-start .btn {
    min-width: 140px;
  }
  .section-intro { font-size: .82rem; }
  .card-grid { gap: .9rem; }
  .info-card { min-height: 150px; padding: .7rem .45rem; }
  .icon-card { min-height: 88px; border-radius: 14px; padding: .55rem .35rem; }
  .panel-image-card { min-height: 0; padding: 0; }
  .clipart-icon { width: 52px; height: 52px; margin-top: .35rem; }
  .clipart-icon svg { stroke-width: 4.5; }
  .info-card h3 { font-size: .76rem; }
  .info-card p { font-size: .62rem; }
  .text-link { min-width: 76px; min-height: 26px; font-size: .68rem; }
  .program-grid { gap: .8rem; }
  .program-card img { height: 100px; }
  .program-card-feature { padding-top: .35rem; }
  .program-card-feature img { width: calc(100% - 1rem); height: 100px; margin: 0 .5rem; }
  .program-card-feature-copy { padding: .35rem .65rem 0; }
  .program-card-feature-copy h3 { font-size: .62rem; }
  .program-card-feature-copy .program-card-subtitle { font-size: .5rem; }
  .program-card-body { min-height: 130px; padding: .55rem .65rem .75rem; }
  .program-card h3 { font-size: .78rem; }
  .program-card p { font-size: .62rem; }
  .stats-band strong { font-size: 1.25rem; }
  .stats-band span { font-size: .58rem; }
  .home-benefits .card-grid,
  .home-programs .card-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    max-width: 320px;
  }
  .home-benefits h2,
  .home-resource-cta h2,
  .home-sponsor-cta h2 { font-size: 1.3rem; }
  .home-programs h2 {
    max-width: 430px;
    font-size: 1.1rem;
  }
  .home-programs-heading-line {
    gap: .35rem;
    white-space: normal;
  }
  .home-programs-heading-line::before,
  .home-programs-heading-line::after {
    width: 36px;
    flex-basis: 36px;
  }
  .home-programs h2::before,
  .home-programs h2::after,
  .home-resource-cta h2::before,
  .home-resource-cta h2::after {
    width: 36px;
    margin-inline: .35rem;
  }
  .home-intro-section p,
  .home-resource-cta p,
  .home-sponsor-cta p { font-size: .78rem; }
  .stats-band.home-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: .9rem .75rem;
  }
  .stats-band.home-stats div:nth-child(odd) {
    border-left: 0;
  }
  .home-quote-layout {
    min-height: 0;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }
  .home-quote-layout img {
    width: 92px;
    max-height: 130px;
  }
  .home-quote-layout p {
    font-size: .66rem;
  }
  .home-resource-cta .btn,
  .home-sponsor-cta .btn {
    min-width: 180px;
  }
  .nav-hero {
    grid-template-columns: 1fr 1fr;
    height: 170px;
    min-height: 170px;
  }
  .nav-hero .hero-heading-full {
    top: .75rem;
    left: 66%;
    width: min(260px, 52%);
    font-size: 1.05rem;
    line-height: 1.2;
  }
  .nav-hero .hero-heading-full::after {
    width: min(230px, 48vw);
    margin-top: .6rem;
  }
  .nav-hero .hero-content {
    height: 170px;
    padding: 5.65rem .75rem .8rem;
    justify-content: flex-start;
  }
  .nav-hero .hero-figure,
  .nav-hero .hero-figure img {
    height: 170px;
    min-height: 170px;
  }
  .nav-hero .hero-figure img {
    transform: scale(1.18);
    transform-origin: 48% 45%;
  }
  .nav-hero h1 { margin-bottom: .65rem; }
  .nav-hero p {
    font-size: .58rem;
    transform: translateX(-.55rem);
  }
  .nav-resource-grid { gap: .45rem; }
  .nav-resource-card { min-height: 150px; padding: .45rem .3rem; }
  .nav-resource-card img { width: 44px; height: 44px; }
  .nav-resource-card h3 { font-size: .58rem; }
  .nav-resource-card p { font-size: .48rem; min-height: 54px; }
  .nav-resource-card .text-link { min-width: 72px; min-height: 24px; font-size: .56rem; }
  .journey-tools {
    height: 92px;
    min-height: 92px;
    padding-top: 4px;
    background-position: center 42%;
  }
  .journey-tools h2 { margin-bottom: .45rem; font-size: .7rem; }
  .journey-tool-links { gap: .6rem; margin-top: 0; }
  .journey-tool-links .btn { min-height: 28px; font-size: .55rem; }
  .nav-programs .program-grid { grid-template-columns: repeat(3, 1fr); gap: .7rem; }
  .nav-programs h2 { font-size: 1.3rem; }
  .nav-programs .program-card { min-width: 0; overflow: hidden; }
  .nav-programs .program-card img { height: 58px; }
  .nav-programs .program-card-body { min-height: 128px; padding: .5rem .35rem; }
  .nav-programs .program-card h3 { font-size: .56rem; overflow-wrap: anywhere; }
  .nav-programs .program-card p { font-size: .48rem; overflow-wrap: anywhere; }
  .nav-programs .program-card .text-link {
    min-width: 0;
    width: 100%;
    padding: .25rem .2rem;
    font-size: .56rem;
  }
  .get-help-hero,
  .get-help-hero .hero-content,
  .get-help-hero .hero-figure,
  .get-help-hero .hero-figure img {
    min-height: 132px;
  }
  .get-help-hero .hero-content {
    padding: .65rem .8rem;
    column-gap: .9rem;
  }
  .get-help-hero h1 { font-size: 1rem; margin-bottom: .55rem; }
  .get-help-hero p { font-size: .58rem; }
  .get-help-hero .button-row { gap: .25rem; }
  .get-help-hero .btn { min-width: 88px; min-height: 22px; font-size: .54rem; }
  .get-help-programs { padding: .9rem .8rem 1rem; }
  .get-help-programs h2 { font-size: 1.1rem; }
  .get-help-programs .section-intro { font-size: .66rem; }
  .get-help-programs .program-grid { grid-template-columns: repeat(3, 1fr); gap: .7rem; }
  .get-help-programs .program-card { min-width: 0; overflow: hidden; }
  .get-help-programs .program-card img { height: 58px; }
  .get-help-programs .program-card-body { min-height: 128px; padding: .45rem .3rem .6rem; }
  .get-help-programs .program-card h3 { font-size: .58rem; overflow-wrap: anywhere; }
  .get-help-programs .program-card p { font-size: .5rem; overflow-wrap: anywhere; }
  .get-help-programs .program-card .text-link {
    min-width: 0;
    width: 100%;
    min-height: 22px;
    font-size: .54rem;
    padding: .2rem .15rem;
  }
  .get-help-serve-section { padding: .95rem .8rem 1rem; }
  .get-help-serve-section h2 { font-size: 1.08rem; }
  .get-help-serve-section p { font-size: .62rem; }
  .serve-grid { gap: .65rem; margin-top: 1rem; }
  .serve-icon { width: 54px; height: 54px; }
  .serve-item { font-size: .58rem; }
  .get-help-quote-section { padding: .65rem .75rem .8rem; }
  .get-help-quote-section blockquote {
    padding: .8rem 1.55rem .9rem;
    font-size: .64rem;
  }
  .get-help-quote-section blockquote::before { left: .25rem; top: .15rem; font-size: 2.3rem; }
  .get-help-quote-section blockquote::after { right: .25rem; bottom: .1rem; font-size: 2.3rem; }
  .get-help-resource-section { min-height: 130px; padding: .75rem 1rem; }
  .get-help-resource-content {
    max-width: 250px;
    margin-left: auto;
  }
  .get-help-resource-content h2 { font-size: .9rem; }
  .get-help-resource-content p { font-size: .66rem; }
  .get-help-contact-section {
    grid-template-columns: 80px 1fr 80px;
    padding: 1rem .7rem 1.1rem;
    gap: .45rem;
  }
  .get-help-contact-section img { height: 62px; }
  .get-help-contact-section h2 { font-size: .82rem; }
  .get-help-contact-section p { font-size: .58rem; }
  .about-hero,
  .about-hero .hero-content { min-height: 62px; }
  .about-hero h1 { font-size: 1rem; }
  .about-hero p { font-size: .58rem; }
  .about-why-section,
  .about-difference-section,
  .about-need-section,
  .about-pillars-section,
  .about-volunteers-section,
  .about-approach-section,
  .about-funding-section {
    padding-left: .8rem;
    padding-right: .8rem;
  }
  .about-why-layout {
    grid-template-columns: 1.35fr 150px;
    gap: .8rem;
  }
  .about-portrait-grid { gap: .35rem; }
  .about-copy h2,
  .about-difference-section h2,
  .about-need-section h2,
  .about-volunteers-section h2,
  .about-approach-section h2,
  .about-funding-section h2 {
    font-size: 1rem;
  }
  .about-copy p,
  .about-difference-section p,
  .about-difference-section li,
  .about-need-section p,
  .about-volunteers-section p,
  .about-approach-section li,
  .about-funding-section p {
    font-size: .64rem;
    line-height: 1.34;
  }
  .about-difference-layout {
    grid-template-columns: 1fr;
    gap: .7rem;
  }
  .about-impact { border-radius: 16px; }
  .about-impact h3 { font-size: .82rem; }
  .about-impact-grid strong { font-size: .86rem; }
  .about-impact-grid span { font-size: .52rem; }
  .about-pillars-grid { gap: .5rem; }
  .about-pillars-grid article { min-height: 108px; padding: .55rem .35rem; }
  .about-pillars-grid h3 { font-size: .68rem; }
  .about-pillars-grid p { font-size: .58rem; }
  .retreat-hero,
  .retreat-hero .hero-content,
  .retreat-hero .hero-figure,
  .retreat-hero .hero-figure img { min-height: 225px; }
  .retreat-hero h1 { font-size: 3rem; }
  .retreat-hero p { max-width: 620px; font-size: .98rem; }
  .retreat-hero .button-row {
    width: min(560px, 92%);
    grid-template-columns: repeat(2, minmax(185px, 1fr));
    gap: 2rem;
  }
  .retreat-hero .btn { min-width: 185px; min-height: 38px; font-size: .86rem; }
  .retreat-intro { padding: .95rem 1rem .75rem; }
  .retreat-intro p { font-size: .78rem; }
  .retreat-intro::after { width: 270px; margin-top: .7rem; }
  .retreat-pillars {
    max-width: 760px;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .retreat-pillars div { min-height: 66px; padding: .28rem .75rem; }
  .retreat-education { min-height: 250px; padding: .45rem .9rem 1.2rem; }
  .retreat-education h2 { font-size: 1.12rem; }
  .retreat-education h2::before,
  .retreat-education h2::after { width: 60px; }
  .retreat-education p {
    max-width: 72%;
    padding: .3rem 2.4rem .32rem;
    font-size: .78rem;
  }
  .retreat-circle { width: 82px; height: 82px; top: 38px; }
  .retreat-circle-left { left: 1rem; }
  .retreat-circle-right { right: 1rem; }
  .retreat-topic-grid { max-width: 760px; gap: .4rem .5rem; }
  .retreat-topic-grid span { min-width: 84px; font-size: .68rem; padding: .22rem .55rem; }
  .retreat-speakers-link { min-width: 180px; min-height: 35px; font-size: .86rem; }
  .retreat-community { padding: 1rem 1rem 1.15rem; }
  .retreat-community h2 { font-size: 1.08rem; }
  .retreat-community p { font-size: .68rem; }
  .retreat-details {
    grid-template-columns: 1fr 1fr 210px;
    gap: 1rem;
    padding: 1rem 1rem;
  }
  .retreat-details h3 { font-size: .86rem; }
  .retreat-details p { font-size: .64rem; }
  .retreat-event-card { min-height: 170px; border-radius: 26px; }
  .retreat-event-card h3 { font-size: .82rem; }
  .retreat-event-card p { font-size: .7rem; }
  .retreat-event-card .btn { min-width: 130px; min-height: 28px; font-size: .62rem; }
  .retreat-quote-row {
    grid-template-columns: 140px 1fr;
    padding: .85rem 1rem;
  }
  .retreat-quote-row img { width: 118px; height: auto; }
  .retreat-quote-row blockquote { font-size: .68rem; }
  .retreat-quote-row cite { font-size: .6rem; }
  .retreat-photos h2 { font-size: 1.45rem; }
  .retreat-photo-grid {
    max-width: 660px;
    grid-template-rows: 72px 72px;
  }
  .retreat-closing {
    max-width: 660px;
  }
  .retreat-closing p { font-size: .58rem; }
  .lipa-hero,
  .lipa-hero .hero-content,
  .lipa-hero .hero-figure,
  .lipa-hero .hero-figure img { min-height: 210px; }
  .lipa-hero .hero-content { padding: .9rem .8rem; }
  .lipa-hero h1 {
    width: auto;
    font-size: 1.65rem;
    transform: none;
  }
  .lipa-hero h1::after { margin-top: .45rem; }
  .lipa-hero p {
    width: auto;
    font-size: .72rem;
    transform: none;
  }
  .lipa-hero .button-row { width: min(330px, 92%); gap: .75rem; }
  .lipa-hero .btn { min-height: 36px; font-size: .58rem; }
  .lipa-hero .btn strong { font-size: .62rem; }
  .lipa-detail-section h2 { font-size: 1.45rem; }
  .lipa-support { padding: 1rem .9rem 1.15rem; }
  .lipa-support p { font-size: .76rem; }
  .lipa-help { padding: 1.15rem .8rem 1.45rem; }
  .lipa-help-intro { margin-bottom: 1rem; font-size: .68rem; }
  .lipa-help-grid { gap: .85rem; }
  .lipa-icon { width: 72px; height: 72px; }
  .lipa-icon svg { width: 32px; height: 32px; }
  .lipa-help-grid h3 { font-size: .7rem; }
  .lipa-help-grid p { font-size: .58rem; }
  .lipa-works { padding: 1.15rem .9rem 1.45rem; }
  .lipa-works h2::before,
  .lipa-works h2::after,
  .lipa-help h2::before,
  .lipa-help h2::after,
  .lipa-for h2::before,
  .lipa-for h2::after { width: 78px; margin: 0 .55rem .38rem; }
  .lipa-step-grid { gap: .85rem; }
  .lipa-step-grid article { min-height: 132px; padding: .85rem .55rem; border-radius: 20px; }
  .lipa-step-title { min-height: 42px; gap: .35rem; margin-bottom: .55rem; }
  .lipa-step-title span { width: 30px; height: 30px; font-size: .9rem; }
  .lipa-step-title h3 { font-size: .7rem; }
  .lipa-step-grid p { font-size: .58rem; }
  .lipa-for { padding: 1rem .9rem 1.15rem; }
  .lipa-for-copy p,
  .lipa-for-copy li { font-size: .76rem; }
  .lipa-alone { min-height: 170px; }
  .lipa-alone > div { padding: 1rem .9rem; }
  .lipa-alone h2 { font-size: .92rem; }
  .lipa-alone p { font-size: .68rem; }
  .lipa-alone img { min-height: 170px; }
  .lipa-contact-band { padding: 1.1rem .8rem 1.2rem; }
  .lipa-contact-band h2 { font-size: .95rem; }
  .lipa-contact-grid { gap: 1.2rem; }
  .lipa-contact-grid a { min-height: 38px; font-size: .62rem; }
  .lipa-contact-grid strong { font-size: .66rem; }
  .resource-bag-hero,
  .resource-bag-hero .hero-content,
  .resource-bag-hero .hero-figure,
  .resource-bag-hero .hero-figure img { min-height: 145px; }
  .resource-bag-hero .hero-content { padding: .75rem .7rem; }
  .resource-bag-hero h1 { font-size: 1.1rem; }
  .resource-bag-hero p { font-size: .56rem; }
  .resource-bag-hero .button-row { gap: .55rem; }
  .resource-bag-hero .btn { min-height: 30px; font-size: .52rem; }
  .resource-bag-hero .btn strong { font-size: .54rem; }
  .resource-bag-detail-section h2 { font-size: .88rem; }
  .resource-conversation { padding: .85rem .9rem; }
  .resource-conversation p,
  .resource-support-band p,
  .resource-family p,
  .resource-request p,
  .resource-alone p,
  .resource-donate p { font-size: .58rem; }
  .resource-support-band,
  .resource-family,
  .resource-request { padding: .85rem .9rem; }
  .resource-included { padding: .85rem .8rem 1rem; }
  .resource-item-grid { gap: .75rem; }
  .resource-item-grid article { min-height: 185px; border-radius: 0 0 16px 16px; }
  .resource-item-grid img { height: 70px; }
  .resource-item-grid h3 { min-height: 38px; font-size: .58rem; }
  .resource-item-grid p { font-size: .5rem; margin: 0 .4rem .55rem; }
  .resource-contact-grid { max-width: 420px; gap: 1rem; }
  .resource-contact-grid a { min-height: 32px; font-size: .52rem; }
  .resource-contact-grid strong { font-size: .55rem; }
  .resource-alone { min-height: 135px; }
  .resource-alone img { min-height: 135px; }
  .resource-donate .btn { min-width: 100px; min-height: 24px; font-size: .62rem; }
  .cto-hero,
  .cto-hero .hero-content,
  .cto-hero .hero-figure,
  .cto-hero .hero-figure img { min-height: 140px; }
  .cto-hero .hero-content { padding: .75rem .7rem; }
  .cto-hero h1 { font-size: 1rem; }
  .cto-hero h1::after { margin-top: .42rem; }
  .cto-hero p { font-size: .56rem; }
  .cto-hero .btn { min-width: 105px; min-height: 24px; font-size: .58rem; }
  .cto-detail-section h2 { font-size: .9rem; }
  .cto-simple,
  .cto-manage,
  .cto-created,
  .cto-more { padding: .85rem .9rem; }
  .cto-simple p,
  .cto-created p,
  .cto-clarity p,
  .cto-clarity li { font-size: .66rem; }
  .cto-manage-grid { gap: .7rem; }
  .cto-manage-grid img { width: 54px; height: 54px; }
  .cto-manage-grid h3 { font-size: .48rem; }
  .cto-manage p { font-size: .52rem; }
  .cto-clarity { min-height: 145px; }
  .cto-clarity img { min-height: 145px; }
  .cto-clarity > div { padding: .85rem .9rem; }
  .cto-info-panels {
    gap: 1.4rem;
    padding: 1rem 1.6rem;
  }
  .cto-info-panels article { min-height: 160px; padding: .8rem .9rem; }
  .cto-info-panels h2 { font-size: .72rem; }
  .cto-info-panels p,
  .cto-info-panels li { font-size: .58rem; }
  .cto-more h2 { font-size: 1rem; }
  .cto-more > div { gap: 1rem; }
  .cto-more a { min-height: 30px; font-size: .62rem; }
  .volunteer-hero,
  .volunteer-hero .hero-content,
  .volunteer-hero .hero-figure,
  .volunteer-hero .hero-figure img { min-height: 145px; }
  .volunteer-hero .hero-content { padding: .75rem .7rem; }
  .volunteer-hero h1 { font-size: 1.02rem; }
  .volunteer-hero p { font-size: .56rem; }
  .volunteer-hero .button-row { gap: .45rem; }
  .volunteer-hero .btn { min-width: 102px; min-height: 28px; font-size: .48rem; }
  .volunteer-hero .btn strong { font-size: .5rem; }
  .volunteer-detail-section h2 { font-size: .92rem; }
  .volunteer-powered { gap: .8rem; padding: .8rem .9rem; }
  .volunteer-powered p { font-size: .56rem; }
  .volunteer-powered img { max-height: 95px; }
  .volunteer-why { padding: .8rem .9rem .9rem; }
  .volunteer-why h2 { margin-bottom: .8rem; }
  .volunteer-why-grid {
    width: min(640px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem 1.4rem;
    margin: 0 auto;
  }
  .volunteer-why-grid article {
    width: 100%;
    max-width: 280px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: .35rem;
    justify-self: center;
    transform: none !important;
  }
  .volunteer-why-grid img { width: 40px; height: 40px; }
  .volunteer-why-grid p { font-size: .58rem; }
  .volunteer-ways { padding: .85rem .9rem; }
  .volunteer-way-grid { gap: .55rem; }
  .volunteer-way-grid article { min-height: 120px; padding: .75rem .5rem; border-radius: 14px; }
  .volunteer-way-grid h3 { font-size: .52rem; }
  .volunteer-way-grid li { font-size: .45rem; }
  .volunteer-who p,
  .volunteer-who li,
  .volunteer-help p,
  .volunteer-cta p { font-size: .54rem; }
  .volunteer-quote {
    grid-template-columns: 1fr 120px;
    gap: .8rem;
    padding: .75rem 1rem;
  }
  .volunteer-quote p { font-size: .54rem; }
  .volunteer-quote cite { font-size: .48rem; }
  .volunteer-quote img { height: 82px; }
  .volunteer-cta { max-width: 380px; padding: .85rem 1rem; }
  .speakers-hero,
  .speakers-hero .hero-content { min-height: 160px; }
  .speakers-hero h1 { font-size: 1.45rem; margin-bottom: .8rem; }
  .speakers-hero p { font-size: .72rem; }
  .speakers-detail-section { padding: 1.4rem 1.2rem 2rem; }
  .speaker-year {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .9fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .speakers-detail-section h2 { font-size: 1rem; }
  .speakers-detail-section li { font-size: .52rem; }
  .speaker-photo-stack { gap: 1.5rem; margin-top: 1.2rem; }
  .speaker-year:nth-child(1) .speaker-photo-stack img { height: 210px; }
  .speaker-year:nth-child(2) .speaker-photo-stack img { height: 190px; }
  .speaker-year:nth-child(3) .speaker-photo-stack img:first-child { height: 155px; }
  .speaker-year:nth-child(3) .speaker-photo-stack img:last-child { height: 175px; }
  .page-driving .site-title { min-height: 48px; font-size: 1.05rem; }
  .page-driving .nav-wrap { min-height: 56px; }
  .page-driving .brand { top: -12px; }
  .page-driving .site-nav {
    gap: .75rem;
    transform: none;
    font-size: .96rem;
  }
  .page-driving .site-nav .donate-link {
    width: 138px;
    min-width: 138px;
    height: 38px;
    min-height: 38px;
    font-size: 1.3rem;
  }
  .driving-hero {
    grid-template-columns: 1fr 220px;
    height: auto;
    min-height: 190px;
    margin-bottom: 72px;
  }
  .driving-hero .hero-content,
  .driving-hero .hero-visual {
    height: auto;
    min-height: 190px;
  }
  .driving-hero h1 { font-size: 2.2rem; }
  .driving-hero p {
    max-width: 520px;
    font-size: 1rem;
  }
  .driving-hero .hero-meta {
    flex-wrap: wrap;
    gap: .35rem .65rem;
    font-size: .82rem;
  }
  .driving-hero .hero-meta span + span {
    padding-left: .55rem;
  }
  .driving-hero .hero-figure,
  .driving-hero .hero-figure img {
    width: 168px;
    height: 168px;
  }
  .driving-hero .button-row {
    bottom: -66px;
    height: 66px;
    gap: .7rem;
    padding: .55rem .8rem .45rem;
  }
  .driving-hero .btn,
  .driving-detail-section .btn {
    min-width: 0;
    min-height: 44px;
    padding: .65rem;
    font-size: .8rem;
    line-height: 1.2;
  }
  .driving-detail-section h2 { font-size: 1.65rem; }
  .driving-intro {
    height: auto;
    min-height: 0;
  }
  .driving-intro p,
  .driving-happening li,
  .driving-matters li,
  .driving-show li,
  .driving-super li,
  .driving-yellow-band li,
  .driving-matters p,
  .driving-show p,
  .driving-super p,
  .driving-yellow-band p,
  .driving-challenge p {
    font-size: .78rem;
  }
  .driving-photo-grid { width: 640px; max-width: 100%; }
  .driving-photo-grid img { height: 143px; }
  .driving-photo-grid img:first-child { height: 159px; }
  .driving-event-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    margin-top: 0;
    gap: 1rem;
    padding: 1rem .9rem 1.4rem;
  }
  .driving-happening {
    height: auto;
    min-height: 0;
    border-radius: 28px;
  }
  .driving-schedule p { font-size: .96rem; }
  .driving-show,
  .driving-schedule { padding: 1rem .8rem; }
  .driving-show .btn {
    left: 0;
    min-width: 0;
    margin-top: .8rem;
  }
  .driving-activity-band {
    height: auto;
    min-height: 0;
    padding: 1rem .8rem;
  }
  .driving-pickleball-wrap { padding-right: .8rem; }
  .driving-pickleball {
    height: 100%;
    min-height: 285px;
  }
  .driving-pickleball h2 { font-size: 1.65rem; }
  .driving-pickleball p { font-size: .82rem; line-height: 1.35; }
  .driving-mammography {
    grid-template-columns: minmax(150px, 45%) minmax(0, 1fr);
    gap: .8rem;
    padding: 0 0 0 .9rem;
  }
  .driving-mammography-flyer,
  .driving-mammography-flyer img {
    width: 100%;
    height: auto;
  }
  .driving-mammography-copy p { font-size: .78rem; line-height: 1.35; }
  .driving-mammography-buttons { gap: .7rem; margin-top: 1rem; }
  .driving-mammography-buttons .btn { width: 132px; }
  .driving-supporters {
    height: auto;
    min-height: 0;
    padding: .8rem;
  }
  .driving-supporters h2 { padding-top: 0; }
  .driving-supporter-logos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .driving-supporter-row-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 130px;
    gap: 1rem;
  }
  .driving-supporter-row-bottom {
    grid-template-columns: minmax(0, 1fr) 196px minmax(0, 1fr);
    width: min(100%, 720px);
    min-height: 90px;
    gap: 1.25rem;
  }
  .driving-supporter-row-bottom .driving-supporter-cell { height: 90px; }
  .driving-individual-sponsors { font-size: .82rem; }
  .driving-supporter-logo {
    object-fit: contain;
  }
  .driving-supporter-logo.supporter-picklr,
  .driving-supporter-logo.supporter-bosque,
  .driving-supporter-logo.supporter-rebel { object-fit: cover; }
  .driving-super {
    margin-right: 0;
    padding: 1.15rem 1.5rem 1.35rem;
    border-radius: 30px;
  }
  .driving-super .btn { left: 0; }
  .driving-yellow-band {
    height: auto;
    min-height: 0;
    gap: 1.2rem;
    padding: 1.35rem 1.3rem;
  }
  .driving-partner { padding: 1rem 1.2rem; }
  .driving-yellow-band .driving-partner .btn {
    left: 0;
    top: 0;
    min-width: 0;
  }
  .driving-challenge {
    height: auto;
    min-height: 0;
  }
  .driving-challenge h2 { font-size: 2rem; }
  .challenge-teams,
  .challenge-teams strong { font-size: 1rem; }
  .leadership-hero,
  .leadership-hero .hero-content { min-height: 140px; }
  .leadership-hero h1 { font-size: 1.55rem; }
  .leadership-hero p { font-size: .8rem; }
  .leadership-detail-section h2 { font-size: 1.28rem; }
  .leadership-guided {
    padding: .9rem 1.1rem 1rem;
  }
  .leadership-guided h2 { font-size: .9rem; }
  .leadership-guided p,
  .leadership-board > p,
  .leadership-staff > p,
  .leadership-medical > p,
  .leadership-medical li,
  .leadership-cta p {
    font-size: .62rem;
  }
  .leadership-board,
  .leadership-staff,
  .leadership-medical {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .leadership-people-row { gap: .45rem; }
  .leadership-directors .leadership-person img { height: 96px; }
  .leadership-staff-row {
    grid-template-columns: repeat(2, 110px);
  }
  .leadership-staff-row .leadership-person img { height: 78px; }
  .leadership-person h3 { font-size: .58rem; }
  .leadership-person p { font-size: .5rem; }
  .leadership-cta-row {
    gap: 2rem;
    padding: 1rem 3.2rem 1.35rem;
  }
  .leadership-cta {
    padding: 1rem 1.1rem;
  }
  .leadership-cta h2 { font-size: .9rem; }
  .leadership-cta .btn {
    min-height: 28px;
    font-size: .62rem;
  }
  .contact-hero,
  .contact-hero .hero-content {
    min-height: 190px;
  }
  .contact-hero h1 { font-size: 2.15rem; }
  .contact-hero p { font-size: .95rem; }
  .contact-help,
  .contact-form-wrap,
  .contact-subscribe {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lined-heading {
    gap: .7rem;
    font-size: 1rem;
  }
  .contact-help-grid {
    gap: .8rem 1.2rem;
  }
  .contact-help-grid article {
    min-height: 90px;
    padding: .75rem .85rem;
  }
  .contact-help-grid h3,
  .contact-help-grid p,
  .contact-statewide,
  .contact-response-note,
  .contact-help-footer p {
    font-size: .62rem;
  }
  .contact-form {
    max-width: 600px;
  }
  .form-field input {
    min-height: 26px;
  }
  .form-field textarea {
    min-height: 75px;
  }
  .contact-subscribe-box {
    max-width: 330px;
  }
  .contact-subscribe-box label {
    font-size: .85rem;
  }
  .foundation-hero,
  .foundation-hero .hero-content {
    min-height: 162px;
  }
  .foundation-hero h1 { font-size: 1.65rem; }
  .foundation-hero p { font-size: .78rem; }
  .foundation-detail-section h2 { font-size: 1.18rem; }
  .foundation-intro,
  .foundation-why,
  .foundation-support,
  .foundation-board,
  .foundation-steward,
  .foundation-sustain {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .foundation-intro p,
  .foundation-why p,
  .foundation-steward p,
  .foundation-sustain p,
  .foundation-support-grid p,
  .foundation-board > p {
    font-size: .58rem;
  }
  .foundation-support-grid {
    gap: .75rem;
  }
  .foundation-support-grid article {
    min-height: 220px;
    border-radius: 18px;
    padding: .65rem .7rem .75rem;
  }
  .foundation-support-grid h3 {
    min-height: 34px;
    font-size: .72rem;
  }
  .foundation-support-image {
    width: 142px;
    height: 74px;
    margin-bottom: .5rem;
  }
  .foundation-support-grid article:first-child .foundation-support-image {
    width: 156px;
  }
  .foundation-support-grid .btn,
  .foundation-sustain .btn {
    min-height: 28px;
    font-size: .62rem;
  }
  .foundation-board-grid {
    grid-template-columns: repeat(4, 90px);
    gap: .8rem .9rem;
  }
  .foundation-board-grid img {
    width: 78px;
    height: 78px;
  }
  .foundation-board-grid h3 { font-size: .52rem; }
  .foundation-board-grid p { font-size: .46rem; }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-list,
  .split-layout { grid-template-columns: 1fr; }
  .about-why-layout { grid-template-columns: 1fr; }
  .about-portrait-grid {
    max-width: 220px;
    margin: 0 auto;
  }
  .about-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-impact-grid div:nth-child(3) { border-left: 0; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .about-pillars-grid article {
    min-height: 0;
    padding: .75rem .8rem;
  }
  .about-pillars-grid h3 { font-size: .82rem; }
  .about-pillars-grid p { font-size: .68rem; }
  .get-help-hero .hero-content {
    grid-template-columns: 1fr;
  }
  .get-help-hero p {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }
  .get-help-resource-section {
    background-position: center, -180px center;
    background-size: 100% 100%, 180% auto;
  }
  .get-help-resource-content {
    margin-left: 0;
    max-width: 100%;
  }
  .get-help-contact-section {
    grid-template-columns: 1fr;
  }
  .get-help-contact-section img {
    display: none;
  }
  .retreat-hero .button-row {
    grid-template-columns: 1fr;
    gap: .4rem;
    width: auto;
  }
  .retreat-pillars,
  .retreat-details,
  .retreat-quote-row {
    grid-template-columns: 1fr;
  }
  .retreat-pillars div {
    border-left: 0;
    border-top: 1px solid var(--blue);
  }
  .retreat-pillars div:first-child { border-top: 0; }
  .retreat-circle { display: none; }
  .retreat-details article {
    border-right: 0;
    border-bottom: 1px solid var(--blue);
    padding: 0 0 .7rem;
  }
  .retreat-event-card {
    max-width: 230px;
    margin: 0 auto;
  }
  .retreat-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 88px);
  }
  .retreat-photo-grid img:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  .retreat-photo-grid img:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  .retreat-photo-grid img:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
  .lipa-hero,
  .lipa-alone,
  .lipa-help-grid,
  .lipa-step-grid,
  .lipa-contact-grid {
    grid-template-columns: 1fr;
  }
  .lipa-hero .button-row {
    grid-template-columns: 1fr;
  }
  .lipa-help-grid {
    max-width: 260px;
  }
  .lipa-step-grid {
    max-width: 300px;
  }
  .lipa-for-copy ul {
    margin-left: 1.2rem;
  }
  .lipa-alone img {
    min-height: 170px;
  }
  .resource-bag-hero,
  .resource-bag-hero .button-row,
  .resource-item-grid,
  .resource-contact-grid,
  .resource-alone {
    grid-template-columns: 1fr;
  }
  .resource-item-grid {
    max-width: 250px;
  }
  .resource-item-grid img {
    height: 115px;
  }
  .resource-alone img {
    min-height: 175px;
  }
  .cto-hero,
  .cto-manage-grid,
  .cto-clarity,
  .cto-info-panels,
  .cto-more > div {
    grid-template-columns: 1fr;
  }
  .cto-manage-grid {
    max-width: 260px;
  }
  .cto-clarity img {
    min-height: 180px;
  }
  .volunteer-hero,
  .volunteer-powered,
  .volunteer-way-grid,
  .volunteer-quote {
    grid-template-columns: 1fr;
  }
  .volunteer-hero .hero-visual {
    grid-column: 1;
    grid-row: 1;
  }
  .volunteer-hero .hero-content {
    grid-column: 1;
    grid-row: 2;
  }
  .volunteer-hero .button-row {
    grid-template-columns: 1fr;
  }
  .volunteer-powered img,
  .volunteer-quote img {
    max-width: 260px;
    margin: 0 auto;
  }
  .volunteer-why-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
  .volunteer-way-grid {
    max-width: 270px;
    margin: 0 auto;
  }
  .speaker-year {
    grid-template-columns: 1fr;
  }
  .speaker-photo-stack img {
    max-width: 100%;
  }
  .driving-hero {
    grid-template-columns: 1fr;
    margin-bottom: 130px;
  }
  .driving-hero .hero-content { min-height: 210px; }
  .driving-hero .hero-visual { min-height: 150px; }
  .driving-hero h1 { font-size: 2rem; }
  .driving-hero p { font-size: .92rem; }
  .driving-hero-break,
  .driving-pickleball-break { display: none; }
  .driving-hero .hero-meta {
    display: grid;
    gap: .35rem;
    font-size: .78rem;
  }
  .driving-hero .hero-meta span:nth-child(2)::before,
  .driving-hero .hero-meta span:nth-child(3)::before {
    content: "";
    margin-right: 0;
  }
  .driving-hero .hero-meta span + span {
    border-left: 0;
    padding-left: 0;
  }
  .driving-hero .hero-figure,
  .driving-hero .hero-figure img {
    width: 136px;
    height: 136px;
  }
  .driving-hero .button-row {
    bottom: -125px;
    height: 125px;
    grid-template-columns: 1fr 1fr;
  }
  .driving-intro { padding: 1rem .8rem 1.4rem; }
  .driving-photo-grid { gap: .45rem; }
  .driving-photo-grid img {
    height: clamp(78px, 21vw, 120px);
  }
  .driving-photo-grid img:first-child {
    height: clamp(90px, 24.15vw, 138px);
  }
  .driving-event-grid,
  .driving-yellow-band,
  .driving-activity-band {
    grid-template-columns: 1fr;
  }
  .driving-pickleball-wrap {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 3px solid #ffcc16;
  }
  .driving-mammography {
    grid-template-columns: minmax(140px, 44%) minmax(0, 1fr);
    padding: 1rem 0 0;
  }
  .driving-supporter-row-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
  }
  .driving-supporter-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 1rem;
  }
  .driving-supporter-row-bottom .driving-supporter-cell {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: 196px;
  }
  .driving-individual-sponsors {
    align-content: start;
    align-self: start;
    text-align: center;
  }
  .driving-individual-sponsors-left {
    grid-column: 1;
    grid-row: 2;
  }
  .driving-individual-sponsors-right {
    grid-column: 2;
    grid-row: 2;
  }
  .driving-yellow-band article + article {
    border-left: 0;
    border-top: 2px solid #111;
    padding-left: 0;
    padding-top: 1.1rem;
  }
  .driving-challenge { padding: 1.3rem .8rem 1.7rem; }
  .leadership-directors {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-directors .leadership-person img {
    height: 120px;
  }
  .leadership-staff-row,
  .leadership-cta-row {
    grid-template-columns: 1fr;
  }
  .leadership-staff-row {
    max-width: 140px;
  }
  .leadership-cta-row {
    gap: 1rem;
    padding: .9rem 1.2rem 1.2rem;
  }
  .contact-help-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: .9rem .9rem 1rem;
  }
  .contact-help-footer {
    padding-bottom: 1.5rem;
  }
  .foundation-support-grid,
  .foundation-board-grid {
    grid-template-columns: 1fr;
  }
  .foundation-support-grid {
    max-width: 270px;
    margin: 0 auto;
  }
  .foundation-board-grid {
    max-width: 160px;
    margin: 0 auto;
  }
  .foundation-board-grid img {
    width: 110px;
    height: 110px;
  }
  .donate-hero .hero-content {
    min-height: 220px;
    max-width: none;
    padding: 1.4rem 1rem 1.2rem;
  }
  .donate-hero h1 {
    font-size: 1.45rem;
  }
  .donate-hero p {
    font-size: .78rem;
  }
  .donate-possible-grid,
  .donate-sponsor-body,
  .donate-gift-grid {
    grid-template-columns: 1fr;
  }
  .donate-possible-grid {
    max-width: 260px;
    margin: 0 auto;
  }
  .donate-sponsor {
    margin: 0 .8rem;
  }
  .donate-sponsor-body img {
    margin: 0 auto;
  }
  .donate-quote blockquote {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
  }
  .donate-reason,
  .donate-managed,
  .donate-gift {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .donate-gift-grid {
    gap: .8rem;
  }
  .emotional-hero .hero-content {
    padding: .75rem .9rem .4rem;
  }
  .emotional-hero h1,
  .financial-hero h1,
  .children-hero h1 {
    font-size: 1.7rem;
  }
  .emotional-hero p,
  .financial-hero p,
  .children-hero p {
    font-size: 1.05rem;
  }
  .emotional-hero .hero-gallery {
    gap: .7rem;
  }
  .emotional-hero .hero-gallery img {
    height: 92px;
  }
  .emotional-needs,
  .emotional-callout,
  .emotional-resources {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .emotional-detail-section {
    padding-bottom: 1.5rem;
  }
  .emotional-intro {
    padding: .65rem 1.1rem 1.25rem;
  }
  .emotional-needs {
    padding-bottom: 1.8rem;
  }
  .emotional-needs ul {
    margin-top: 1rem;
  }
  .emotional-callout,
  .emotional-callout:not(.emotional-alone) {
    padding-top: .75rem;
    padding-bottom: 1.25rem;
  }
  .emotional-alone {
    padding-bottom: 1.5rem;
  }
  .emotional-resources {
    padding-top: .5rem;
    padding-bottom: 2rem;
  }
  .emotional-resources article {
    margin: 1.25rem 0;
  }
  .emotional-logo-band {
    min-height: 180px;
  }
  .emotional-photo-band img {
    height: 155px;
  }
  .caregiver-hero .hero-content {
    padding: .7rem .9rem .5rem;
  }
  .caregiver-hero h1 {
    font-size: 1.7rem;
  }
  .caregiver-hero .hero-gallery {
    gap: .55rem;
  }
  .caregiver-hero .hero-gallery img {
    height: 105px;
  }
  .caregiver-hero p {
    font-size: 1.05rem;
  }
  .caregiver-detail-section h2 {
    font-size: 1.3rem;
  }
  .caregiver-detail-section p,
  .caregiver-detail-section li,
  .caregiver-detail-section a {
    font-size: .95rem;
  }
  .caregiver-intro {
    padding: .75rem 1.1rem 1.2rem;
  }
  .caregiver-needs,
  .caregiver-alone,
  .caregiver-video,
  .caregiver-reach,
  .caregiver-resources {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .caregiver-button-row {
    flex-direction: column;
    align-items: center;
    gap: .6rem;
  }
  .caregiver-alone p {
    margin-bottom: 1.1rem;
  }
  .caregiver-video h2 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
  }
  .caregiver-button-row .btn {
    min-width: 230px;
    min-height: 44px;
  }
  .caregiver-video > div {
    max-width: 100%;
    min-height: 230px;
  }
  .financial-hero .hero-content,
  .children-hero .hero-content {
    padding: .75rem .9rem .35rem;
  }
  .financial-hero .hero-gallery img,
  .children-hero .hero-gallery img {
    height: 115px;
  }
  .resource-guide-intro,
  .resource-guide-needs,
  .resource-guide-callout,
  .resource-guide-video,
  .resource-guide-resources {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .resource-guide-intro,
  .children-guide .resource-guide-intro {
    padding-bottom: 1.5rem;
  }
  .resource-guide-needs {
    padding-bottom: 1.8rem;
  }
  .resource-guide-callout,
  .resource-guide-callout + .resource-guide-callout {
    padding-bottom: 1.8rem;
  }
  .financial-guide {
    padding-bottom: 2rem;
  }
  .children-guide {
    padding-bottom: 1.5rem;
  }
  .financial-guide .resource-guide-resources,
  .children-guide .resource-guide-resources {
    padding-bottom: 2rem;
  }
  .financial-guide .resource-guide-resources article > a {
    margin-top: 1rem;
  }
  .resource-guide-video > div {
    max-width: 100%;
    min-height: 145px;
  }
  .resource-guide-bottom-image,
  .resource-guide-photo-grid {
    max-width: calc(100% - 2.2rem);
  }
  .resource-guide-bottom-image img {
    height: 145px;
  }
  .resource-guide-photo-grid img {
    height: 105px;
  }
  .appointment-hero .hero-content {
    min-height: 100px;
    padding: .75rem .9rem .6rem;
  }
  .appointment-use,
  .appointment-prep,
  .appointment-reminder {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .appointment-downloads,
  .appointment-cto {
    grid-template-columns: 1fr;
    gap: .7rem;
    max-width: calc(100% - 2.2rem);
    padding-left: 0;
    padding-right: 0;
  }
  .appointment-downloads {
    max-width: 230px;
  }
  .appointment-cto-image-frame {
    height: 165px;
  }
  .appointment-cto-photo img {
    height: 165px;
    transform: translateY(50px) scale(1.65);
  }
  .inline-form { flex-direction: column; }
}

@media (max-width: 700px) {
  .supporters-hero,
  .supporters-hero .hero-content {
    min-height: 220px;
  }
  .supporters-hero .hero-content {
    max-width: 78%;
    padding: 1rem;
  }
  .supporters-hero h1 { font-size: 1.3rem; }
  .supporters-hero p { font-size: .9rem; }
  .supporters-detail-section h2 { font-size: 1.35rem; }
  .supporters-leading-grid,
  .supporters-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .supporters-logo-item,
  .supporters-logo-item:nth-child(n + 5):nth-child(-n + 9) {
    grid-column: auto;
  }
  .supporters-logo-item { min-height: 88px; }
  .supporters-logo-grid img { height: 70px; }
  .supporters-community > div { grid-template-columns: 1fr; }
  .supporters-family { padding-bottom: 2.25rem; }
  .supporters-partner { min-height: 0; }
  .supporters-partner-buttons { grid-template-columns: 1fr; max-width: 260px; margin-left: auto; margin-right: auto; }
  .supporters-gallery > div { grid-template-rows: 95px 95px; }
  .media-hero,
  .media-hero .hero-content { min-height: 105px; }
  .media-detail-section { padding-left: 1rem; padding-right: 1rem; }
  .media-story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
  .media-story-grid article {
    min-height: 220px;
    grid-template-rows: 30px 112px 24px 34px;
    padding: .55rem;
  }
  .media-story-grid img,
  .media-story-grid article:nth-child(1) img {
    width: min(100%, 170px);
    height: 100px;
  }
  .media-story-grid article:nth-child(4) img {
    width: min(100%, 130px);
    height: 112px;
  }
  .media-programs a:nth-child(3),
  .media-programs a:nth-child(4) { width: auto; }
  .media-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }
  .media-gallery img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 130px;
  }
  .volunteer-why { min-height: 0; }
  .volunteer-why-grid article { transform: none !important; }
  .volunteer-way-grid article { min-height: 150px; }
}

@media (max-width: 440px) {
  .supporters-leading,
  .supporters-logos,
  .supporters-community,
  .supporters-family,
  .supporters-gallery { padding-left: 1rem; padding-right: 1rem; }
  .supporters-logo-item { min-height: 64px; }
  .supporters-logo-grid img { height: 48px; }
  .supporters-gallery > div,
  .media-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }
  .supporters-gallery img,
  .media-gallery img,
  .supporters-gallery img:nth-child(n),
  .media-gallery img:nth-child(n) {
    grid-column: auto;
    width: 100%;
    height: 105px;
  }
  .media-story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .page-driving .site-footer,
  .page-driving .footer-grid {
    min-height: 0;
  }
  .page-driving .site-footer ul li:last-child { display: list-item; }
  .site-footer {
    min-height: 0;
    padding: 1.5rem 1.25rem;
  }
  .footer-grid {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "contact contact"
      "logo links";
    gap: 1.25rem 2rem;
    align-items: center;
  }
  .footer-contact {
    width: 100%;
    position: static;
    grid-area: contact;
    font-size: 1rem;
    line-height: 1.5;
  }
  .footer-logo {
    width: 82px;
    position: static;
    grid-area: logo;
    justify-self: end;
  }
  .footer-links {
    display: flex;
    grid-area: links;
    flex-wrap: wrap;
    gap: 1.1rem 1.5rem;
    align-items: center;
    justify-content: center;
  }
  .site-footer ul {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: .2rem 1.25rem;
    font-size: 1rem;
    line-height: 1.45;
  }
  .site-footer ul li:last-child {
    grid-column: 2;
  }
  .social-links {
    position: static;
  }
}

@media (max-width: 440px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "contact"
      "logo"
      "links";
  }
  .footer-logo { justify-self: center; }
}

@media (max-width: 760px) {
  .driving-registration-hero {
    grid-template-columns: minmax(0, 1fr) 190px;
    min-height: 235px;
    margin-bottom: 0;
  }
  .driving-registration-hero .hero-content,
  .driving-registration-hero .hero-visual {
    min-height: 235px;
  }
  .driving-registration-hero .hero-content {
    padding: 1.3rem 1rem;
  }
  .driving-registration-hero h1 {
    margin-bottom: .75rem;
    font-size: 1.85rem;
  }
  .driving-registration-hero p {
    margin-bottom: .8rem;
    font-size: .88rem;
  }
  .driving-registration-hero .hero-figure,
  .driving-registration-hero .hero-figure img {
    width: 150px;
    height: 150px;
  }
  .driving-registration-section {
    padding: 1.5rem .85rem 2rem;
  }
  .driving-registration-intro h2 {
    font-size: 1.8rem;
  }
  .registration-fields.two-column,
  .registration-fields.four-column {
    grid-template-columns: 1fr;
  }
  .registration-fields .full-width {
    grid-column: auto;
  }
  .registration-fields.state-zip {
    grid-template-columns: 90px 1fr;
  }
  .driving-registration-form fieldset {
    padding: 1rem .85rem 1.1rem;
    border-radius: 14px;
  }
  .driving-registration-form legend {
    font-size: 1.2rem;
  }
  .registration-check {
    padding: .8rem;
  }
}

@media (max-width: 560px) {
  .driving-registration-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 0;
  }
  .driving-registration-hero .hero-content {
    min-height: 250px;
  }
  .driving-registration-hero .hero-visual {
    min-height: 165px;
    padding: .75rem;
  }
  .driving-registration-hero .hero-figure,
  .driving-registration-hero .hero-figure img {
    width: 145px;
    height: 145px;
  }
  .registration-payment-card {
    padding: 1.1rem .85rem;
  }
  .registration-payment,
  .registration-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .driving-registration-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    min-height: 245px;
    margin-bottom: 0;
  }
  .driving-registration-hero .hero-content,
  .driving-registration-hero .hero-visual {
    min-height: 245px;
  }
  .driving-registration-hero .hero-content {
    padding: 1.4rem 1.5rem;
  }
  .driving-registration-hero h1 {
    margin-bottom: .85rem;
    font-size: 2.1rem;
  }
  .driving-registration-hero p {
    margin-bottom: .9rem;
    font-size: .95rem;
  }
}
