.site-header {
  height: 92px;
  max-width: 1180px;
  padding: 0 28px;
  background: #fff;
  border-bottom: 1px solid #dbe4ef;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  min-width: 0;
  text-decoration: none;
  transform: none;
}

.header-logo {
  display: block;
  width: 190px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 850px) {
  .site-header {
    height: 76px;
    padding: 0 22px;
    gap: 16px;
  }

  .header-brand {
    flex: 0 1 auto;
    transform: none;
  }

  .header-logo {
    width: 160px;
    height: 56px;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
    min-width: 70px;
    min-height: 44px;
    margin-left: auto;
    padding: 9px 14px;
    border: 1px solid #0871d1;
    border-radius: 999px;
    background: #fff;
    color: #075dab;
    font: 700 0.875rem/1 Manrope, sans-serif;
    box-shadow: 0 5px 14px rgba(8, 113, 209, 0.12);
    cursor: pointer;
  }

  .menu-button:hover,
  .menu-button:focus-visible {
    border-color: #075dab;
    background: #f7fbff;
    color: #064f91;
  }

  .menu-button:focus-visible {
    outline: 3px solid rgba(8, 113, 209, 0.2);
    outline-offset: 2px;
  }

  .site-nav {
    top: 74px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 0 16px;
  }

  .header-logo {
    width: min(150px, 48vw);
  }
}
