/* ==========================================
   Sticky Offset Glue
   - Navbar sits directly under (Topbar + Masthead)
   - JS sets --headerx-h and --headerx-h-compact
   ========================================== */

:root{
  --headerx-h: 140px;         /* fallback, JS overrides */
  --headerx-h-compact: 92px;  /* fallback, JS overrides */
}

/* Navbar wrapper sticks BELOW the header stack */
.portal-navbar-wrap{
  position: sticky;
  top: var(--headerx-h);
  z-index: 1030;
}

/* When header is compact, navbar moves up too */
body.headerx-compact .portal-navbar-wrap{
  top: var(--headerx-h-compact);
}

/* Remove any accidental gaps */
.portal-navbar-wrap .portal-navbar{
  margin-top: 0 !important;
}