.tm-d { background: var(--cream); padding: 96px 0 120px; }
.tm-d__head { margin-bottom: 56px; max-width: 640px; }
.tm-d__head h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(32px, 4.4vw, 56px); margin: 0 0 14px; }
.tm-d__head p { color: var(--ink-muted); max-width: 500px; }
.tm-d__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 769px) { .tm-d__grid { grid-template-columns: repeat(3, 1fr); } }
.tm-d__card {
  position: relative;
  margin: 0;
  padding: 28px 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tm-d__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: rgba(97, 189, 183, 0.1);
  color: var(--teal);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tm-d__badge svg { width: 14px; height: 14px; }
.tm-d__card blockquote { margin: 0; font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.4; color: var(--navy); }
.tm-d__card figcaption { display: flex; gap: 12px; align-items: center; margin-top: auto; color: var(--ink-muted); font-size: 13px; }
.tm-d__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 13px; }
.tm-d__card figcaption strong { color: var(--navy); font-weight: 600; font-size: 14px; }
