/* 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;
  }
}
/* Newsletter (Lumistry capture) embed: hide only its injected heading
   (h3.lk-title) + subtitle (p.lk-sub), keeping the input + button. The template
   block already supplies its own "Sign Up For Our Newsletter" title.
   IMPORTANT: do NOT hide all p's — the post-submit confirmation
   ("Thanks — you're subscribed!") renders as p.lk-msg and must stay visible. */
[data-lumistry-capture] .lk-title,
[data-lumistry-capture] .lk-sub {
  display: none !important;
}
