.home .home-testimonials {
  position: relative;
  background: #20231f;
  padding: 96px 0;
}

.home .home-testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 76px;
  transform: translateY(-100%);
  background: #20231f;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
}

.home .home-testimonials__inner {
  width: min(1290px, calc(100% - 2rem));
  margin: 0 auto;
}

.home .home-testimonials__title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: var(--home-display-font);
  font-size: clamp(2.2rem, 3vw, 2.986rem);
  font-weight: 400;
  line-height: 1.1;
}

.home .home-testimonials__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.home .home-testimonials__card {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.home .home-testimonials__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.home .home-testimonials__star {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.home .home-testimonials__quote {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: var(--home-body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.home .home-testimonials__divider {
  width: 127px;
  height: 3px;
  background: #e8eedc;
}

.home .home-testimonials__name {
  margin: 0;
  color: #d8dcd2;
  text-align: center;
  font-family: var(--home-body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .home .home-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
