/* custom overrides (loaded last) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
/* Pharmacy team: display members as cards in a responsive grid */
.teamGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 1em;
}
.teamGrid .teamCard {
  margin: 0;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  line-height: 1.5;
}
.teamGrid .teamCard strong {
  display: block;
  font-size: 1.05em;
  margin-bottom: 2px;
}
/* Skip-to-content link (visible only on keyboard focus) */
.skipLink {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 100000;
  background: #0b3d91;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skipLink:focus {
  top: 0;
  outline: 3px solid #ffd54a;
}
@media (max-width: 767px) {
  .headerAndNavContainer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
  }
  /* eyebrow (secondary nav) collapses on scroll to reclaim space */
  .secondaryNav {
    overflow: hidden;
    max-height: 300px;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .secondaryNav.eyebrow-collapsed {
    max-height: 0 !important;
    opacity: 0 !important;
  }
  /* Tap targets >= 44px and legible base font on mobile (WCAG 2.5.5) */
  body { font-size: 16px; }
  nav a, .primaryNav a, .secondaryNav a, .navButton, button,
  a.button, .blockButton a, footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
/* Top contact bar: icon sits tight against its text with even, consistent spacing.
   Theme positions the icons absolute at left:-20px, so the icon-to-text gap ends up
   uneven (20px minus each icon's differing width). Put icons back in normal flow. */
.secondaryNavContent .blockInnerContent {
  display: inline-flex;
  align-items: center;
}
.blockWrap_d1c3085901d84645b31bd09c4bae76b6 .blockInnerContent:before,
.blockWrap_ec68df6a64454b0d992c5244bb2cac55 .blockInnerContent:before,
.blockWrap_f00a8333e723460baad25b5365b52e36 .blockInnerContent:before {
  position: static;
  left: auto;
  margin-top: 0;
  margin-right: 8px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1025px) {
  .secondaryNavContent {
    gap: 2em;
  }
  .secondaryNavContent .blockInnerContent,
  .secondaryNavContent .blockInnerContent p {
    white-space: nowrap;
  }
}
/* Newsletter: the Lumistry embed renders its own title, so the template's plain
   heading column is removed (see swap_newsletter_lumistry). Center the single
   remaining form column within the section to match the template's centered look. */
.blockContent.lumistryNewsletter {
  justify-content: center;
}
.blockContent.lumistryNewsletter .blockImg.blockForm {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  text-align: center;
}
