.language-switcher {
  position: fixed;
  top: .8rem;
  right: .8rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .25rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(20, 20, 20, .9);
  box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .18);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
}
.language-switcher button {
  min-width: 2.4rem;
  padding: .45rem .55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.language-switcher button:hover,
.language-switcher button:focus-visible { background: rgba(255, 255, 255, .18); outline: none; }
.language-switcher button.is-active { background: #d8ff43; color: #141414; }
@media (max-width: 720px) {
  .language-switcher { top: .55rem; right: .55rem; }
  .language-switcher button { min-width: 2.15rem; padding: .4rem .45rem; }
}
