/* custom overrides (loaded last) */

/* ---- Eyebrow (secondary nav): reference-style inline icons, stacked for both locations ---- */
/* the separate phone column stays hidden; phone is merged into each location line */
.secondaryNavContent .blockContainer.blockWrap_ec68df6a64454b0d992c5244bb2cac55 {
  display: none;
}
/* hours now merged into each location line; hide the separate shared hours block */
.secondaryNavContent .blockContainer.blockWrap_f00a8333e723460baad25b5365b52e36 {
  display: none;
}

/* clean white bar with a hairline underneath, centered content */
.secondaryNav {
  background: #fff;
  border-bottom: 1px solid rgba(0, 62, 126, 0.12);
}
.secondaryNavContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35em 2.75em;
  font-size: 15px;
}
.secondaryNavContent .blockContainer {
  display: flex;
  align-items: center;
}

/* colors: navy labels + phone, dark-gray address */
.secondaryNav .blockInnerContent strong {
  color: #003e7e;
}
.secondaryNav .addressMapLink {
  color: #27251f;
}
.secondaryNav .addressMapLink:hover {
  color: #003e7e;
}
.secondaryNav .eyebrowPhone {
  color: #003e7e;
  font-weight: 600;
  white-space: nowrap;
}
.secondaryNav .eyebrowSep {
  color: #9fbfe0;
  margin: 0 0.55em;
}

/* two location lines stacked and centered */
.secondaryNav .blockWrap_d1c3085901d84645b31bd09c4bae76b6 .blockInnerContent {
  text-align: center;
}
.secondaryNav .eyebrowLoc {
  margin: 0 0 1px;
  line-height: 1.45;
}
.secondaryNav .eyebrowLoc:last-child {
  margin-bottom: 0;
}
.secondaryNav .eyebrowHours {
  color: #27251f;
  white-space: nowrap;
}
.secondaryNav .eyebrowHours:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
  vertical-align: -2px;
  background: url(hours-dk.png) no-repeat center / contain;
}

/* inline icons (pin, phone, clock) to match the reference bar */
.secondaryNav .blockWrap_d1c3085901d84645b31bd09c4bae76b6 .blockInnerContent:before {
  display: none; /* drop the theme's single block-level pin; one per line instead */
}
.secondaryNav .addressMapLink:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 15px;
  margin-right: 7px;
  vertical-align: -2px;
  background: url(location_1.png) no-repeat center / contain;
}
.secondaryNav .eyebrowPhone:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
  background: url(phone_1.png) no-repeat center / contain;
}

/* hours: clock icon inline, no heading */
.secondaryNav .blockWrap_f00a8333e723460baad25b5365b52e36 .blockInnerContent:before {
  display: none;
}
.secondaryNav .blockWrap_f00a8333e723460baad25b5365b52e36 p {
  margin: 0;
}
.secondaryNav .blockWrap_f00a8333e723460baad25b5365b52e36 p:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
  vertical-align: -2px;
  background: url(hours-dk.png) no-repeat center / contain;
}

@media (min-width: 1025px) {
  .secondaryNav {
    padding: 11px 0;
  }
  /* each location = one clean, non-wrapping line */
  .secondaryNav .eyebrowLoc {
    white-space: nowrap;
  }
}

@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;
  }
}

/* Our Pharmacists — left-justified team members in a box */
.teamBox {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  padding: 4px 30px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}
.teamMember {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #eef1f4;
}
.teamMember:last-child {
  border-bottom: none;
}
.teamImg {
  flex: 0 0 200px;
  width: 200px;
}
.teamImg img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.teamInfo {
  text-align: left;
}
.teamInfo .contentTitle {
  margin: 0 0 4px;
  text-align: left;
}
.teamInfo p {
  margin: 0;
  text-align: left;
}
.teamInfo .teamBlurb {
  margin: 10px 0 0;
  padding-left: 20px;
  list-style: disc;
  text-align: left;
}
.teamInfo .teamBlurb li {
  margin: 3px 0;
}
.teamInfo .teamQuote {
  margin: 10px 0 0;
  font-style: italic;
  color: #003e7e;
}
@media (max-width: 767px) {
  .teamBox {
    padding: 4px 18px;
  }
  .teamMember {
    gap: 16px;
  }
}
