/* Layout and Overlay */
.vga-hero-header {
  position: relative;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100px;
  min-height: 100px;
  padding: 0;
  margin-left: calc(-50vw + 50%);
  left: 0;
  right: 0;
}

/* Ensure header height is maintained on all pages */
.vga-hero-header {
  height: 100px !important;
  min-height: 100px !important;
}
.vga-hero-header-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: var(--color-dark-blue);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1;
  pointer-events: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.vga-hero-header-container {
  position: relative;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* max-width: 1400px; */
  min-width: 0;
  margin: 0 auto;
  padding: 0 2vw;
}
