/* Rahmenbedingungen: Zielgruppen-Umschalter (Partner / Angestellte)
   Oben ein segmentierter Schalter; darunter wird genau eine Tour (Side-Nav) gezeigt.
   Native [vc_tta_tour]-Bloecke bleiben unveraendert – nur Sichtbarkeit wird getoggelt. */

.rb-switch {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
}

.rb-switch-btn {
	display: inline-block;
	padding: 0.7em 1.6em;
	border: 2px solid #003251;
	border-radius: 4px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	color: #003251;
	background: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.rb-switch-btn:hover {
	background: rgba(0, 50, 81, 0.08);
	color: #003251;
}

.rb-switch-btn.is-active,
.rb-switch-btn.is-active:hover {
	background: #003251;
	color: #fff;
}

/* Inaktive Zielgruppe ausblenden – JS schaltet um. Ohne JS bleibt Partner sichtbar
   und Angestellte wird per Default-Regel versteckt (graceful fallback). */
.rb-pane.rb-pane-angest {
	display: none;
}
