/* =================================================================
   local-speakers.php — hide the "Chairpersons" heading only.

   The chairpersons grid renders normally; just its eyebrow and <h2>
   are hidden, so the cards continue under the Local Faculty title.

   Visually hidden rather than display:none, so screen readers still
   announce the grouping. Nothing else on the page is affected.
   ================================================================= */

.members-block--continued .members-intro {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
