/* HOME PAGE LAYOUT
---------------------------------------------------------------------*/
:root {
  --home-ink: #132133;
  --home-muted: #556577;
  --home-surface: #ffffff;
  --home-surface-soft: #f6f1ea;
  --home-surface-tint: #eef3f8;
  --home-line: rgba(19, 33, 51, 0.12);
  --home-shadow: 0 18px 42px rgba(19, 33, 51, 0.12);
  --home-shadow-soft: 0 12px 30px rgba(19, 33, 51, 0.08);
  --home-radius: 24px;
  --home-radius-sm: 16px;
  --home-accent-red: #ee3425;
  --home-accent-orange: #f57f29;
  --home-accent-yellow: #f3c816;
  --home-accent-green: #59ba47;
  --home-accent-blue: #0957a5;
  --home-accent-teal: #7fc0ea;
  --home-accent-pink: #f499c1;
  --home-accent-plum: #9e248f;
}

#header {
  position: sticky;
  top: 0;
  z-index: 10000;
}

.homePageMain {
  background:
    radial-gradient(circle at top left, rgba(244, 153, 193, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(127, 192, 234, 0.18), transparent 26%),
    linear-gradient(180deg, #fbf8f3 0%, #f4f7fb 52%, #f9f4ed 100%);
  color: var(--home-ink);
}
.homeHeroSection {
  position: relative;
  overflow: hidden;
  padding: 40px 0 56px 0;
}
.homeHeroSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(19, 33, 51, 0.9) 0%, rgba(19, 33, 51, 0.68) 38%, rgba(19, 33, 51, 0.3) 66%, rgba(19, 33, 51, 0.74) 100%),
    linear-gradient(135deg, rgba(238, 52, 37, 0.24), rgba(127, 192, 234, 0.16) 40%, rgba(89, 186, 71, 0.18) 100%);
  z-index: 0;
}
.homeHeroBg {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  opacity: 0.9;
}
.homeHeroBg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.homeHeroSection .container {
  position: relative;
  z-index: 1;
}
.homeHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 36px;
  align-items: center;
}
.homeHeroCopy {
  color: #fff;
  padding: 18px 0;
}
.homeHeroSection h1 {
  margin: 0 0 16px 0;
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.homeSectionKicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px 0;
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.homeSectionKicker::before {
  content: "";
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-accent-red), var(--home-accent-orange), var(--home-accent-yellow), var(--home-accent-green), var(--home-accent-blue), var(--home-accent-pink), var(--home-accent-plum));
}
.homeHeroLead {
  max-width: 22ch;
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.4;
  font-weight: 600;
}
.homeHeroIntro {
  max-width: 60ch;
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  line-height: 1.72;
}
.homeHeroBody {
  max-width: 58ch;
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
}
.homeHeroIntro p:last-child {
  margin-bottom: 0;
}
.homeHeroBody p:last-child,
.homeHeroFinePrint p:last-child,
.homeImpactIntro p:last-child,
.homeImpactBody p:last-child,
.homeModuleIntro p:last-child,
.homeStoryFeatureCopy p:last-child,
.homeStoryFeatureDetail p:last-child,
.homeTestimonialQuote p:last-child,
.homeTestimonialSupport p:last-child {
  margin-bottom: 0;
}
.homeHeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px 0;
}
.homeHeroActions .bigBtn,
.homeHeroActions .bigBtnWhite {
  margin: 0;
}
.homeHeroUtilityRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px 0;
}
.homeHeroSearchForm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(100%, 560px);
}
.homeHeroSearchForm input {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}
.homeHeroSearchForm input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}
.homeHeroSearchForm input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.homeHeroSearchForm button {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
  margin: 0;
  background: #fff;
  border-color: #fff;
  color: var(--home-ink);
}
.homeHeroSearchForm button:hover,
.homeHeroSearchForm button:focus {
  background: var(--home-accent-yellow);
  border-color: var(--home-accent-yellow);
  color: #181818;
}
.homeHeroSearchForm button:focus-visible,
.homeSectionLink:focus-visible,
.homeFeatureCardLink:focus-visible,
.homeCtaCard:focus-visible,
.homeStoryFeatureLink:focus-visible,
.homeSponsorLogo:focus-visible {
  outline: 2px solid var(--home-accent-blue);
  outline-offset: 3px;
}
.homeHeroMetrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 720px;
}
.homeHeroMetrics li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.homeHeroMetrics strong {
  display: block;
  margin: 0 0 4px 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
}
.homeHeroMetrics span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.35;
}
.homeHeroFinePrint {
  max-width: 58ch;
  margin: 18px 0 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}
.homeHeroMediaWrap {
  position: relative;
}
.homeHeroMediaCard {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--home-radius) + 4px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 62px rgba(4, 12, 24, 0.36);
  backdrop-filter: blur(12px);
}
.homeHeroMediaImage,
.homeHeroVideo {
  display: block;
  aspect-ratio: 4 / 3;
}
.homeHeroMediaImage img,
.homeHeroVideo .videoDeferred,
.homeHeroVideo .videoDeferredPoster,
.homeHeroVideo .videoDeferredPoster img {
  width: 100%;
  height: 100%;
}
.homeHeroMediaImage img,
.homeHeroVideo .videoDeferredPoster img {
  display: block;
  object-fit: cover;
}
.homeHeroVideo .videoDeferred,
.homeHeroVideo iframe {
  min-height: 100%;
}
.homeHeroMediaCaption {
  padding: 16px 18px 18px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.55;
}

.homeModule {
  padding: 72px 0;
}
.homeModuleHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 28px 0;
}
.homeModuleHeader h2,
.homeImpactPrimary h2,
.homeSponsorHeader h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.homeModuleHeader p,
.homeModuleIntro,
.homeSponsorHeader p {
  max-width: 62ch;
  margin: 10px 0 0 0;
  color: var(--home-muted);
  font-size: 1.04rem;
  line-height: 1.68;
}
.homeSectionLink {
  color: var(--home-ink);
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: var(--link-underline-thickness, 1px);
  text-underline-offset: var(--link-underline-offset, 4px);
  white-space: nowrap;
}
.homeSectionLink:hover,
.homeSectionLink:focus {
  text-decoration: none;
}
.homeServicesSection .content-card-grid,
.homeStoryCardRail .content-card-grid {
  gap: 22px;
}
.homeServicesSection .content-card,
.homeStoryCardRail .content-card {
  width: calc(33.333% - 15px);
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--home-shadow-soft);
}
.homeServicesSection .content-card:nth-child(3n + 1) {
  border-top: 6px solid var(--home-accent-red);
}
.homeServicesSection .content-card:nth-child(3n + 2) {
  border-top: 6px solid var(--home-accent-green);
}
.homeServicesSection .content-card:nth-child(3n + 3) {
  border-top: 6px solid var(--home-accent-blue);
}
.homeServicesSection .content-card-text,
.homeStoryCardRail .content-card-text {
  padding: 22px 22px 24px 22px;
}
.homeServicesSection .content-card-title,
.homeStoryCardRail .content-card-title {
  color: var(--home-ink);
}
.homeServicesSection .content-card-body,
.homeStoryCardRail .content-card-body {
  color: var(--home-muted);
}

.homeEventsSection {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(246, 241, 234, 0.75));
}
.homeEventsLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: start;
}
.homeFeatureCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.homeFeatureCard {
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--home-shadow-soft);
}
.homeFeatureCardLink {
  display: block;
  color: inherit;
}
.homeFeatureCardMedia {
  position: relative;
  aspect-ratio: 16 / 11;
}
.homeFeatureCardMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.homeFeatureBadge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 33, 51, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.homeFeatureCardBody {
  padding: 22px 22px 24px 22px;
}
.homeFeatureCardBody h3 {
  margin: 0 0 10px 0;
  color: var(--home-ink);
}
.homeFeatureMeta {
  margin: 0 0 10px 0;
  color: var(--home-accent-blue);
  font-size: 0.92rem;
  font-weight: 700;
}
.homeFeatureCardBody p:last-child {
  margin-bottom: 0;
  color: var(--home-muted);
}
.homeScheduleCard {
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--home-shadow-soft);
  padding: 22px;
}
.homeScheduleHeader {
  margin: 0 0 16px 0;
}
.homeScheduleHeader h3 {
  margin: 0;
  color: var(--home-ink);
}
.homeEventListStack .content-list-card {
  border-radius: 16px;
  border-color: rgba(19, 33, 51, 0.1);
}
.homeEmptyState {
  margin: 0;
  color: var(--home-muted);
}

.homeImpactLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 26px;
  align-items: start;
}
.homeImpactPrimary {
  padding: 8px 0;
}
.homeImpactIntro,
.homeImpactBody {
  color: var(--home-muted);
  line-height: 1.72;
}
.homeImpactIntro {
  margin: 16px 0 24px 0;
  font-size: 1.08rem;
}
.homeImpactBody {
  margin: 22px 0 0 0;
}
.homeStatGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.homeStatCard {
  padding: 22px;
  border-radius: var(--home-radius-sm);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow-soft);
}
.homeStatValue {
  margin: 0 0 8px 0;
  color: var(--home-accent-plum);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.homeStatCard h3 {
  margin: 0 0 10px 0;
  color: var(--home-ink);
}
.homeStatCard p {
  margin: 0;
  color: var(--home-muted);
}
.homeTestimonialCard {
  overflow: hidden;
  border-radius: calc(var(--home-radius) + 2px);
  background: linear-gradient(180deg, rgba(19, 33, 51, 0.98), rgba(37, 48, 86, 0.96));
  color: #fff;
  box-shadow: 0 26px 54px rgba(19, 33, 51, 0.22);
}
.homeTestimonialMedia {
  aspect-ratio: 4 / 3;
}
.homeTestimonialMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.homeTestimonialBody {
  padding: 24px;
}
.homeTestimonialQuote {
  margin: 12px 0 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}
.homeTestimonialSupport {
  margin: 16px 0 0 0;
  color: rgba(255, 255, 255, 0.78);
}
.homeTestimonialAttribution {
  margin: 18px 0 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
}

.homeGetInvolvedSection {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(238, 243, 248, 0.82));
}
.homeCtaGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.homeCtaCard {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--home-radius-sm);
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--home-shadow-soft);
  overflow: hidden;
  color: inherit;
}
.homeCtaCard:hover,
.homeCtaCard:focus {
  text-decoration: none;
  transform: translateY(-1px);
}
.homeCtaMedia {
  aspect-ratio: 16 / 10;
}
.homeCtaMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.homeCtaBody {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  flex: 1 1 auto;
}
.homeCtaBody h3 {
  margin: 0;
  color: var(--home-ink);
}
.homeCtaBody p {
  margin: 0;
  color: var(--home-muted);
}
.homeCtaLinkLabel {
  margin-top: auto;
  color: var(--home-accent-blue);
  font-weight: 700;
}

.homeStoriesSection {
  background: linear-gradient(180deg, rgba(246, 241, 234, 0.44), rgba(255, 255, 255, 0.72));
}
.homeStoriesLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: start;
}
.homeStoryFeature {
  border: 1px solid var(--home-line);
  border-radius: calc(var(--home-radius) + 2px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--home-shadow);
}
.homeStoryFeatureLink {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  color: inherit;
}
.homeFeatureCardLink:hover,
.homeFeatureCardLink:focus,
.homeStoryFeatureLink:hover,
.homeStoryFeatureLink:focus,
.homeSponsorLogo:hover,
.homeSponsorLogo:focus {
  text-decoration: none;
}
.homeStoryFeatureMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.homeStoryFeatureBody {
  padding: 28px;
}
.homeStoryFeatureEyebrow {
  display: inline-block;
  margin: 0 0 12px 0;
  color: var(--home-accent-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.homeStoryFeatureBody h3 {
  margin: 0 0 14px 0;
  color: var(--home-ink);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
}
.homeStoryFeatureCopy,
.homeStoryFeatureDetail {
  color: var(--home-muted);
  line-height: 1.7;
}
.homeStoryFeatureDetail {
  margin-top: 14px;
  font-size: 0.96rem;
}
.homeStoryFeatureCta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--home-accent-plum);
  font-weight: 700;
}

.homeSponsorHeader {
  margin: 0 0 20px 0;
}
.homeSponsorBand {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--home-line);
  border-radius: calc(var(--home-radius) + 2px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--home-shadow-soft);
}
.homeSponsorLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  background: var(--home-surface-soft);
}
.homeSponsorLogo img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  filter: saturate(0.95);
}

.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;
}

@media (max-width: 1120px) {
  .homeHeroGrid,
  .homeEventsLayout,
  .homeImpactLayout,
  .homeStoriesLayout {
    grid-template-columns: 1fr;
  }
  .homeStoryFeatureLink {
    grid-template-columns: 1fr;
  }
  .homeCtaGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .homeSponsorBand {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .homeFeatureCards,
  .homeStatGrid,
  .homeServicesSection .content-card-grid,
  .homeStoryCardRail .content-card-grid {
    grid-template-columns: 1fr;
  }
  .homeServicesSection .content-card,
  .homeStoryCardRail .content-card {
    width: 100%;
  }
  .homeHeroMetrics {
    grid-template-columns: 1fr;
  }
  .homeModuleHeader {
    flex-direction: column;
    align-items: flex-start;
  }
  .homeSponsorBand {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 749px) {
  .homeHeroSection {
    padding: 20px 0 42px 0;
  }
  .homeHeroActions,
  .homeHeroUtilityRow {
    flex-direction: column;
    align-items: stretch;
  }
  .homeHeroActions .bigBtn,
  .homeHeroActions .bigBtnWhite {
    width: 100%;
  }
  .homeHeroSearchForm {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .homeModule {
    padding: 56px 0;
  }
  .homeCtaGrid,
  .homeSponsorBand {
    grid-template-columns: 1fr;
  }
  .homeStoryFeatureBody,
  .homeTestimonialBody,
  .homeScheduleCard,
  .homeFeatureCardBody,
  .homeStatCard,
  .homeCtaBody {
    padding: 20px;
  }
}

/* RESOURCES
---------------------------------------------------------------------*/
#resourcesHero,
#resources {
  padding: 120px 0 120px 0;
  overflow: hidden;
  text-align: center;
  background-color: #FFF;
  background-image: var(--site-default-bg-image, none);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFF;
}
#resourcesHero h1,
#resources h1 {
  color: #FFF;
  font-size: var(--font-size-eyebrow, 0.875rem);
  line-height: var(--line-height-eyebrow, 1.25rem);
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-weight-bold, 700);
}
#resourcesHero .intro,
#resources .intro {
  color: #FFF;
  font-size: var(--font-size-feature-title, clamp(1.5rem, 3vw, 2.5rem));
  line-height: var(--line-height-feature-title, 1.15);
}
#resourcesHero a,
#resources a {
  font-weight: 400;
  color: #FFF;
  text-decoration: underline dotted;
}
#resourcesHero a:hover, #resourcesHero a:focus,
#resources a:hover, #resources a:focus {
  text-decoration: none;
}
#resourcesHero .intro a,
#resources .intro a {
  font-weight: 700;
  color: #FFF;
  text-decoration: underline dotted;
}
#resourcesHero .intro a:hover, #resourcesHero .intro a:focus,
#resources .intro a:hover, #resources .intro a:focus {
  text-decoration: none;
}
#resourcesPartners {
  background: #FFF;
  padding: 0 0 24px 0;
}
/* WHO WE ARE
---------------------------------------------------------------------*/
#WhoWeAre {
  padding: 72px 0 72px 0;
  overflow: hidden;
  background-color: #FFF;
  color: #222;
}
#WhoWeAre h2 {
  color: #467DBC;
  font-size: var(--font-size-feature-title, clamp(1.5rem, 3vw, 2.5rem));
  line-height: var(--line-height-feature-title, 1.15);
  margin: 0 0 48px 0;
  padding: 0 0 24px 0;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #467DBC;
}
#WhoWeAre img {
  width: 100%;
}
/* WHO WE SERVE
---------------------------------------------------------------------*/
#WhoWeServe {
  padding: 86px 0 86px 0;
  overflow: hidden;
  text-align: center;
  background-color: rgba(70, 125, 188,.2);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#WhoWeServe h1 {
  font-size: var(--font-size-eyebrow, 0.875rem);
  line-height: var(--line-height-eyebrow, 1.25rem);
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-weight-bold, 700);
}
#WhoWeServe h2 {
  font-size: var(--font-size-feature-title, clamp(1.5rem, 3vw, 2.5rem));
  line-height: var(--line-height-feature-title, 1.15);
  margin: 0 0 18px 0;
}
#WhoWeServe .intro {
  font-size: var(--font-size-intro-strong, 1.25rem);
  line-height: var(--line-height-intro-strong, 1.875rem);
}
#WhoWeServe p {
  line-height: 1.6rem;
  margin-bottom: 24px;
}
#WhoWeServe p a {
  text-decoration: underline dotted;
}

/* HOME NOTICE MODAL
---------------------------------------------------------------------*/
.homeNoticeModal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17,30,46,.58);
}
.homeNoticeModal[hidden] {
  display: none;
}
.homeNoticeModalPanel {
  position: relative;
  width: min(92vw,860px);
  max-height: 88vh;
  overflow: auto;
  background: #FFF;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.homeNoticeModalPanel.noMedia {
  width: min(92vw,620px);
}
.homeNoticeModalClose {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #6A7786;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  border-radius: 6px;
  padding: 2px 6px;
}
.homeNoticeModalClose:hover,
.homeNoticeModalClose:focus {
  color: #183153;
}
.homeNoticeModalClose:focus {
  outline: none;
  box-shadow: none;
}
.homeNoticeModalClose:focus-visible {
  outline: 2px solid #467DBC;
  outline-offset: 2px;
}
.homeNoticeModalBody {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
  gap: 0;
}
.homeNoticeModalMedia {
  background: #EEF2F6;
  min-height: 100%;
}
.homeNoticeModalMedia img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeNoticeModalCopy {
  padding: 34px 34px 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.homeNoticeModalCopy h2 {
  margin: 0 0 12px 0;
  color: #183153;
  font-size: var(--font-size-modal-title, 1.5rem);
  line-height: var(--line-height-modal-title, 1.25);
  text-transform: none;
}
.homeNoticeModalBodyText {
  margin: 0 0 18px 0;
  color: #304255;
  font-size: var(--font-size-modal-body, 1rem);
  line-height: var(--line-height-modal-body, 1.625rem);
}
.homeNoticeModalBodyText p {
  margin: 0 0 14px 0;
}
.homeNoticeModalBodyText p:last-child {
  margin-bottom: 0;
}
.homeNoticeModalActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.homeNoticeModalDismiss,
.homeNoticeModalDismissDay {
  border: 0;
  background: transparent;
  color: #516173;
  font-size: .95rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.homeNoticeModalDismiss:hover,
.homeNoticeModalDismiss:focus,
.homeNoticeModalDismissDay:hover,
.homeNoticeModalDismissDay:focus {
  color: #183153;
}
body.notice-modal-open {
  overflow: hidden;
}
@media only screen and (max-width:749px) {
  .homeNoticeModal {
    padding: 16px;
  }
  .homeNoticeModalBody {
    grid-template-columns: 1fr;
  }
  .homeNoticeModalCopy {
    padding: 24px 20px 22px 20px;
  }
  .homeNoticeModalCopy h2 {
    font-size: 1.25rem;
  }
  .homeNoticeModalPanel,
  .homeNoticeModalPanel.noMedia {
    width: min(94vw,680px);
  }
}
