/* profil-switch */
.profil-switch { display: flex; align-items: center; gap: var(--space-2); }
.profil-switch__taste {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  background: none;
  border: none;
  padding: var(--space-1);
  border-radius: var(--radius-md);
  min-height: var(--touch-min);
  cursor: pointer;
}
.profil-switch__taste:hover { background: var(--bg-tertiary); }
.profil-switch__name {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: var(--font-weight-medium);
}
.profil-switch__taste[aria-pressed="true"] .profil-switch__name {
  color: var(--profil-aktiv-strong);
  font-weight: var(--font-weight-bold);
}
@media (max-width: 540px) { .profil-switch__name { display: none; } }
