.site-chrome-header {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: none;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 2.5rem;
  background: #ffffff;
}

.site-identity-bar {
  background: #ffffff;
  border-bottom: 0;
}

.site-identity-inner,
.site-primary-nav-inner {
  max-width: var(--site-content-width, 1280px);
  margin: 0 auto;
  padding-left: var(--site-content-padding, 0);
  padding-right: var(--site-content-padding, 0);
}

.site-identity-inner {
  height: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-identity-logo {
  display: block;
  width: auto;
  height: 2rem;
  flex-shrink: 0;
}

.site-identity-divider {
  color: #9ca3af;
  font-size: 1.25rem;
  line-height: 1;
  user-select: none;
}

.site-identity-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  color: #1f2937;
  white-space: nowrap;
}

.site-primary-nav {
  background: var(--site-accent-color, #0e4f5c);
}

.site-primary-nav-inner {
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-primary-nav-left,
.site-primary-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-primary-nav-right {
  gap: 1.25rem;
}

.site-primary-nav-item {
  font-family: var(--font-body);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.site-primary-nav-item:hover,
.site-primary-nav-item:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.site-primary-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s ease;
}

.site-primary-nav-icon:hover,
.site-primary-nav-icon:focus {
  color: #ffffff;
  opacity: 1;
}

.site-primary-nav-icon iconify-icon {
  font-size: 1.35rem;
}

@media (max-width: 1320px) {
  .site-identity-inner,
  .site-primary-nav-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 900px) {
  .site-identity-inner {
    height: auto;
    min-height: 4.5rem;
    padding-block: 1rem;
    flex-wrap: wrap;
  }

  .site-identity-title {
    white-space: normal;
  }

  .site-primary-nav-inner {
    height: auto;
    min-height: 4rem;
    padding-block: 1rem;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}