/* --------------- VOLUNTEER PAGE --------------- */

.volunteer-section .container {
  width: min(1280px, 95vw);
}

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.volunteer-cta {
  text-align: center;
  padding: 40px 0;
}

.volunteer-cta .btn {
  margin-top: 8px;
}

.volunteer-cta .form-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .volunteer-grid {
    grid-template-columns: 1fr;
  }
}
