/* Judges Section Styles */
.judges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.judge-card {
  background: var(--bg-oxford-orange-alpha-90, #1a2236ee);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.judge-name {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 0.25em;
  word-break: break-word;
  color: var(--text-white, #fff);
}

.judge-affiliation {
  font-style: italic;
  color: #ff7300;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  word-break: break-word;
}

@media (max-width: 600px) {
  .judges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .judge-card {
    padding: 1rem 0.5rem;
  }
} 