/* ── MAIN MENU / NAVBAR OVERRIDES ───────────────────────────── */

/* The search form has .container-inline which sets its child divs/labels to
   display:inline-block. Inline-block uses baseline alignment by default,
   causing the search input to sit slightly higher than the DONATE button.
   Unsetting display (reverting to block) on those children removes the
   baseline offset. Scoped to .block--searchform so it doesn't affect
   .container-inline on the rest of the site. */
.block--searchform .container-inline div,
.block--searchform .container-inline label {
  display: block;
}

.block--searchform {
  align-items: center;
}
