.testimonials-section {
  background: linear-gradient(31.86deg, #ed1c24 60.349%, #fcec21 106.59%);
  padding: 80px 240px;
}

.testimonials-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.testimonials-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.testimonials-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.testimonials-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: #0e0a09;
  border: 1px solid #f9671a;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #124e8c;
  border: 2px solid #124e8c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 1200px) {
  .testimonials-section {
    padding: 80px 80px;
  }

  .testimonials-inner {
    gap: 48px;
  }
}

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

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

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

@media (max-width: 480px) {
  .testimonials-section {
    padding: 48px 20px;
  }

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