.language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  margin-top: 4px;
}
.language-switcher__label {
  color: var(--muted);
  font-weight: 800;
}
.language-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  background: #fff;
}
.language-switcher a:hover,
.language-switcher a.active {
  color: var(--red);
  border-color: rgba(227, 6, 19, .24);
  background: rgba(227, 6, 19, .06);
}
@media (max-width: 720px) {
  .language-switcher { gap: 8px; }
  .language-switcher a { font-size: .92rem; padding: 6px 9px; }
}
