/* 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;
  }
}
/* authentic NLR photo grid (JS-free; template gallery needs masonry init) */
.nlrPhotoGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.nlrPhotoGrid figure {
  margin: 0;
  width: calc(50% - 12px);
}
.nlrPhotoGrid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
@media (max-width: 600px) {
  .nlrPhotoGrid figure { width: 100%; }
  .nlrPhotoGrid img { height: 260px; }
}
/* app-store badges (JS-free; template gallery needs masonry init) */
.nlrAppBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 22px;
}
.nlrAppBadges img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .nlrAppBadges { justify-content: center; }
}
/* Lumistry capture embed: full-width section, 4% padding both sides, auto margins */
.lumistryCaptureSection {
  width: 100%;
}
.lumistryCapture {
  width: 100%;
  box-sizing: border-box;
  padding-left: 4%;
  padding-right: 4%;
  margin-left: auto;
  margin-right: auto;
}
