.msp-header {
  position: relative;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-soft);
}

.msp-is-front .msp-header {
  border-bottom: none;
}

.msp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 6.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.msp-header__branding {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.msp-header__branding .block {
  margin: 0;
}

.msp-header__branding .site-logo,
.msp-header__branding a {
  display: inline-flex;
  align-items: center;
}

.msp-header__branding img {
  display: block;
  width: auto;
  height: clamp(3.5rem, 3vw, 5.25rem);
  max-width: 100%;
}

.msp-header__navigation {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.msp-menu__link,
.msp-submenu__link {
  font-family: var(--font-body);
  font-weight: 500;
}

@media (max-width: 63.9375rem) {
  .msp-header__inner {
    min-height: 5.5rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    gap: 1rem;
  }

  .msp-header__branding img {
    height: 3.25rem;
  }
}
