.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.team-card { background: #fff; min-width: 0; }
.team-card img, .team-initials {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: grid; place-items: center;
  background: var(--ink); color: var(--lime); font: clamp(3rem, 7vw, 6rem) Georgia, serif;
}
.team-card-copy { padding: 1.75rem; }
.team-card h3 { margin: .4rem 0 1rem; font-size: 1.6rem; }
.team-card-copy > p:not(.kicker) { color: #5e6862; }
.team-links { display: flex; gap: 1rem; margin-top: 1.5rem; font-size: .85rem; font-weight: 750; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
