
/* 🔧 Page-specific styles for Candidates Page (/candidates/) */

.content-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .content-section.light-gray {
    background-color: #eaeaea;
  }
  
  .content-section.bg-light-alt {
    background-color: #f9f9f9;
  }
  
  .hero-banner-candidates {
    padding: 3rem 1rem;
    text-align: center;
    background: linear-gradient(to right, #f5f5f5, #e5e5e5);
    margin-top: 2rem;
  }
  
  .hero-banner-candidates h1 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .hero-banner-candidates p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .list-container {
    margin-top: 1.5rem;
    text-align: left;
  }
  
  .spaced-list {
    padding-left: 1rem;
    list-style-type: disc;
  }
  
  .spaced-list li {
    margin-bottom: 0.75rem;
  }
  
  .text-container p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .submission-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .submission-item-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .submission-label,
  .submission-content p {
    text-align: center;
  }
  
  .submission-label {
    font-weight: bold;
  }
  