/* Shared across auth.html / verify.html / admin.html.
   One reusable rule for collapsing an icon+label control down to just its
   icon on a narrow screen: each page's own stylesheet toggles this by
   setting `display: none` on `.icon-link-label` inside its own breakpoint
   (widths where the choice differs per page) and adding `aria-label` to
   the parent link so the name survives for assistive tech. Plain
   `display: none` avoids the failure mode of hiding via `color:
   transparent` + `overflow: hidden` — centering an oversized flex item
   inside a clipped box can push the remaining icon outside the clip
   region too, leaving a blank, unlabeled control (see DESIGN-AUDIT.md,
   2.1/2.2).
*/
.icon-link-label {
  display: inline;
}
