.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.language-switcher.mobile {
  display: none;
  width: max-content;
  margin: 0;
}

.language-switcher__link {
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #111;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible {
  background: rgba(0, 0, 0, 0.08);
  outline: none;
}

.language-switcher__link.is-active {
  background: #111;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .right-navbar-content .language-switcher {
    display: none;
  }

  .language-switcher.mobile {
    display: inline-flex;
    margin-bottom: 0.35rem;
  }
}
