/* custom overrides (loaded last) */
@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;
  }
}

/* Contact page map: the embed is a fixed-height iframe, not the
   absolutely-positioned inner the template's aspect-ratio box expects.
   Drop the 125% top-padding spacer so the map sits directly beneath the
   contact info cards instead of being pushed far below them. */
.hasMap .scMap {
  padding-top: 0 !important;
}
.hasMap .scMap iframe {
  display: block;
  width: 100%;
}

/* Newsletter (home): hide only the embed widget's own H3 title and its
   paragraph subtitle. The section's H2 ("Sign Up For Our Newsletter") is
   separate markup and is kept. */
.lk-title,
.lk-sub {
  display: none !important;
}
