/* =========================
   MORE TESTIMONIALS PAGE (single card)
   ========================= */


  .testimonials-card__title {
    font-family: 'ATPPleasurize-Regular', 'ATP-Pleasurize', sans-serif;
    font-size: 56px;
    line-height: 55px;
    color: #154269;
    width: min(774px, 100%);
    height: auto;
    display: block;
    margin: 0 0 16px 0;
  }

  .testimonials-card__intro {
    font-family: var(--ubuntu-font);
    font-size: 14px;
    line-height: 20px;
    color: var(--unnamed-color-154269);
    max-width: 1200px;
    margin: 0 0 18px 0;
  }

  .testimonials-card__cta {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  /* =========================
     TESTIMONIAL SECTIONS
     ========================= */

  .testimonial-section {
    margin: 28px 0;
  }

  .testimonial-section:first-of-type {
    margin-top: 0;
  }

  .testimonial-section__stars {
    width: 133px;
    height: auto;
    display: block;
    margin: 0 0 14px 0;
  }

  .testimonial-section__quote {
    font-family: var(--ubuntu-font);
    font-size: 16px;
    line-height: 24px;
    color: var(--unnamed-color-154269);
    margin: 0 0 14px 0;
  }

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

  .testimonial-section + .testimonial-section {
    padding-top: 28px;
  }

  /* =========================
   READY CARD (Right side of two-card)
   ========================= */

.ready-card {
  padding: 28px;
  position: relative;
  overflow: visible;
}

.ready-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.ready-card .idaho-card__title {
  font-family: 'ATPPleasurize-Regular', 'ATP-Pleasurize', sans-serif;
  font-size: 56px;
  line-height: 55px;
  color: #154269;
  width: min(284px, 100%);
  height: auto;
  margin: 0;
}

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

.ready-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
  gap: 32px;
  align-items: stretch;
}

.ready-card__media {
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: visible;
}

.ready-card__media img {
  width: min(440px, 115%);
  max-height: 100%;
  height: auto;
  display: block;
  transform: translateY(50px);
}

.box.two-card,
.two.split {
  overflow: visible;
}

.ready-card__arrow {
  position: absolute;
  left: 0;
  bottom: -80px;

  transform: translate(-60%, 20%) rotate(5deg);

  width: clamp(150px, 18vw, 258px);
  height: auto;

  pointer-events: none;

  z-index: 999;
}


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

  @media (max-width: 900px) {

    .testimonials-card__cta {
      margin-bottom: 22px;
    }

    .testimonial-section {
      margin: 22px 0;
    }

    .testimonial-section + .testimonial-section {
      padding-top: 22px;
    }
    .ready-card__content {
      max-width: 100%;
      width: 100%;
    }
    .ready-card__grid {
      grid-template-columns: 1fr;
    }

    .ready-card__media {
      justify-content: center;
      margin-top: 18px;
    }

    .ready-card__media img {
      width: min(320px, 90vw);
      transform: translateY(0px);
    }
    .ready-card__arrow {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .two.split {
      display: block;
    }
    .two.split > .border + .border { margin-top: 20px; }
    .testimonials-card__title{
      font-size: 42px;
      line-height: 40px;
    }
    .testimonial-section__quote {
      font-size: 15px;
      line-height: 22px;
    }

    .ready-card__content {
      gap: 14px;
    }

    .ready-card .idaho-card__title {
      font-size: 42px;
      line-height: 40px;
    }

    .ready-card .idaho-card__text {
      font-size: 15px;
      line-height: 22px;
    }
  }
