/* ============================================
   SHARED SECTION STYLES
   ============================================ */
/* Offset anchor targets so the fixed header doesn’t hide the section label when navigating */
#campaign,
#reach,
#aim,
#toolkit,
#contact,
#display-board {
  scroll-margin-top: 7rem; /* ~112px: clears fixed header (and admin bar when logged in) so section-label stays visible */
}

.section {
  padding: var(--section-padding);
}

.section + .section {
  padding-top: 1rem;
}

@media screen and (max-width: 768px) {
  .section + .section {
    padding-top: 1.5rem;
  }

  .hero-section + .section {
    padding-top: 0.75rem;
  }
}


.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 800px;
  line-height: 1.85;
}

.section--alt {
  background: var(--gray-50);
}

