/* Get Involved page restructure
   -----------------------------
   Hide inline Sponsor and Volunteer forms now that boxes link to
   dedicated /sponsor and /volunteer pages.
   Page is identified by presence of a link to /volunteer.
*/

/* Hide any section that contains the inline Sponsor inquiry form */
body:has(a[href="/volunteer"]) main section:has(form[action*="mjgzoaln"]) {
  display: none !important;
}

/* Hide any section that contains the inline Volunteer signup form.
   Note: the same Formspree endpoint (xkoezqpp) is also used by a tiny
   notify-me email form on other pages, but THAT form lives inside an
   event card, not its own <section>. We target via 'textarea[name=skills]'
   which only exists on the long volunteer form. */
body:has(a[href="/volunteer"]) main section:has(textarea[name="skills"]) {
  display: none !important;
}
