.team-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:20px;
}

.team-card{
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.avatar{
  width:56px;
  height:56px;
  border-radius:16px;
  background:
    radial-gradient(20px 20px at 30% 30%, rgba(212,179,90,.22), transparent 60%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  margin-bottom:12px;
}

.team-name{
  font-weight:700;
  margin-bottom:4px;
}

.team-role{
  font-size:13px;
  line-height:1.6;
  color:rgba(243,243,247,.68);
}

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