.region-switcher {
  display: inline-flex;
  width: auto;
  max-width: none;
  height: auto;
  min-height: 0;
  align-items: center;
  align-self: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  gap: 2px;
  margin: 0;
  padding: 3px;
  border: 1px solid rgba(13, 24, 48, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.region-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #637084;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.region-switcher__link:hover {
  color: #0d1830;
}

.region-switcher__link[aria-current="page"] {
  color: #fff;
  background: #13284a;
}

.region-switcher--home .region-switcher__link[aria-current="page"] {
  color: #0d1830;
  background: #b9965b;
}

.global-header__inner {
  width: min(1240px, calc(100% - 56px));
  max-width: none;
  height: 88px;
  min-height: 88px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.global-header__logo {
  width: 224px;
  height: auto;
}

.site-header__actions,
.global-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.header-primary-cta {
  display: inline-flex;
  width: 205px;
  height: 46px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-header .nav {
    display: none;
  }
}

@media (max-width: 820px) {
  .global-header__inner {
    width: min(1240px, calc(100% - 36px));
    height: 76px;
    min-height: 76px;
  }

  .global-header__logo {
    width: 184px;
  }

  .global-header__actions {
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .region-switcher {
    gap: 0;
    padding: 2px;
  }

  .region-switcher__link {
    min-width: 30px;
    min-height: 28px;
    padding: 4px 7px;
    font-size: 11px;
  }

  .site-header__actions {
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .global-header__inner {
    width: min(1240px, calc(100% - 24px));
    height: 70px;
    min-height: 70px;
  }

  .global-header__logo {
    width: 154px;
  }
}

@media (max-width: 420px) {
  .global-header__logo {
    width: 118px;
  }

  .global-header__actions {
    gap: 6px;
  }

  .cta-nav .btn-primary,
  .site-header__actions > .btn-primary {
    display: none;
  }
}
