.tm-a { background: var(--cream); padding: 96px 0 120px; }
.tm-a__head { margin-bottom: 56px; max-width: 640px; }
.tm-a__head h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(32px, 4.4vw, 56px); margin: 0; }
.tm-a__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 769px) { .tm-a__grid { grid-template-columns: repeat(3, 1fr); } }
.tm-a__card {
  margin: 0;
  padding: 40px 32px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.tm-a__quote { position: absolute; top: 20px; left: 28px; width: 36px; height: 36px; color: var(--teal); }
.tm-a__card blockquote {
  margin: 24px 0 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy);
}
.tm-a__card figcaption { display: flex; align-items: center; gap: 14px; }
.tm-a__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
}
.tm-a__who { color: var(--ink-muted); font-size: 13px; line-height: 1.4; }
.tm-a__who strong { color: var(--navy); font-weight: 600; }
.tm-a__dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.tm-a__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; transition: background 0.15s, transform 0.15s; }
.tm-a__dot.is-active { background: var(--teal); transform: scale(1.3); }
.tm-a__dot:hover { background: var(--teal); }
