.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(90, 70, 45, 0.25);
  border-radius: 6px;
  color: inherit;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.language-switcher a.active {
  border-color: currentColor;
  font-weight: 700;
}

@media (max-width: 760px) {
  .language-switcher {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}
