/* Grey column: centered copy box + larger video — theme red #d20000, dark text */
.sbipl-media-slider-wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.sbipl-media-slider-column {
	background: #e5e7eb;
	border-radius: 12px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: stretch;
}

@media (min-width: 900px) {
	.sbipl-media-slider-column {
		flex-direction: row;
		align-items: stretch;
		padding: 28px 32px;
		gap: 28px;
	}
}

/* Own box: centered text, white panel on grey column */
.sbipl-media-slider-copy {
	flex: 0 0 auto;
	background: #ffffff;
	border-radius: 10px;
	padding: 28px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(210, 0, 0, 0.12);
}

@media (min-width: 900px) {
	.sbipl-media-slider-copy {
		flex: 0 0 36%;
		max-width: 400px;
		min-height: 200px;
		padding: 32px 28px;
	}
}

.sbipl-media-slider-eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d20000;
	margin-bottom: 10px;
	font-family: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.sbipl-media-slider-headline {
	margin: 0 0 12px;
	font-size: 1.4rem;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.25;
	font-family: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (min-width: 900px) {
	.sbipl-media-slider-headline {
		font-size: 1.55rem;
	}
}

.sbipl-media-slider-sub {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	color: #4b5563;
	line-height: 1.55;
	max-width: 22em;
	font-family: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Video column — slightly bigger than before */
.sbipl-media-slider-root-col {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sbipl-media-slider-root {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sbipl-media-slider-stage {
	position: relative;
	background: #111;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-width: 100%;
	border-radius: 8px;
}

@media (max-width: 899px) {
	.sbipl-media-slider-stage {
		max-width: 100%;
		margin: 0 auto;
	}
}

/* Larger on desktop: was 48vh/640px and 42vh/560px — bump up */
@media (min-width: 900px) {
	.sbipl-media-slider-stage {
		max-height: 58vh;
		width: min(100%, calc(58vh * 16 / 9));
		max-width: 760px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1200px) {
	.sbipl-media-slider-stage {
		max-height: 52vh;
		width: min(100%, calc(52vh * 16 / 9));
		max-width: 720px;
	}
}

.sbipl-media-slider-stage iframe,
.sbipl-media-slider-stage #sbipl-yt-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.sbipl-media-slider-facade {
	position: absolute;
	inset: 0;
	background: #000 center/cover no-repeat;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	transition: opacity 0.25s;
}

.sbipl-media-slider-facade.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.sbipl-media-slider-facade-play {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(210, 0, 0, 0.92);
	color: #fff;
	border: 3px solid rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	padding-left: 6px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.sbipl-media-slider-facade:hover .sbipl-media-slider-facade-play {
	background: #b30000;
	transform: scale(1.05);
}

.sbipl-media-slider-overlay-nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 8px;
	z-index: 2;
}

.sbipl-media-slider-overlay-nav button {
	pointer-events: auto;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s, background 0.2s;
}

.sbipl-media-slider-stage:hover .sbipl-media-slider-overlay-nav button,
.sbipl-media-slider-overlay-nav button:focus {
	opacity: 1;
}

.sbipl-media-slider-overlay-nav button:hover {
	background: rgba(210, 0, 0, 0.85);
}

@media (hover: none) {
	.sbipl-media-slider-overlay-nav button {
		opacity: 0.45;
	}
}
