/* ── Testimonial cards redesign ────────────────────── */
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.t-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--s1);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--s2); }
.t-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--pink);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}
.t-quote-mark { display: none; }
.t-quote {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  margin: 1.5rem 0 1.25rem;
  flex: 1;
}
.t-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}
.t-person {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #8D1D2E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.t-role { font-size: .78rem; color: var(--muted); margin-top: 2px; }
