/* ============================================================
   kp_trustpartners — Testimonials + Client Logos
   ============================================================ */

.kp-testimonials {
  padding: 64px 0;
}

/* --- Header --- */
.kp-testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.kp-testimonials-header p {
  font-size: 15px;
  color: var(--kp-ink-60, #666);
  margin-top: 8px;
}

.kp-testimonials-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.kp-testimonials-stars {
  color: #fbbf24;
  font-size: 20px;
  letter-spacing: 2px;
}

.kp-testimonials-note {
  font-size: 20px;
  font-weight: 800;
  color: var(--kp-ink, #1a1a1a);
}

.kp-testimonials-count {
  font-size: 13px;
  color: var(--kp-ink-40, #999);
}

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

/* --- Card --- */
.kp-testimonial-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--kp-ink-10, #e5e5e5);
  padding: 24px;
}

.kp-testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.kp-testimonial-text {
  font-size: 14px;
  color: var(--kp-ink-60, #666);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.kp-testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--kp-ink, #1a1a1a);
}

.kp-testimonial-role {
  font-size: 12px;
  color: var(--kp-ink-40, #999);
  margin-top: 2px;
}

/* --- Logos strip --- */
.kp-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--kp-ink-10, #e5e5e5);
}

.kp-logo-item img {
  max-height: 36px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.2s, opacity 0.2s;
}

.kp-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

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

  .kp-testimonials-score {
    flex-wrap: wrap;
  }
}
