/* ── Team block ─────────────────────────────────────────── */
.team-wrap {
  background: var(--surface-white);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 26px;
  margin-bottom: 16px;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.team-header-icon {
  color: var(--color-blue-900);
  font-size: 20px;
}

.team-header-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-blue-900);
  margin: 0;
}

.team-grid {
  display: grid;
  grid-auto-flow: column;
  /*grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));*/
  gap: 12px;
}

.team-card {
  background: var(--surface-default);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-blue-100);
  color: var(--color-blue-700,);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.team-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue-900);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
