/* custom overrides (loaded last) */
/* Nav now mirrors the MSI template's four top-level items (About, Services,
   Mobile, Contact) so it uses the template's native spacing — no tightening. */
@media only screen and (min-width: 768px) {
  .navContent .button.navButton { 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;
  }
}
/* Footer bottom row: keep "Download Our App" in line with copyright (right-justified).
   The custom footer JS re-parents the phone/hours/address blocks into Contact Us,
   which shifts nth-child indices so the appDownload block becomes 4n+1 and inherits
   clear:left, dropping it onto its own line. Cancel that clear so it floats beside copyright. */
@media only screen and (min-width: 768px) {
  .footerContent .blockWrap_db86d595c9424d9f9d4d0403895bf81e {
    clear: none !important;
  }
}
