/* 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;
  }
}
/* Accessibility: skip link hidden until keyboard focus (no visual change for
   mouse users) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 10px 16px;
  background: #003e7e;
  color: #fff;
  font: 600 15px/1.2 sans-serif;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-to-content:focus {
  left: 0;
}
/* Newsletter: hide the Lumistry widget's own title (h3.lk-title) and subtitle
   (p.lk-sub) so only the theme's H2 "Sign Up For Our Newsletter" heads the
   block. The email field, button and consent text are untouched. */
[data-lumistry-capture] .lk-title,
[data-lumistry-capture] .lk-sub {
  display: none !important;
}
