.testimonials {
  background-color: #fff;
  padding: 60px 72px;
  text-align: center;
}

.testimonials-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #e9c664;
  margin-bottom: 25px;
}

.testimonials-title {
  font-family: "Abril Fatface", serif;
  font-size: 50px;
  color: #000;
  margin-bottom: 60px;
}

/* Контейнер для списку відгуків */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  gap: 50px;
}

/* Окрема карточка */
.testimonials-item {
  max-width: 300px;
  text-align: center;
}

/* Фото клієнта */
.testimonials-item-image {
  width: 100px;
  border-radius: 50%;
  margin: 0 auto;
}

/* Контейнер тексту */
.testimonials-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Цитата */
.testimonials-item-quote {
  padding: 30px 0;
}

/* Текст відгуку */
.testimonials-item-quote-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

/* Автор */
.testimonials-item-quote-author {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #e9c664;
  font-weight: bold;
  margin-top: 10px;
}


@media (max-width: 768px) {
  .testimonials {
    padding: 40px 24px;
  }

  .testimonials-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .testimonials-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .testimonials-list {
    gap: 30px;
  }

  .testimonials-item {
    max-width: 100%;
  }

  .testimonials-item-image {
    width: 80px;
  }

  .testimonials-item-quote-text {
    font-size: 14px;
  }

  .testimonials-item-quote-author {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .testimonials {
    padding: 30px 16px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .testimonials-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .testimonials-item-image {
    width: 70px;
  }

  .testimonials-item-quote-text {
    font-size: 13px;
  }

  .testimonials-item-quote-author {
    font-size: 15px;
  }
}

@media (max-width: 350px) {
  .testimonials {
    padding: 24px 12px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .testimonials-subtitle {
    font-size: 15px;
  }

  .testimonials-item-image {
    width: 60px;
  }

  .testimonials-item-quote-text {
    font-size: 12px;
  }

  .testimonials-item-quote-author {
    font-size: 14px;
  }
}
