.bsc-yse,
.bsc-yse * {
	box-sizing: border-box;
}

.bsc-yse {
	--bsc-card-width: 210px;
	--bsc-card-width-mobile: 200px;
	--bsc-gap: 14px;
	--bsc-track-padding: 20px;
	--bsc-hover-scale: 1.02;
	--bsc-side-arrow-offset: 8px;
	width: 100%;
	overflow: hidden;
	padding: 22px 0;
	color: #fff;
	background: #080808;
	font-family: Arial, Helvetica, sans-serif;
}

.bsc-yse__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0 0 14px;
	padding: 0 20px;
}

.bsc-yse__header--controls-only {
	justify-content: flex-end;
}

.bsc-yse__heading-wrap {
	min-width: 0;
}

.bsc-yse__eyebrow {
	margin: 0 0 4px;
	color: #a7a7a7;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.bsc-yse__title {
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: clamp(22px, 3vw, 38px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.04em;
}

.bsc-yse__stage {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
}

.bsc-yse__viewport {
	width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
}

.bsc-yse__viewport::-webkit-scrollbar {
	display: none;
}

.bsc-yse__viewport:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -2px;
}

.bsc-yse__track {
	display: flex;
	align-items: flex-start;
	gap: var(--bsc-gap);
	width: max-content;
	min-width: 100%;
	padding: 0 var(--bsc-track-padding) 10px;
}

.bsc-yse__card {
	flex: 0 0 var(--bsc-card-width);
	width: var(--bsc-card-width);
	min-width: 200px;
	margin: 0;
	scroll-snap-align: start;
}

.bsc-yse__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 14px;
	background: #151515;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
	transform: translateZ(0) scale(1);
	transform-origin: center center;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.bsc-yse__card:hover .bsc-yse__media {
	transform: translateZ(0) scale(var(--bsc-hover-scale));
}

.bsc-yse--ratio-9-16 .bsc-yse__media {
	aspect-ratio: 9 / 16;
}

.bsc-yse--ratio-4-5 .bsc-yse__media {
	aspect-ratio: 4 / 5;
}

.bsc-yse--ratio-3-4 .bsc-yse__media {
	aspect-ratio: 3 / 4;
}

.bsc-yse--ratio-1-1 .bsc-yse__media {
	aspect-ratio: 1 / 1;
}

.bsc-yse__iframe,
.bsc-yse__facade {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.bsc-yse__facade {
	padding: 0;
	overflow: hidden;
	color: inherit;
	background: transparent;
	cursor: pointer;
}

.bsc-yse__facade img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.02);
	transition: transform .35s ease, opacity .25s ease;
}

.bsc-yse__facade:hover img,
.bsc-yse__facade:focus-visible img {
	transform: scale(1.07);
}

.bsc-yse__scrim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .25);
	transition: opacity .25s ease;
}

.bsc-yse__facade:hover .bsc-yse__scrim,
.bsc-yse__facade:focus-visible .bsc-yse__scrim {
	opacity: .72;
}

.bsc-yse__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
	transform: translate(-50%, -50%);
	transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.bsc-yse__facade:hover .bsc-yse__play,
.bsc-yse__facade:focus-visible .bsc-yse__play {
	transform: translate(-50%, -50%) scale(1.08);
}

.bsc-yse__play span {
	--bsc-play-icon-size: 18px;
	display: block;
	width: 0;
	height: 0;
	margin-left: calc(var(--bsc-play-icon-size) * .18);
	border-top: calc(var(--bsc-play-icon-size) * .58) solid transparent;
	border-bottom: calc(var(--bsc-play-icon-size) * .58) solid transparent;
	border-left: var(--bsc-play-icon-size) solid #080808;
}

.bsc-yse__card.is-playing .bsc-yse__facade {
	display: none;
}

.bsc-yse__video-title {
	margin-top: 8px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.bsc-yse__arrows {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
}

.bsc-yse__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	color: #fff;
	background: transparent;
	font: inherit;
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.bsc-yse__arrow span {
	display: block;
	line-height: .8;
	transform: translateY(-1px);
}

.bsc-yse__arrow:hover,
.bsc-yse__arrow:focus-visible {
	color: #080808;
	border-color: #fff;
	background: #fff;
	transform: scale(1.05);
}

.bsc-yse__arrow:disabled {
	opacity: .28;
	cursor: default;
	transform: none;
}

.bsc-yse__arrow--side {
	position: absolute;
	top: 50%;
	z-index: 4;
	transform: translateY(-50%);
}

.bsc-yse__arrow--side:hover,
.bsc-yse__arrow--side:focus-visible {
	transform: translateY(-50%) scale(1.05);
}

.bsc-yse__arrow--side.bsc-yse__prev {
	left: var(--bsc-side-arrow-offset);
}

.bsc-yse__arrow--side.bsc-yse__next {
	right: var(--bsc-side-arrow-offset);
}

.bsc-yse__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 12px var(--bsc-track-padding) 0;
}

.bsc-yse__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .35);
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.bsc-yse__dot:hover,
.bsc-yse__dot:focus-visible {
	transform: scale(1.25);
}

.bsc-yse__dot.is-active {
	background: #fff;
	transform: scale(1.25);
}

.bsc-yse-empty {
	padding: 16px;
	border: 1px dashed #b9b9b9;
	color: #333;
	background: #fff;
}

@media (max-width: 767px) {
	.bsc-yse__card {
		flex-basis: var(--bsc-card-width-mobile, var(--bsc-card-width));
		width: var(--bsc-card-width-mobile, var(--bsc-card-width));
	}

	.bsc-yse--hide-mobile-arrows .bsc-yse__arrows,
	.bsc-yse--hide-mobile-arrows .bsc-yse__arrow--side {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bsc-yse__viewport {
		scroll-behavior: auto;
	}

	.bsc-yse__media,
	.bsc-yse__facade img,
	.bsc-yse__play,
	.bsc-yse__arrow,
	.bsc-yse__dot {
		transition: none;
	}

	.bsc-yse__card:hover .bsc-yse__media,
	.bsc-yse__facade:hover img,
	.bsc-yse__facade:focus-visible img {
		transform: none;
	}
}
