.testimonials {
  padding: 128px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials__header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}
.testimonials__header p {
  font-size: 24px;
  color: #dedddd;
}
.testimonials__grid {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
.testimonials__card {
  flex: 1;
}
.testimonials__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #755cb7;
  background: #501479;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #d46cff;
}
.testimonials__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 16px;
}
.testimonials__info h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.testimonials__stars {
  display: flex;
  gap: 4px;
  color: #ffd700;
  font-size: 20px;
}

@media (max-width: 1023px) {
  .testimonials {
    padding: 80px 40px;
  }
  .testimonials__grid {
    flex-wrap: wrap;
  }
  .testimonials__card {
    flex: 0 0 calc(50% - 16px);
  }
}
@media (max-width: 768px) {
  .testimonials {
    padding: 30px 20px;
  }
  .testimonials__header h2 {
    font-size: 24px;
  }
  .testimonials__header p {
    font-size: 16px;
  }
  .testimonials__grid {
    gap: 1rem;
  }
  .testimonials__card {
    flex: 0 0 100%;
  }
  .testimonials__avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .testimonials__info h4 {
    font-size: 16px;
  }
  .testimonials__stars {
    font-size: 16px;
  }
  .testimonials__text {
    font-size: 14px;
  }
}
