.site-header {
  align-items: center;
  background: rgba(248, 252, 255, .96);
  border-bottom: 1px solid rgba(16, 38, 76, .14);
  display: flex;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - 1120px) / 2));
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .brand {
  align-items: center;
  color: #10264c;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
}

.site-header .brand img {
  background: #fff;
  border: 1px solid rgba(16, 38, 76, .14);
  border-radius: 12px;
  display: block;
  height: 44px;
  padding: 4px;
  width: 44px;
}

.site-header .brand span {
  display: grid;
  line-height: 1.15;
}

.site-header .brand strong {
  font-size: 14px;
  font-weight: 800;
}

.site-header .brand small {
  color: #5a6d90;
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 24px;
}

.site-header nav a,
.site-header nav a:first-child {
  color: #52688c;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: #10264c;
}

.site-header nav a[aria-current="page"] {
  font-weight: 800;
}

.site-header nav a.login-button,
.site-header nav a.login-button:first-child {
  border: 1px solid #10264c;
  border-radius: 10px;
  background: #10264c;
  color: #fff;
  font-weight: 700;
  padding: 8px 13px;
}

.site-header nav a.login-button:hover,
.site-header nav a.login-button[aria-current="page"] {
  background: #1b3b70;
  border-color: #1b3b70;
  color: #fff;
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 16px 9px;
  }

  .site-header .brand span {
    display: grid;
  }

  .site-header nav {
    gap: 18px;
    max-width: 100%;
    overflow-x: auto;
    padding: 1px 0 4px;
    scrollbar-width: thin;
    width: 100%;
  }

  .site-header nav a,
  .site-header nav a:first-child {
    display: inline-block;
    flex: 0 0 auto;
    font-size: 13px;
  }
}
