.volunteer-page {
  scroll-margin-top: var(--space-8);
}

.volunteer-hero {
  background: radial-gradient(circle at top left, var(--color-primary-soft), transparent 55%);
}

.volunteer-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.volunteer-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary-strong);
  margin-bottom: var(--space-2);
}

.volunteer-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.volunteer-hero__actions {
  margin-bottom: var(--space-3);
}

.volunteer-hero__meta {
  font-size: var(--font-size-sm);
}

.volunteer-hero__media {
  min-height: 260px;
}

.section-header {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.volunteer-bullet-list {
  padding-left: 1.1rem;
}

.volunteer-bullet-list li {
  margin-bottom: var(--space-2);
}

.volunteer-bullet-list li::marker {
  color: var(--color-primary);
}

.volunteer-why__list {
  align-self: stretch;
}

.volunteer-why__cta {
  margin-top: var(--space-3);
}

.volunteer-opportunity {
  height: 100%;
}

.volunteer-stories__grid,
.volunteer-featured-projects__grid,
.volunteer-process__grid,
.volunteer-training__grid,
.volunteer-community__grid,
.volunteer-safety__grid {
  gap: var(--space-6);
  align-items: flex-start;
}

.volunteer-testimonials {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-4) 0;
}

.volunteer-testimonial blockquote {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.volunteer-testimonial figcaption {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}

.volunteer-featured-projects__media {
  min-height: 260px;
}

.volunteer-form-card {
  height: 100%;
}

.volunteer-form__field {
  margin-bottom: var(--space-4);
}

.volunteer-form__note {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
}

.volunteer-steps {
  padding-left: 1.25rem;
  margin-top: var(--space-3);
}

.volunteer-steps li {
  margin-bottom: var(--space-3);
}

.volunteer-support,
.volunteer-community__card,
.volunteer-ethics,
.volunteer-feedback {
  height: 100%;
}

.volunteer-faq__container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.volunteer-faq__intro {
  max-width: 420px;
}

.volunteer-faq-item {
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-3);
}

.volunteer-faq-item__toggle {
  width: 100%;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--font-size-md);
  text-align: left;
  cursor: pointer;
}

.volunteer-faq-item__question {
  font-weight: 600;
}

.volunteer-faq-item__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  color: var(--gray-600);
}

.volunteer-faq-item__answer {
  padding: 0 var(--space-4) var(--space-4);
  border-top: 1px solid var(--gray-200);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.volunteer-contact__grid {
  gap: var(--space-6);
}

.volunteer-cta-final__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.volunteer-cta-final__content {
  max-width: 640px;
}

@media (max-width: 960px) {
  .volunteer-faq__container {
    grid-template-columns: minmax(0, 1fr);
  }

  .volunteer-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .volunteer-featured-projects__grid,
  .volunteer-process__grid,
  .volunteer-training__grid,
  .volunteer-community__grid,
  .volunteer-safety__grid,
  .volunteer-contact__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .volunteer-hero__media,
  .volunteer-featured-projects__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .volunteer-hero__lead {
    font-size: var(--font-size-md);
  }

  .volunteer-faq-item__toggle {
    padding: var(--space-3);
  }

  .volunteer-faq-item__answer {
    padding-inline: var(--space-3);
  }

  .volunteer-cta-final__container {
    align-items: flex-start;
  }
}
