/* 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 section: Lumistry capture embed drops into the same styled
   block the email form used (light-blue top line + white panel + 30px padding
   come from the block wrapper). Center and constrain the widget like the form. */
.blockWrap_d66f6a80367049f7b70e5a4e6d422571 .blockContent {
  display: block;
}
.blockWrap_d66f6a80367049f7b70e5a4e6d422571 .blockContent.layoutD .blockForm {
  float: none !important;
  width: 100% !important;
  max-width: none;
  text-align: center;
}
.lumistryCapture {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.lumistryCapture:empty {
  min-height: 44px;
}

/* Footer social icons: inline Facebook link styled to match footer links */
.footerSocialIcons {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footerSocialIcons li {
  display: inline-block;
}
.footerFacebookLink {
  display: inline-block;
  color: #c2d8f0;
  line-height: 0;
  transition: color 0.15s ease;
}
.footerFacebookLink:hover,
.footerFacebookLink:focus {
  color: #ffffff;
}
.footerFacebookLink svg {
  display: block;
}

/* Accessibility: skip-to-content link (visible only on keyboard focus) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: #003e7e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 6px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}
