.testimonials-cloud {
  position: relative;
  isolation: isolate;
  padding-top: 64px;
  padding-bottom: 86px;
  border-top: 1px solid #eef0ee;
  border-bottom: 1px solid #eef0ee;
}

.testimonials-cloud::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 100%, #eef3f01f, transparent 58%);
}

.testimonials-heading {
  margin-bottom: 45px;
}

.testimonials-heading h2 {
  margin-top: 20px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: -.05em;
}

.testimonials-heading h2 span {
  color: #858e86;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
  padding-inline: 7px;
}

.testimonial-card {
  position: relative;
  z-index: 0;
  min-height: 295px;
  margin: 0;
  padding: 28px 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5eae6;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f8faf8);
  box-shadow: 0 3px 3px #31483a08, 0 14px 28px #31483a0b;
}

.testimonial-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 18px -9px;
  z-index: -2;
  border: 1px solid #e8ece8;
  border-radius: 18px;
  background: #f4f7f4;
  box-shadow: 0 3px 9px #31483a07;
}

.testimonial-card::after {
  inset: 8px -4px;
  z-index: -1;
  background: #fbfcfb;
}

.testimonial-mark {
  height: 30px;
  color: #8ea28f;
  font-size: 36px;
  line-height: 1;
  user-select: none;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 14px 0 28px;
  color: #38423b;
  font-size: 19px;
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: -.5px;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #526c5a;
  font-size: 13px;
  font-weight: 500;
}

.testimonial-initial {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf2ee;
  color: #6f8976;
  font-size: 11px;
}

.testimonial-card:nth-child(2) .testimonial-initial {
  background: #e9f0ea;
  color: #77907b;
}

.testimonial-card:nth-child(3) .testimonial-initial {
  background: #f0ede8;
  color: #968a77;
}

@media (max-width: 900px) {
  .testimonials-cloud {
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .testimonial-grid {
    gap: 22px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .testimonials-cloud {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .testimonials-heading {
    margin-bottom: 34px;
  }

  .testimonials-heading h2 {
    font-size: 31px;
    line-height: 1.23;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-inline: 9px;
  }

  .testimonial-card {
    min-height: 250px;
    padding: 25px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
  }
}
