.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 14px;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background-color: #fff;
}

.lang-switcher-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4f4f4f;
  font-family: var(--font-family, "Schibsted Grotesk", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  padding: 7px 10px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.lang-switcher-button.is-active {
  background-color: #2f2f31;
  color: #fff;
}

.lang-switcher-button:focus-visible {
  outline: 2px solid #2f2f31;
  outline-offset: 2px;
}

.lang-switcher.i18n-floating {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .lang-switcher {
    margin-left: auto;
    margin-right: 10px;
  }

  .lang-switcher-button {
    padding: 6px 9px;
    font-size: 11px;
  }
}

@media screen and (max-width: 479px) {
  .lang-switcher {
    margin-right: 8px;
  }

  .lang-switcher-button {
    padding: 5px 8px;
  }
}
