.testimonials {
  padding: 100px 0;
  background: #630200;
}

.testimonials__heading {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1;
}

.testimonials__subtitle {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
}

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

.testimonials__card {
  background: #410100;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonials__stars {
  margin-bottom: 12px;
}

.testimonials__star {
  color: #f0c83c;
  font-size: 18px;
}

.testimonials__text {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

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

.testimonials__name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  .testimonials__heading {
    font-size: 28px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
