/* ============================================
   team.css — styles specific to team.html
   ============================================ */

.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.team-card img{
  width: 128px; height: 128px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 4px solid var(--forest-pale);
}
.team-card h3{ font-size: 19px; margin-bottom: 4px; }
.team-card .role{
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.team-card p{ font-size: 14px; margin: 0; }

@media (max-width: 860px){ .team-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .team-grid{ grid-template-columns: 1fr; } }
