.rz-sb {
	--rz-sb-left: 50%;
	--rz-sb-right: 50%;
	--rz-sb-height: 430px;
	--rz-sb-font: "AdihausDIN", "AdineuePRO", Arial, Helvetica, sans-serif;
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
	background: #111;
}

.rz-sb *,
.rz-sb *::before,
.rz-sb *::after {
	box-sizing: border-box;
}

.rz-sb__track {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	height: var(--rz-sb-height);
	overflow: hidden;
}

.rz-sb__panel {
	position: relative;
	display: block;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.rz-sb__panel--left {
	flex: 0 0 var(--rz-sb-left);
	width: var(--rz-sb-left);
}

.rz-sb__panel--right {
	flex: 0 0 var(--rz-sb-right);
	width: var(--rz-sb-right);
}

.rz-sb--single .rz-sb__panel--full,
.rz-sb__panel--full {
	flex: 1 1 auto;
	width: 100%;
	max-width: 100%;
}

.rz-sb--single .rz-sb__track {
	height: var(--rz-sb-height);
}

.rz-sb--single .rz-sb__panel--full {
	height: 100%;
}

.rz-sb__media {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
	background: #1a1a1a;
}

.elementor .rz-sb .rz-sb__image,
.rz-sb .rz-sb__image,
.elementor .rz-sb .rz-sb__video,
.rz-sb .rz-sb__video {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	object-fit: cover !important;
	object-position: center center !important;
}

.rz-sb__image--placeholder {
	background: linear-gradient(135deg, #2a2a2a, #444);
}

.rz-sb__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.48) 0%,
		rgba(0, 0, 0, 0.1) 45%,
		rgba(0, 0, 0, 0.16) 100%
	);
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.rz-sb__panel:hover .rz-sb__shade,
.rz-sb__panel:focus-visible .rz-sb__shade {
	opacity: 0.7;
}

.rz-sb__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 24px 16px;
	pointer-events: none;
	text-align: center;
}

.rz-sb__title {
	font-family: var(--rz-sb-font);
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.15;
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.rz-sb__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--rz-sb-font);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.rz-sb__cta-arrow {
	text-decoration: none;
	font-size: 1.05em;
}

.rz-sb-empty {
	padding: 16px;
	border: 1px dashed #c3c4c7;
	color: #50575e;
	background: #f6f7f7;
}

@media (max-width: 782px) {
	.rz-sb__track {
		flex-direction: column;
		height: auto;
	}

	.rz-sb__panel--left,
	.rz-sb__panel--right,
	.rz-sb__panel--full,
	.rz-sb--single .rz-sb__panel--full {
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		height: min(var(--rz-sb-height), 360px);
	}

	.rz-sb__panel--hide-mobile {
		display: none !important;
	}

	.rz-sb--single .rz-sb__track {
		height: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rz-sb__shade {
		transition: none;
	}
}
