.testimonials-section {
  background-color: #10182a;
  padding: 64px 0;
}

.testimonials-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 40px;
}

.testimonials-header .section-title {
  margin-bottom: 12px;
}

.testimonials-header .section-subtitle {
  margin-bottom: 32px;
}

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

.testimonial-card {
  background: rgba(5, 11, 15, 0.2);
  border: 1px solid #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.testimonial-content {
  flex: 1;
  text-align: left;
}

.testimonial-text {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #cbcbcb;
  line-height: 20px;
  margin-bottom: 6px;
}

.testimonial-author {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #1da1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .testimonials-wrapper {
    padding: 0 40px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-wrapper {
    padding: 0 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    gap: 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-author {
    font-size: 14px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}
