.teams-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.teams-region-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.teams-region-header h2 {
  margin: 0;
  font-size: 1.6rem;
  color: white;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.06);
}

.team-card--disabled {
  opacity: 0.85;
}

.team-card__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  padding: 0.3rem;
  flex-shrink: 0;
}

.team-card__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.team-card__abbr {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.team-card__name {
  color: var(--muted);
  font-size: 0.95rem;
}

.team-card__note {
  margin-top: 0.35rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .teams-grid {
    grid-template-columns: 1fr;
  }
}