/* ════════════════════════════════════════════
   TESTIMONIALS.CSS
════════════════════════════════════════════ */

#testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.t-hd {
  text-align: center;
  margin-bottom: 52px;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-card {
  background: var(--bg);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.t-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Photo placeholder — replace src attr with real image */
.t-photo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 18px;
  object-fit: cover;
  display: block;
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.t-star {
  color: #F59E0B;
  font-size: 15px;
  line-height: 1;
}

.t-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.74;
  margin-bottom: 22px;
}

.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.t-role {
  font-size: 13px;
  color: var(--text-light);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .t-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
