.testimonials-section {
  margin: 0 auto;
  text-align: left;
}

.section-title {
  font-family: var(--font-canela) !important;
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-40);
  line-height: 100%;
  vertical-align: middle;
  color: rgba(31, 41, 55, 1);
  margin-bottom: var(--mp8);
}

.section-subtitle {
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-20);
  line-height: var(--line-height-28);
  vertical-align: middle;
  color: rgba(220, 38, 38, 1);
  margin-bottom: var(--mp20);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--mp32);
}

.testimonial-box {
  background: rgba(255, 255, 255, 1);
  border-radius: var(--border-radius-12);
  display: flex;
  flex-direction: row;
  padding: var(--mp24);
  align-items: center;
  text-align: left;
  box-shadow: 2px 4px 32px 0px rgba(0, 0, 0, 0.04);
  gap: var(--mp24);
}

.testimonial-box--reverse {
  flex-direction: row-reverse;
}

.testimonial-image {  
  aspect-ratio: 3 / 2;
  width: 263px;
  border-radius: var(--border-radius-8);
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  flex: 1;  
}

.testimonial-content h3 {
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-20);
  line-height: var(--line-height-28);
  color: rgba(31, 41, 55, 1);
  margin-bottom: var(--mp8);
}

.testimonial-position {
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-16);
  line-height: var(--line-height-20);
  color: rgba(127, 29, 29, 1);
  margin-bottom: var(--mp12);
}

.testimonial-text {
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-14);
  line-height: var(--line-height-16);
  color: rgba(75, 85, 99, 1);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-box {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-box--reverse {
    flex-direction: column;
  }

  .testimonial-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .testimonial-content {
    flex: unset;
    width: 100%;
  }

  .testimonial-content h3,
  .testimonial-position,
  .testimonial-text {
    text-align: center;
  }

  .section-title,
  .section-subtitle {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: var(--font-size-24);
    line-height: 120%;
  }

  .section-subtitle {
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
  }

  .testimonial-content h3 {
    font-size: var(--font-size-16);
  }

  .testimonial-position {
    font-size: var(--font-size-12);
  }

  .testimonial-text {
    font-size: var(--font-size-12);
  }

  .testimonials-grid {
    gap: var(--mp16);
  }

  .testimonial-box {
    padding: var(--mp16);
    gap: var(--mp16);
  }

  .testimonial-image {
    max-width: 100%;
  }
}
