/* testimonials.css - Simple testimonials. No stars, no profile pics, no BS. */

.testimonials {
  margin: 0;
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-title {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display, inherit);
  text-align: center;
  color: var(--color-dark, #0f172a);
}

.testimonials-subtitle {
  margin: 0 0 3rem;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  color: var(--color-neutral, #64748b);
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-left: 3px solid var(--color-primary, #1e3a8a);
  background-color: #f8fafc;
}

.testimonial-quote {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark, #0f172a);
}

.testimonial-quote p {
  margin: 0;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-name {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-display, inherit);
  color: var(--color-dark, #0f172a);
}

.testimonial-company {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-neutral, #64748b);
}

.testimonial-logo {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.testimonial-logo img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
}

/* Mobile */
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 1.5rem;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial {
    padding: 1.5rem;
  }
}
