/* =========================
   HERO: Trusted by Educational Leaders
   ========================= */

   .leaders-hero .leaders-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    column-gap: 48px;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .leaders-hero__media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
  }

  .leaders-hero__image {
    width: min(423px, 100%);
    height: auto;
    display: block;
  }

  .leaders-hero__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .leaders-hero__title {
    font-family: 'ATPPleasurize-Regular', 'ATP-Pleasurize', sans-serif;
    font-size: 56px;
    line-height: 55px;
    color: #154269;

    margin: 0;
  }

  .leaders-hero__lead {
    font-family: var(--ubuntu-font);
    font-size: 16px;
    line-height: 24px;
    color: var(--unnamed-color-154269);
    max-width: 598px;
    margin: 0;
  }

  .leaders-hero__testimonial {
    display: grid;
    gap: 10px;
    max-width: 520px;
  }

  .leaders-hero__stars {
    width: 133px;
    height: auto;
    display: block;
  }

  .leaders-hero__quote {
    font-family: var(--ubuntu-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--unnamed-color-154269);
    margin: 0;
  }

  .leaders-hero__byline {
    font-family: var(--ubuntu-font);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--unnamed-color-154269);
    margin: 0;
  }

  .leaders-hero__cta {
    margin-top: 6px;
  }

  .leaders-hero .dark-blue-band {
    height: 56px;
  }

  /* =========================
   CARD: Idaho Partnership Testimonial
   ========================= */


.idaho-card__title {
  width: min(368px, 100%);
  height: auto;
  display: block;
  margin: 0 0 18px 0;
}

.idaho-card__text {
  font-family: var(--ubuntu-font);
  font-size: 16px;
  line-height: 24px;
  color: var(--unnamed-color-154269);
  margin: 0 0 18px 0;

  max-width: 100%;
}

.idaho-card__stars {
  width: 133px;
  height: auto;
  display: block;
  margin: 0 0 10px 0;
}

.idaho-card__byline {
  font-family: var(--ubuntu-font);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--unnamed-color-154269);
  margin: 0;
}
.testimonial-button{
  margin-top: 48px;
  margin-bottom: 24px;
}

/* =========================
   CARD: Why (Video)
   ========================= */


  .why-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
  }

  .why-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

 /* =========================
   DEMO ARROW (points to demo card)
   ========================= */

.arrow-anchor {
  position: relative;
  overflow: visible;
}

.two.split > .border:last-child {
  position: relative;
  overflow: visible;
}


.demo-arrow {
  position: absolute;

  left: 0;
  bottom: 0;

  transform: translate(-65%, 63%) rotate(0deg);

  width: clamp(140px, 18vw, 253px);
  height: auto;

  pointer-events: none;
  z-index: 3;
}




  /* =========================
     RESPONSIVE
     ========================= */

  @media (max-width: 900px) {
    .leaders-hero .leaders-hero__inner {
      grid-template-columns: 1fr;
      row-gap: 18px;
      align-items: start;
    }

    .leaders-hero__media {
      justify-content: center;
    }

    .leaders-hero__image {
      width: min(380px, 80vw);
    }

    .leaders-hero__lead,
    .leaders-hero__testimonial {
      max-width: 100%;
    }

    .idaho-card__text {
      font-size: 15px;
      line-height: 22px;
    }
    .demo-arrow {
      display: none;
    }
    .leaders-hero__title {
      font-size: 42px;
      line-height: 40px;
    }

  }

  @media (max-width: 600px) {

    .leaders-hero__lead {
      font-size: 15px;
      line-height: 22px;
    }

    .idaho-card__title {
      width: min(320px, 100%);
      margin-bottom: 14px;
    }

    .idaho-card__stars {
      margin-bottom: 8px;
    }
  }
