/* ========================================
   PF COMPONENTS
======================================== */

/*    HERO   */

.pf-image-hero{
  position: relative;
  min-height: clamp(45rem, 92vh, 53.75rem);
  background-image: var(--pf-hero-img);
  background-size: cover;
  background-position: 70% 32%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pf-image-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.40) 35%,
    rgba(0,0,0,.18) 65%,
    rgba(0,0,0,.08) 100%
  );
  z-index: 1;
}

.pf-image-hero__inner{
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 6.875rem 0;
}

.pf-container--hero{
  max-width: 87.5rem;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  padding-right: clamp(1.25rem, 3vw, 2.5rem);
}

.pf-image-hero__content{
  color: #ffffff;
  max-width: 31.25rem;
}

.pf-image-hero__content--left{
  margin-right: auto;
}

.pf-image-hero__content--right{
  margin-left: auto;
  width: 34%;
  max-width: 32.5rem;
  text-align: left;
}

.pf-image-hero__content--families{
  max-width: 32rem;
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
}

/* dark text variant for light images */

.pf-image-hero--darktext .pf-hero__content,
.pf-image-hero--darktext .pf-image-hero__content{
  color: #222222;
}

.pf-image-hero--darktext .pf-hero__title{
  color: #222222 !important;
  text-shadow: none !important;
}

.pf-image-hero--darktext .pf-hero__lead{
  color: #2f2f2f !important;
  text-shadow: none !important;
}

.pf-image-hero--darktext .pf-eyebrow{
  color: #444444 !important;
  text-shadow: none !important;
}

.pf-image-hero--darktext::before,
.pf-image-hero--darktext::after{
  background: none !important;
}

/* hero typography */

.pf-image-hero .pf-h1,
.pf-image-hero .pf-h2,
.pf-image-hero .pf-hero__title,
.pf-image-hero .pf-lead,
.pf-image-hero .pf-hero__lead,
.pf-image-hero .pf-eyebrow{
  color: #ffffff;
}

.pf-image-hero .pf-h1,
.pf-image-hero .pf-h2,
.pf-image-hero .pf-hero__title{
  margin: 0 0 1.125rem;
  font-size: clamp(2.5rem, 3.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-shadow: 0 0.125rem 0.5rem rgba(0,0,0,.28);
}

.pf-image-hero .pf-lead,
.pf-image-hero .pf-hero__lead{
  margin: 0;
  max-width: 30rem;
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,.94);
  text-shadow: 0 0.125rem 0.5rem rgba(0,0,0,.28);
}

.pf-image-hero .pf-eyebrow{
  color: rgba(255,255,255,.82);
}

.pf-image-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.pf-image-hero .pf-btn--primary{
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.18);
}

.pf-image-hero .pf-btn--ghost{
  background: transparent;
  border: 0.125rem solid rgba(255,255,255,.78);
  color: #ffffff;
}

.pf-image-hero .pf-btn--ghost:hover,
.pf-image-hero .pf-btn--ghost:focus{
  background: rgba(255,255,255,.10);
  border-color: #ffffff;
  color: #ffffff;
}

.pf-image-hero--no-overlay::before{
  display: none;
}

.pf-image-hero--no-overlay{
  background-image: var(--pf-hero-img) !important;
}

.pf-image-hero--no-overlay .pf-image-hero__inner{
  background: none !important;
}

/*    BUTTONS   */

.pf-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.125rem;
  border: 0.0625rem solid transparent;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--pf-text);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s ease;
}

.pf-btn:hover{
  text-decoration: none;
  transform: translateY(-0.0625rem);
}

.pf-btn:focus-visible{
  outline: 0.1875rem solid rgba(227,122,51,0.35);
  outline-offset: 0.125rem;
}

/* Primary */
.pf-btn--primary{
  background: var(--pf-red);
  border-color: var(--pf-red);
  color: #ffffff;
}

.pf-btn--primary:hover{
  background: #9e1346;
  border-color: #9e1346;
  color: #ffffff;
}

/* Dark */
.pf-btn--dark{
  background: var(--pf-dark);
  border-color: var(--pf-dark);
  color: #ffffff;
}

.pf-btn--dark:hover{
  background: #222222;
  border-color: #222222;
  color: #ffffff;
}

/* Outline */
.pf-btn--outline{
  background: transparent;
  border-color: var(--pf-red);
  color: var(--pf-red);
}

.pf-btn--outline:hover{
  background: var(--pf-red);
  border-color: var(--pf-red);
  color: #ffffff;
}

/* Ghost */
.pf-btn--ghost{
  background: transparent;
  border-color: rgba(51,51,51,0.22);
  color: var(--pf-dark);
}

.pf-btn--ghost:hover{
  border-color: rgba(51,51,51,0.46);
  background: rgba(0,0,0,0.03);
  color: var(--pf-dark);
}

.pf-btn--white{
  background: #fff;
  color: #333333;
  border: 1px solid #fff;
}

.pf-btn--white:hover,
.pf-btn--white:focus{
  background: #f5f5f5;
  color: #111111;
  border-color: #f5f5f5;
  text-decoration: none;
}

/* Small */
.pf-btn--sm{
  min-height: 2.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
}

/* Large */
.pf-btn--lg{
  min-height: 3.125rem;
  padding: 0.75rem 1.375rem;
  font-size: 0.9375rem;
}

/* Full width when needed */
.pf-btn--block{
  width: 100%;
}

/*   PF LINK BUTTONS   */
.pf-link-white{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1.5px;
}

.pf-link-white:hover,
.pf-link-white:focus{
  color: #fff;
  text-decoration-thickness: 2px;
}

.pf-btn--outline{
  background: transparent;
  color: var(--pf-red);
  border: 2px solid var(--pf-red);
}

.pf-btn--outline:hover{
  background: rgba(187,22,84,0.08);
}

/*    GRID HELPERS   */

.pf-grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.pf-grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.pf-grid-4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/*    PROGRAM COMPONENTS    */
/*    SUPPORT ECOSYSTEM    */

.pf-ecosystem--banded{
  margin: 0;
  padding: 0;
}

/* ---------- TOP BAND ---------- */

.pf-ecosystem-topband{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #1d241f;
}

.pf-ecosystem-topsplit{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  width: 100%;
  min-height: 430px;
}

.pf-ecosystem-topsplit__content{
  background: #1d241f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pf-ecosystem-topsplit__content-inner{
  width: 100%;
  max-width: 680px;
  padding: 4.5rem 4rem 4.5rem 2rem;
}

.pf-ecosystem-topsplit__content .pf-h2{
  color: #fff;
  margin-bottom: 1rem;
}

.pf-ecosystem-topsplit__content .pf-text{
  color: rgba(255,255,255,.88);
  margin-bottom: 0;
}

.pf-ecosystem-topsplit__media{
  min-height: 430px;
}

.pf-ecosystem-topsplit__media img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

/* ---------- BOTTOM BAND ---------- */

.pf-ecosystem-bottomband{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fefefe;
  padding: 3.5rem 0 8rem;
}

.pf-ecosystem-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 3rem;
  align-items: start;
}

.pf-eco-item{
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 1.1rem;
  align-items: start;
}

.pf-eco-icon{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--pf-red);
  line-height: 1;
  margin-top: 2px;
}

.pf-eco-icon svg{
  width: 36px;
  height: 36px;
  stroke-width: 1.9;
}

.pf-eco-item > div:last-child{
  min-width: 0;
}

.pf-eco-item h3{
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  line-height: 1.3;
}

.pf-eco-item p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

/* ---------- TABLET ---------- */

@media (max-width: 991px){
  .pf-ecosystem-topsplit{
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pf-ecosystem-topsplit__content{
    order: 1;
    justify-content: stretch;
  }

  .pf-ecosystem-topsplit__content-inner{
    max-width: none;
    padding: 3rem 2rem;
  }

  .pf-ecosystem-topsplit__media{
    order: 2;
    min-height: 320px;
  }

  .pf-ecosystem-topsplit__media img{
    min-height: 320px;
  }

  .pf-ecosystem-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2rem;
  }
}

/* ---------- MOBILE ---------- */

@media (max-width: 640px){
  .pf-ecosystem-topsplit__content-inner{
    padding: 2.25rem 1.25rem;
  }

  .pf-ecosystem-topsplit__media,
  .pf-ecosystem-topsplit__media img{
    min-height: 240px;
  }

  .pf-ecosystem-bottomband{
    padding: 2.5rem 0 3rem;
  }

  .pf-ecosystem-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pf-eco-item{
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 0.875rem;
  }

  .pf-eco-icon{
    width: 32px;
    height: 32px;
  }

  .pf-eco-icon svg{
    width: 22px;
    height: 22px;
  }
}

/* ---------- STATS SECTION ---------- */

.pf-stats__intro{
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

/* GRID */
.pf-stats__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem 2.5rem;
}



/* BASE STAT */
.pf-stat{
  text-align: center;
  padding: 0 1rem;
}

.pf-stat__number{
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--pf-red);
  margin-bottom: 0.5rem;
}

.pf-stat__label{
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pf-text);
}

/* FEATURED STAT */
.pf-stat--highlight{
  grid-column: 2 / span 1;
  margin-top: 0.5rem;
}

.pf-stat--highlight .pf-stat__number{
  font-size: 3.25rem;
}

.pf-stat__note{
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.6);
}

/* TABLET */
@media (max-width: 991px){
  .pf-stats__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-stat--highlight{
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 640px){
  .pf-stats__grid{
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .pf-stat--highlight{
    grid-column: auto;
  }

  .pf-stat__number{
    font-size: 2.25rem;
  }

  .pf-stat--highlight .pf-stat__number{
    font-size: 2.75rem;
  }
}

/* responsive */

@media (max-width:1000px){

  .pf-ecosystem-top{
    grid-template-columns:1fr;
  }

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

}

@media (max-width:640px){

  .pf-ecosystem-grid{
    grid-template-columns:1fr;
  }

}

/* mobile */

@media (max-width:900px){

  .pf-support-grid{
    grid-template-columns:1fr;
  }

}

/* Families First Model */


.pf-ff-model{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.pf-ff-step{
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}

.pf-ff-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-ff-icon svg{
  width: 36px;
  height: 36px;
  stroke: var(--pf-red);
  stroke-width: 2;
}

.pf-ff-title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.pf-ff-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pf-text);
}

/* responsive */

@media (max-width: 900px){

  .pf-ff-model{
    grid-template-columns: 1fr;
    gap: 36px;
  }

}

/* take action */


.pf-home-action{
  background: var(--pf-red);
  color: #fff;
  padding: 30px 0;
}

.pf-home-action__intro{
  text-align: center;
  max-width: 840px;
  margin: 0 auto 70px;
}

.pf-home-action__intro h2{
  font-size: 30px;
  margin-bottom: 14px;
  color: #fff;
}

.pf-home-action__intro p{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

.pf-home-action__paths{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pf-home-action__path{
  text-decoration: none;
  color: #fff;
  padding-top: 22px;
  border-top: 2px solid rgba(255,255,255,.35);
  transition: all .25s ease;
}

.pf-home-action__path:hover{
  border-color: #fff;
}

.pf-home-action__path h3{
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.pf-home-action__path p{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: rgba(255,255,255,.85);
}

.pf-home-action__path span{
  font-weight: 600;
  color: #fff;
}

@media (max-width: 900px){
  .pf-home-action__paths{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pf-home-action__intro{
    margin-bottom: 42px;
  }
}
/*    footer   */
.pf-site-footer__bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.pf-footer-copy{
  margin: 0;
}

.pf-footer-privacy{
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
}

.pf-footer-privacy:hover{
  text-decoration: underline;
}

/*    RESPONSIVE   */

@media (max-width: 900px){

  .pf-support-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pf-support-item{
    grid-template-columns: 56px 1fr;
  }

  .pf-support-icon{
    width: 56px;
    height: 56px;
  }

  .pf-support-icon svg{
    width: 32px;
    height: 32px;
  }

}

/*    CARD    */

.pf-card{
  padding: 1.375rem;
  border-radius: 1.125rem;
  background: #f6f6f6;
}

.pf-card--white{
  background: #ffffff;
  box-shadow: 0 0.625rem 1.75rem rgba(0,0,0,.08);
}

.pf-card p:last-child,
.pf-card ul:last-child,
.pf-card ol:last-child{
  margin-bottom: 0;
}

/*    PROGRAM CARD   */

.pf-program-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 0.625rem 1.75rem rgba(0,0,0,.08);
}

.pf-program-card__img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pf-program-card__content{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.375rem;
}

.pf-program-card__title{
  margin: 0 0 0.875rem;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #333333;
}

.pf-program-card__text{
  margin: 0 0 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #333333;
}

.pf-program-card__link{
  margin-top: auto;
  font-size: 1rem;
  font-weight: 700;
  color: #bb1654;
  text-decoration: none;
}

/*    STATS / IMPACT   */

.pf-stat{
  padding: 1.25rem 1.25rem 1.125rem;
  border-radius: 1rem;
  background: #f6f6f6;
}

.pf-stat__num{
  margin-bottom: 0.375rem;
  font-size: 2.125rem;
  line-height: 1;
  font-weight: 700;
  color: #bb1654;
}

.pf-stat__label{
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #333333;
}

.pf-impact{
  padding: 1.5rem 1.25rem;
  border-radius: 1.125rem;
  background: #f6f6f6;
}

.pf-impact__num{
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  line-height: 0.95;
  font-weight: 700;
  color: #bb1654;
}

.pf-impact__label{
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #333333;
}

/*    SPLIT LAYOUT   */

.pf-split__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22.5rem, 32.5rem);
  gap: 2.75rem;
  align-items: center;
}

.pf-split__media img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.75rem;
}

/* landscape variation */
.pf-split__grid--landscape{
  grid-template-columns: minmax(0, 1.05fr) minmax(22.5rem, 0.95fr);
}

.pf-split__grid--landscape .pf-split__media img{
  aspect-ratio: 3 / 2;
  box-shadow: 0 1.125rem 2.375rem rgba(0,0,0,.10);
}

.pf-split__grid--landscape .pf-split__content{
  max-width: 40rem;
}

.pf-split__grid--landscape .pf-h2{
  max-width: 32ch;
}

/*    FORM BASICS   */

.pf-form-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pf-input{
  flex: 1 1 20rem;
  min-height: 3.5rem;
  padding: 0 1.125rem;
  border: 0.0625rem solid #d8d8d8;
  border-radius: 0.875rem;
  background: #ffffff;
  color: #333333;
  font-size: 1rem;
}

.pf-input:focus{
  outline: 0.125rem solid rgba(187,22,84,.18);
  outline-offset: 0;
  border-color: #bb1654;
}

/*    ACTION GROUPS   */

.pf-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.pf-actions--center{
  justify-content: center;
}

/*    PAGE HEADER (NO IMAGE HERO)   */

.pf-page-header{
  padding: 6rem 0 3.5rem;
  background: #ffffff;
}

.pf-page-header--center{
  text-align: center;
}

.pf-page-header__inner{
  max-width: 47.5rem;
}

.pf-page-header--center .pf-page-header__inner{
  margin-left: auto;
  margin-right: auto;
}

.pf-page-header .pf-kicker{
  margin-bottom: 0.75rem;
}

.pf-page-header .pf-h1{
  margin-bottom: 1.125rem;
  max-width: 16ch;
}

.pf-page-header--center .pf-h1{
  margin-left: auto;
  margin-right: auto;
}

.pf-page-header .pf-lead{
  max-width: 42ch;
}

.pf-page-header--center .pf-lead{
  margin-left: auto;
  margin-right: auto;
}

.pf-page-header__actions{
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.pf-page-header--center .pf-page-header__actions{
  justify-content: center;
}

/* No-image hero / intro band */
.pf-page-header--dark{
  padding: 6.5rem 0 5rem;
  background: #1f241f;
  color: #fff;
}

.pf-divider{
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.pf-page-header--dark .pf-page-header__inner{
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pf-page-header--dark .pf-kicker{
  color: rgba(255,255,255,0.78);
}

.pf-page-header--dark .pf-h1{
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.pf-page-header--dark .pf-lead{
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.92);
}

.pf-page-header--dark .pf-page-header__text{
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

.pf-page-header--dark .pf-page-header__text a{
  color: #fff;
  text-decoration: underline;
}

.pf-page-header--dark .pf-page-header__actions{
  justify-content: center;
  margin-top: 1.75rem;
}

/*    DARK CONTENT BAND    */

.pf-band{
  padding: 3rem 0;
}

.pf-band--dark{
  background: #333333;
  color: #ffffff;
}

.pf-band--dark p{
  color: rgba(255,255,255,0.85);
}

.pf-band__inner{
  max-width: 51.25rem;
}

.pf-band__intro{
  margin-top: 1.125rem;
}

.pf-band__list{
  margin-top: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.pf-band__title{
  font-size: 1.125rem;
  font-weight: 700;
  color: #ff7aa5;
  margin-bottom: 0.375rem;
}

.pf-band__statement{
  margin-top: 3.125rem;
  padding-top: 1.625rem;
  border-top: 0.0625rem solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 1.125rem;
}

/* ========================================
   PF IMAGE TABS
======================================== */

.pf-image-tabs{
  margin-top: 2.5rem;
}

.pf-image-tabs__stage{
  position: relative;
  min-height: 43.75rem;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 1.125rem 2.375rem rgba(0,0,0,.10);
}

.pf-image-tabs__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.pf-image-tabs__stage::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.06) 0%,
    rgba(0,0,0,.12) 24%,
    rgba(0,0,0,.48) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.pf-image-tabs__tabs{
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.pf-image-tabs__tab{
  appearance: none;
  border: 0.0625rem solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.92);
  color: #333333;
  border-radius: 62.4375rem;
  padding: 0.75rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.1;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.pf-image-tabs__tab:hover,
.pf-image-tabs__tab:focus{
  border-color: #ffffff;
  background: #ffffff;
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.375rem 1rem rgba(0,0,0,.10);
}

.pf-image-tabs__tab.is-active{
  background: #bb1654;
  border-color: #bb1654;
  color: #ffffff;
  box-shadow: 0 0.5rem 1.125rem rgba(187,22,84,.25);
}

.pf-image-tabs__overlay{
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  max-width: 37.5rem;
  padding: 1.875rem 1.75rem 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(0.625rem);
  box-shadow: 0 0.875rem 1.875rem rgba(0,0,0,.12);
}

.pf-image-tabs__overlay-title{
  margin: 0 0 0.75rem;
  font-size: clamp(1.875rem, 3vw, 2.375rem);
  line-height: 1.08;
  font-weight: 700;
  color: #333333;
}

.pf-image-tabs__overlay-desc{
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333333;
}

.pf-image-tabs__overlay-link{
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #bb1654;
  text-decoration: none;
}

.pf-image-tabs__overlay-link:hover,
.pf-image-tabs__overlay-link:focus{
  color: #941246;
}

/*    NEWSLETTER PAGE   */

.pf-newsletter-hero{
  padding: 5.625rem 0 2.5rem;
  text-align: center;
}

.pf-newsletter-signup{
  padding: 3.75rem 0 6.875rem;
}

.pf-newsletter-card{
  max-width: 32.5rem;
  margin: 0 auto;
  padding: 2.625rem 2.25rem;
  background: #ffffff;
  border-radius: 1.125rem;
  box-shadow: 0 0.875rem 1.875rem rgba(0,0,0,.08);
  text-align: center;
}

.pf-newsletter-card form{
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.pf-newsletter-card input{
  padding: 0.875rem 1rem;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.625rem;
  font-size: 1rem;
}

/*    PF ICON    */

.pf-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.pf-icon svg{
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.9;
  stroke: currentColor;
  display: block;
}

.pf-icon--sm svg{
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.pf-icon--lg svg{
  width: 2.25rem;
  height: 2.25rem;
  stroke-width: 1.75;
}

/*    RESPONSIVE    */

@media (max-width: 68.75rem){
  .pf-image-hero{
    min-height: 38.75rem;
    background-position: center 28%;
  }

  .pf-image-hero__inner{
    padding: 4.875rem 0;
  }

  .pf-image-hero__content--right{
    width: 100%;
    max-width: 40rem;
  }

  .pf-image-hero .pf-h1,
  .pf-image-hero .pf-h2,
  .pf-image-hero .pf-hero__title{
    font-size: clamp(2.25rem, 5vw, 3rem);
  }

  .pf-image-hero .pf-lead,
  .pf-image-hero .pf-hero__lead{
    font-size: 1.125rem;
  }

  .pf-grid-3{
    grid-template-columns: 1fr;
  }

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

  .pf-split__grid,
  .pf-split__grid--landscape{
    grid-template-columns: 1fr;
  }

  .pf-split__media{
    order: -1;
  }

  .pf-split__media img,
  .pf-split__grid--landscape .pf-split__media img{
    aspect-ratio: 16 / 10;
  }

  .pf-split__grid--landscape .pf-split__content,
  .pf-split__grid--landscape .pf-h2{
    max-width: none;
  }

  .pf-image-tabs__stage{
    min-height: 38.75rem;
  }

  .pf-image-tabs__overlay{
    max-width: 35rem;
  }

  .pf-page-header{
    padding: 5rem 0 3rem;
  }
}

@media (max-width: 56.25rem){
  .pf-image-hero__content--right{
    width: 100%;
    max-width: 40rem;
  }

  .pf-page-home .pf-image-hero__content--right{
    margin-right: 0;
  }
}

@media (max-width: 47.5rem){
  .pf-image-hero{
    min-height: 31.25rem;
    background-position: center 24%;
  }

  .pf-image-hero::before{
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.46) 0%,
      rgba(0,0,0,.28) 40%,
      rgba(0,0,0,.54) 100%
    );
  }

  .pf-image-hero__inner{
    padding: 3.25rem 0;
  }

  .pf-image-hero__content,
  .pf-image-hero__content--left,
  .pf-image-hero__content--right,
  .pf-image-hero__content--families{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .pf-image-hero .pf-h1,
  .pf-image-hero .pf-h2,
  .pf-image-hero .pf-hero__title{
    font-size: 2.375rem;
  }

  .pf-image-hero .pf-lead,
  .pf-image-hero .pf-hero__lead{
    font-size: 1.125rem;
    max-width: 100%;
  }

  .pf-image-hero__actions{
    gap: 0.625rem;
    margin-top: 1.5rem;
  }

  .pf-btn{
    width: 100%;
    min-height: 3.125rem;
  }

  .pf-grid-2,
  .pf-grid-3,
  .pf-grid-4{
    grid-template-columns: 1fr;
  }

  .pf-card,
  .pf-program-card__content,
  .pf-stat,
  .pf-impact{
    padding: 1.375rem;
  }

  .pf-stat__num{
    font-size: 2.375rem;
  }

  .pf-impact__num{
    font-size: 2.875rem;
  }

  .pf-form-row{
    flex-direction: column;
  }

  .pf-input{
    width: 100%;
  }

  .pf-page-header{
    padding: 4rem 0 2.25rem;
  }

  .pf-page-header .pf-h1,
  .pf-page-header .pf-lead{
    max-width: none;
  }

  .pf-image-tabs__stage{
    min-height: 35rem;
    border-radius: 1.375rem;
  }

  .pf-image-tabs__tabs{
    top: 1.125rem;
    left: 1.125rem;
    right: 1.125rem;
    gap: 0.5rem;
  }

  .pf-image-tabs__tab{
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }

  .pf-image-tabs__overlay{
    left: 1.125rem;
    right: 1.125rem;
    bottom: 1.125rem;
    max-width: none;
    padding: 1.375rem;
    border-radius: 1.125rem;
  }

  .pf-image-tabs__overlay-title{
    font-size: 1.75rem;
  }

  .pf-image-tabs__overlay-desc{
    font-size: 1rem;
    line-height: 1.55;
  }

  body.pf-page-home .pf-hero{
    min-height: 72vh;
  }

  body.pf-page-home .pf-hero__inner{
    justify-content: center;
    padding: 1.25rem 0;
  }

  body.pf-page-home .pf-hero__content{
    transform: none;
    max-width: 92%;
  }

  body.pf-page-home .pf-hero::before{
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.35) 55%,
      rgba(0,0,0,0.00) 88%
    );
  }
}