/* About Page */
p {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-grey);
}

.contain-about {
  width: min(95% - 2rem, 1100px);
  margin-inline: auto;
}
.impact-box {
  background: var(--light-blue);
  padding: 0.3rem 1.5rem;
  display: flex;
  align-items: center;
  min-height: 7rem; /* adjust to match tallest */
  border-radius: 1.5rem;
  font-size:1.1rem;
  color: var(--dark-blue);
}

.impact-box h3 {
  margin: 0;
  font-weight:500;
}

.about-cta {
  display: flex;
  justify-content: space-between;
  gap:2rem;
  background-color: var(--light-blue);
  padding:2rem 0;
}

.about-cta__text {
  align-self:center;
  width:42%;
}

.about-cta__text h2 {
  color:var(--dark-blue);
  font-size:2.5rem;
}

.about-cta__text > .squiggle {
  padding:1.2rem 0;
}

.about-cta__img img {
  width: 100%;
  max-width: 40rem;
  height: auto;
}

.about-story p {
  background:var(--light-blue);
  padding:2rem 6rem;
  border-radius:2rem;
  text-align:center;
}

.items-3-col, .team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.items-3-col > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-box {
  background: var(--light-blue);
  padding: 1rem 1.5rem;
  min-height: 48rem; /* adjust to match tallest */
  border-radius: 1.5rem;
  font-size:1.1rem;
  color: var(--dark-blue);
}

.team-box h3, h4 {
  text-align: center;
}

.team-box p, h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-grey);
}

.team-box h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-grey);
}

.team-box img {
  width:8rem;
}

.team-box > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews {
  width: min(90% - 2rem, 900px);
  margin-inline: auto;
}

.review-text {
  display: grid;
  gap:1rem;
}

.review-text {
  padding:0 2rem;
}

.review-stars {
  width:8rem;
}

.review-start-quote,
.review-end-quote {
  width:3rem;
}

.review-start-quote {
  align-self: flex-start;
}

.review-end-quote {
  align-self: flex-end;
}

.review-name {
  color: var(--black);
  font-size: 1.3rem;
  font-weight:400;
}

.review-details {
  padding-left:5rem;
  display: grid;
  gap:1rem;
}

.review-name {
  line-height: 1rem;
}

.grid {
  display: grid;
  gap:1.8rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--light-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:1rem;
  padding:1rem 0;
}


@media (max-width: 990px) {
  .team-wrapper {
    grid-template-columns: 1fr;
  }

  .team-box {
    min-height: unset;
    padding:2rem;
  }
}

@media (max-width: 960px) {

  .about-cta {
    flex-direction: column;
  }

  .about-cta__text {
    width:100%;
  }

  .about-cta__img img {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 1rem;
  }

  .about-story p {
    padding:2rem;
  }

  .review-text {
    padding:0;
  }

  .review-details {
    padding-left:0;
  }

}
