.utility-strip {
  height: 40px;
  background: var(--color-ink);
  color: var(--color-surface);
}
.user-profile-v1-utility-account {
  display: block;
  height: 100%;
}
.user-profile-v1-utility-account a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  font-size: 14px;
  font-weight: 600;
}
.user-profile-v1-utility-account b {
  font-size: 16px;
  font-weight: 400;
}
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgb(255 255 255 / 97%);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  height: 56px;
  margin: 0 auto;
  padding-top: 8px;
}
.mobile-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-right: auto;
}
.mobile-brand img {
  width: auto;
  height: 21px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}
.user-profile-v1-header-account {
  display: block;
  width: 44px;
  height: 44px;
}
.user-profile-v1-header-account .header-account-link__state {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--color-surface);
  border-radius: 50%;
  background: var(--color-ink);
}
.user-profile-v1-header-account .header-account-link:hover,
.user-profile-v1-header-account .header-account-link:focus-visible {
  background: var(--color-soft);
  border-radius: var(--radius-control);
}
.icon-button {
  display: inline-grid;
  position: relative;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.icon-button svg {
  width: 24px;
  height: 24px;
}
.mobile-menu-toggle svg {
  width: 25px;
  height: 25px;
}
.primary-nav {
  display: flex;
  justify-content: flex-start;
  height: 44px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.primary-nav::-webkit-scrollbar {
  display: none;
}
.primary-nav a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex: 0 0 20%;
  min-height: 44px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
}
.primary-nav a:nth-child(2)::after {
  position: absolute;
  top: 9px;
  right: calc(50% - 30px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-ink);
  content: "";
}
