.teams-filters {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}

.teams-filters input,
.teams-filters select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid #d4d8e2;
  border-radius: 8px;
  background: #fff;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.team-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.9rem;
  background: #fff;
}

.team-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.team-head img {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #dde4ef;
}

.team-head h2 {
  margin: 0;
  font-size: 1rem;
}

.team-head p {
  margin: 0;
  color: #5a6475;
  font-size: 0.9rem;
}
