:root{
  --primary:#3b82f6;
  --bg:#fafafa;
  --text:#263238;
  --muted:#475569;
  --card:#ffffff;
  --radius:12px;
  --shadow:0 12px 30px rgba(16,24,40,0.06);
  --star:#fbbf24;
}

/* Section */
.testimonial17-section {
  padding: 3.5rem 5%;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Header */
.testimonial17-header {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.testimonial17-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #071133;
}
.testimonial17-text {
  font-size: 1rem;
  color: var(--muted);
}

/* Grid */
.testimonial17-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media(min-width: 768px) {
  .testimonial17-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media(min-width: 1024px) {
  .testimonial17-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.testimonial17-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,0.03);
  transition: transform .18s ease, box-shadow .18s ease;
}
.testimonial17-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15,23,42,0.08);
}

/* Stars */
.testimonial17-stars {
  font-size: 1rem;
  color: var(--star);
  margin-bottom: 0.75rem;
}

/* Quote */
.testimonial17-quote {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Author */
.testimonial17-author {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.testimonial17-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
  box-shadow: 0 8px 20px rgba(16,24,40,0.04);
}
.testimonial17-author-name {
  font-weight: 700;
  color: #0b2540;
}
.testimonial17-author-role {
  font-size: 0.875rem;
  color: var(--muted);
  display: block;
}

/* Small tweaks for mobile */
@media(max-width:480px){
  .testimonial17-heading{ font-size:1.6rem; }
  .testimonial17-card{ padding:1.15rem; min-height:180px; }
  .testimonial17-quote{ font-size:0.95rem; }
}
