.gps-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 255, 0.86);
  border-bottom: 1px solid rgba(31, 102, 177, 0.08);
}

.gps-site-header__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.gps-site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f2c3f;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.gps-site-header__brand strong {
  color: #1f66b1;
}

.gps-site-header__brand-pin {
  width: 12px;
  height: 12px;
  border: 2px solid #1f66b1;
  border-radius: 999px;
  position: relative;
}

.gps-site-header__brand-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);
  width: 2px;
  height: 8px;
  background: #1f66b1;
  transform: translateX(-50%);
  border-radius: 999px;
}

.gps-site-header__nav {
  min-width: 0;
}

.gps-site-header__menu,
.gps-site-header__nav > div > ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.gps-site-header__menu li,
.gps-site-header__nav > div > ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gps-site-header__menu a,
.gps-site-header__nav > div > ul a {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 12px;
  color: #6f7d92;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.gps-site-header__menu a:hover,
.gps-site-header__menu .current-menu-item > a,
.gps-site-header__menu .current_page_item > a,
.gps-site-header__nav > div > ul a:hover,
.gps-site-header__nav > div > ul .current-menu-item > a,
.gps-site-header__nav > div > ul .current_page_item > a {
  background: #e8f0fb;
  color: #1f66b1;
}

body.admin-bar .gps-site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .gps-site-header {
    top: 46px;
  }
}

@media (max-width: 860px) {
  .gps-site-header__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .gps-site-header__menu,
  .gps-site-header__nav > div > ul {
    justify-content: flex-start;
  }
}
