
.testimonials-curso {
  background-color: #f1f3fc;
  padding: 50px 20px;
}
.testimonials-curso__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  text-align: center;
}

.testimonial__photo {
  width: 100%;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
}

.testimonial__text {
  padding: 20px;
  font-style: italic;
}

.testimonial__name {
  font-weight: 600;
  color: #44408c;
  padding: 0px 20px 20px;
}
.testimonial__name span{
  font-weight: 400;
  color: #9998b3;
}
@media (max-width: 768px) {
  .testimonials-curso {
    padding: 40px 20px;
  }
}
