/* Eagle Investigation – Sprachumschalter unten rechts */
.lang-switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99998;
  font-family: Inter, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.lang-switcher-inner {
  display: flex;
  background: #103B3E;
  color: #F8F3EC;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(16, 59, 62, 0.35);
  overflow: hidden;
}

.lang-switcher a {
  display: block;
  padding: 10px 14px;
  color: #F8F3EC;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.lang-switcher a:hover {
  background: rgba(212, 180, 132, 0.25);
  color: #D4B484;
}

.lang-switcher a.active {
  background: #D4B484;
  color: #103B3E;
  pointer-events: none;
}

.lang-switcher a:not(:last-child) {
  border-right: 1px solid rgba(248, 243, 236, 0.2);
}

@media (max-width: 480px) {
  .lang-switcher {
    bottom: 16px;
    right: 16px;
    font-size: 13px;
  }
  .lang-switcher a {
    padding: 8px 12px;
  }
}
