.languageSwitcher{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:3px;
  border:1px solid rgba(139,58,46,.16);
  border-radius:999px;
  background:rgba(255,255,255,.18);
}
.languageSwitcher button{
  appearance:none;
  border:0;
  border-radius:999px;
  background:transparent;
  color:inherit;
  cursor:pointer;
  font:inherit;
  font-size:11px;
  letter-spacing:.12em;
  line-height:1;
  opacity:.62;
  padding:7px 9px;
  transition:background .15s ease, opacity .15s ease;
}
.languageSwitcher button:hover,
.languageSwitcher button[aria-pressed="true"]{
  background:rgba(139,58,46,.08);
  opacity:1;
}
.languageSlot{
  display:flex;
  justify-content:flex-end;
}
@media (max-width:700px){
  .languageSlot{
    width:100%;
    justify-content:flex-start;
  }
  .languageSwitcher button{
    font-size:10px;
    padding:7px 8px;
  }
}
