/* Verified testimonial card styling (scoped to testimonials page) */

.verified-testimonials {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 28px;
}

.verified-testimonials.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.verified-testimonials .testimonial {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 22px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.verified-testimonials .testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.verified-testimonials .stars {
  color: #f1c40f;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.verified-testimonials .quote {
  color: #2c3e50;
  margin: 0 0 14px 0;
  font-style: normal;
  line-height: 1.65;
}

.verified-testimonials .author {
  color: #2c3e50;
  font-weight: 800;
  margin: 0;
}

.verified-testimonials .verified-label {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 6px 0 0 0;
}

@media (max-width: 768px) {
  .verified-testimonials {
    padding: 18px;
  }

  .verified-testimonials.testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


