.client-feedback {
  background: #F15A3A;
  padding: 80px var(--container-padding);
  min-height: 600px;
  color: var(--color-brand-surface);
}

.client-feedback .container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.client-feedback__header {
  margin-bottom: 60px;
}

.client-feedback__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.client-feedback__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 400;
  font-family: var(--font-body);
}

.client-feedback__testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
}

.testimonial__quote {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__photo {
  flex-shrink: 0;
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial__title {
  font-size: 0.9rem;
  opacity: 0.8;
}

.testimonial__company-logo {
  flex-shrink: 0;
}

.testimonial__logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.client-feedback--light .testimonial__logo {
  filter: none;
  opacity: 0.6;
}

.client-feedback__empty {
  text-align: center;
  font-family: var(--font-body);
}
