/* Recruit page styles moved from recruit.php */
.apply-cta {
  background: linear-gradient(135deg, rgba(29, 127, 212, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: var(--radius-sm);
  padding: 60px 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.apply-cta.apply-cta--early {
  margin-top: 40px;
}

.apply-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.apply-cta p {
  margin-bottom: 24px;
  font-size: 1rem;
}

@media (prefers-color-scheme: dark) {
  .apply-cta {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.6));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .apply-cta h2 {
    color: #60a5fa;
  }
  
  .apply-cta p {
    color: #94a3b8;
  }
}

.apply-cta h2 {
  color: var(--brand);
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.apply-cta p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--brand), var(--brand-500));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(11, 95, 179, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 95, 179, 0.4);
  background: linear-gradient(135deg, var(--brand-700), var(--brand));
}

.btn-apply span {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .apply-cta {
    padding: 32px 16px;
  }
  
  .btn-apply {
    width: 100%;
    justify-content: center;
  }
  
  #recruit {
    padding: 0 4px;
  }
  
  #recruit h2, #recruit h3 { padding-left: 8px; }
  #recruit p, #recruit ul { padding-left: 8px; padding-right: 8px; }
  #recruit ul { padding-left: 1.2em; }
}
