.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(236, 230, 216, .2);
  border-radius: 999px;
  background: rgba(236, 230, 216, .06);
}

.language-switcher button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  opacity: .62;
  transition: opacity .2s ease, background .2s ease, transform .2s ease;
}

.language-switcher button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.language-switcher button.is-active {
  opacity: 1;
  background: rgba(236, 230, 216, .16);
}

@media (max-width: 640px) {
  .language-switcher {
    gap: 2px;
    padding: 2px;
  }

  .language-switcher button {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
