/* ========================================
   Champions Page
======================================== */
.champions-wrapper {
  width: min(900px, calc(100% - 28px));
  margin: 34px auto 0;
}

.champions-wrapper h1 {
  margin-bottom: 24px;
  text-align: center;
  color: var(--text);
}

.champions-container {
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 176, 106, 0.22);
  box-shadow: var(--shadow-lg);
}

.champion {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.champion + .champion {
  margin-top: 12px;
}

.champion:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 176, 106, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.edition {
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.champions-wrapper .team-name {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .champions-wrapper {
    width: calc(100% - 20px);
  }

  .champion {
    grid-template-columns: 1fr;
  }
}
