.static-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.public-page-header-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 28px;
}

.static-page-brand-link {
  display: block;
  min-width: 0;
  line-height: 0;
}

.static-page-brand-logo {
  display: block;
  width: min(377px, 64vw);
  max-width: 100%;
  height: auto;
}

.static-page-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.static-page-nav a {
  color: #181818;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.static-page-nav a:hover,
.static-page-nav a[aria-current="page"] {
  color: #2266aa;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .public-page-header-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 24px;
  }

  .static-page-header {
    display: grid;
    justify-content: start;
    gap: 18px;
    margin-bottom: 24px;
  }

  .static-page-nav {
    justify-content: flex-start;
  }
}
