/* ── Sprachumschalter ─────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.lang-switcher a,
.lang-switcher span {
  padding: .2rem .5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s, color .15s;
  color: rgba(255,255,255,.7);
}
.lang-switcher a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.lang-switcher .lang-active {
  background: var(--gold, #e8b84b);
  color: var(--blue-dark, #1a2e5a) !important;
  font-weight: 700;
}
.lang-sep {
  color: rgba(255,255,255,.35);
  font-weight: 300;
  font-size: .9em;
}
/* Mobile: im Hamburger-Menü verstecken, oben im Header zeigen */
@media (max-width: 768px) {
  .lang-switcher { font-size: .72rem; }
}
