/* Site-wide fixes layered over the mirrored WordPress theme CSS.
   Loaded on every mirrored page by src/pages/[...slug].astro. */

/* Header phone icon. Astra sets the link's own colour variable to `inherit`
   inline and fills the SVG from it; on WebKit that resolves to black on the
   navy bar, so the call button disappears on iPhones. Pin it to white. */
.ast-header-social-1-wrap .ast-phone,
.ast-header-social-1-wrap .ast-phone:hover,
.ast-header-social-1-wrap .ast-phone:focus {
  --color: #ffffff !important;
  color: #ffffff !important;
}
.ast-header-social-1-wrap .ast-phone svg,
.ast-header-social-1-wrap .ast-phone svg path {
  fill: #ffffff !important;
}
