/* Team page specific styles */
.team-hero {
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  padding: 2rem;
}
.team-photo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#teamPhoto {
  width: 90%;
  max-height: 500px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 1px solid rgba(59,130,246,0.2);
}
#teamPhoto img {
  object-fit: contain;
}

.champions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}
.champions h2 {
  margin-bottom: 1rem;
  color: #1e40af;
}
.champions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.champion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.95);
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(59,130,246,0.2);
}
.champion-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.champion-card h4 {
  margin: 0.25rem 0 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .champions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .champions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .champions-grid {
    grid-template-columns: 1fr;
  }
}
