/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  border: 0.5px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.lang-switcher-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.lang-switcher-link:hover {
  color: var(--white);
}

.lang-switcher-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
