/* Judges Page Specific Styles */
.judges-section {
  max-width: 1200px;
  margin: 25px auto;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.3);
  color: #1a3e72;
}

.judges-section h2 {
  color: #1a3e72;
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  position: relative;
  padding-bottom: 15px;
}

.judges-section h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: #ffcc00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.judges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.judge-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 62, 114, 0.1);
}

.judge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.judge-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ffcc00;
}

.judge-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1a3e72;
  font-weight: 600;
}

.judge-card h3.highlight {
  color: #9a48f8;
}

.judge-card p {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .judges-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .judge-card img {
      width: 100px;
      height: 100px;
  }
}

@media (max-width: 576px) {
  .judges-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .judge-card {
      padding: 15px;
  }
  
  .judge-card img {
      width: 80px;
      height: 80px;
  }
}