.testimonials {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.testimonials__heading {
  margin: 0 0 40px;
  max-width: 500px;
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #111A28;
}

.testimonials__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials__item {
  padding: 28px;
  border-radius: 12px;
  background: #f7f4fa;
}

.testimonials__stars {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonials__quote {
  margin: 0 0 20px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials__name {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1D2C38;
}

@media (max-width: 900px) {
  .testimonials__items {
    grid-template-columns: 1fr;
  }
}
