/* custom overrides (loaded last) */
/* Header contact bar. The Spacecrafted platform injects this strip at runtime
   from the site's saved settings; a static export can't run that runtime, so we
   recreate it statically here to match the template design. */
.scTopBar {
  background: #fff;
  border-bottom: 1px solid rgba(194, 216, 240, 0.5);
  font-family: inherit;
}
.scTopBar .scTopBarInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 32px;
  padding: 9px 20px;
}
.scTopBar .scTopItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #27251f;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.3;
}
.scTopBar .scTopItem svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #003e7e;
}
.scTopBar a.scTopItem:hover {
  color: #003e7e;
}
@media (max-width: 767px) {
  .scTopBar .scTopBarInner {
    gap: 4px 16px;
    padding: 7px 12px;
  }
  .scTopBar .scTopItem {
    font-size: 0.8rem;
  }
}
@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;
  }
}
/* Mobile App page: recreate the MSI two-column app widget layout statically
   (phone mockup left, heading/description/store badges right). The platform
   normally builds this at runtime via configRemote.js; the static export
   reproduces the same two-column presentation here. Scoped to .mobileInfo. */
.magApp { max-width: 1060px; margin: 0 auto; padding: 0 4%; box-sizing: border-box; }
.magApp__media { text-align: center; margin-bottom: 1.5em; }
.magApp__phone { max-width: 300px; width: 100%; height: auto; display: inline-block; }
.magApp__body { text-align: center; }
.magApp__body p { margin: 0.75em 0; }
.magApp__badges { margin-top: 1em; line-height: 0; }
.magApp__badges a { display: inline-block; margin: 8px 12px 8px 0; }
.magApp__badge { max-width: 178px; width: 100%; height: auto; }
@media (min-width: 768px) {
  .magApp { display: flex; flex-direction: row; align-items: center; gap: 5%; }
  .magApp__media { flex: 0 0 40%; max-width: 40%; margin-bottom: 0; }
  .magApp__body { flex: 1 1 55%; text-align: left; }
}
