.dl-sp {
	direction: rtl;
	padding: var(--dl-sp-pad, 28px) 16px;
	max-width: 100%;
	overflow: hidden;
	contain: layout;
}
.dl-sp__inner {
	max-width: var(--dl-sp-max, 1200px);
	margin: 0 auto;
}
.dl-sp__heading {
	margin: 0 0 18px;
	font-size: clamp(1.15rem, 2.4vw, 1.65rem);
	font-weight: 800;
	color: #16162a;
	text-align: right;
}
.dl-sp__slider {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}
.dl-sp__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	cursor: grab;
}
.dl-sp__viewport.is-dragging {
	cursor: grabbing;
}
.dl-sp__track {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: var(--dl-sp-gap, 18px);
	will-change: transform;
}
.dl-sp-card-item {
	flex: 0 0 var(--dl-sp-cover-w, 320px);
	width: var(--dl-sp-cover-w, 320px);
	max-width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.dl-sp-card {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	overflow: visible;
	cursor: pointer;
	text-align: right;
	color: inherit;
}
.dl-sp-card:hover .dl-sp-card__media,
.dl-sp-card:focus-visible .dl-sp-card__media {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(22, 22, 42, .18);
	outline: none;
}
.dl-sp-card__media {
	margin: 0;
	position: relative;
	width: var(--dl-sp-cover-w, 320px);
	height: var(--dl-sp-cover-h, 180px);
	max-width: 100%;
	aspect-ratio: var(--dl-sp-cover-w, 320) / var(--dl-sp-cover-h, 180);
	background: #1b1c33;
	overflow: hidden;
	border-radius: var(--dl-sp-radius, 18px);
	box-shadow: 0 10px 28px rgba(22, 22, 42, .12);
	transition: transform .18s ease, box-shadow .18s ease;
}
.dl-sp-card__media img,
.dl-sp-card__fallback {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	display: block;
}
.dl-sp-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	line-height: 0;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.78);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	color: #fff;
	pointer-events: none;
	box-sizing: border-box;
}
.dl-sp-card__play svg {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0;
	flex: 0 0 auto;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
}
.dl-sp-card__title {
	display: block;
	margin: 8px 2px 0;
	font-size: var(--dl-sp-title-size, 16px);
	line-height: 1.45;
	font-weight: 700;
	color: var(--dl-sp-title-color, #1c1c2e);
}
.dl-sp-card__link {
	align-self: flex-start;
	color: var(--dl-sp-link-color, #5b4bdb);
	font-size: 13.5px;
	font-weight: 700;
	text-decoration: none;
}
.dl-sp-card__link:hover {
	text-decoration: underline;
}
.dl-sp__arrow {
	position: static;
	flex: 0 0 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 6px 16px rgba(20, 20, 40, .16);
	cursor: pointer;
	color: #1c1c2e;
	z-index: 2;
	line-height: 0;
	appearance: none;
	-webkit-appearance: none;
	overflow: visible;
	box-sizing: border-box;
}
.dl-sp__arrow svg {
	display: block;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	fill: #1c1c2e;
	color: #1c1c2e;
	overflow: visible;
}
.dl-sp__arrow svg path {
	fill: #1c1c2e;
}
.dl-sp__arrow:hover {
	background: #f4f4fb;
}

.dl-sp-overlay[hidden] { display: none !important; }
.dl-sp-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dl-sp-overlay__glass {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(8, 8, 18, calc(var(--dl-sp-overlay-opacity, 58) / 100));
	backdrop-filter: blur(var(--dl-sp-blur, 22px));
	-webkit-backdrop-filter: blur(var(--dl-sp-blur, 22px));
}
.dl-sp-overlay__stage {
	position: relative;
	z-index: 2;
	direction: ltr;
	width: min(920px, 94vw);
	height: min(86vh, 560px);
	overflow: hidden;
	border-radius: 18px;
	background: #000;
}
.dl-sp-overlay__rail {
	display: flex;
	flex-direction: row;
	direction: ltr;
	width: 100%;
	height: 100%;
	will-change: transform;
}
.dl-sp-panel {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	direction: rtl;
}
.dl-sp-panel__frame {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000;
	overflow: hidden;
	border-radius: 18px;
}
.dl-sp-overlay video.dl-sp-panel__video {
	position: absolute !important;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
	object-fit: contain;
	background: #000;
	display: block !important;
	opacity: 1;
	visibility: visible;
}
.dl-sp-panel__watermark {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
}
.dl-sp-panel__watermark img {
	position: absolute;
	top: 0;
	left: 0;
	will-change: transform;
}
.dl-sp-panel__top {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	direction: rtl;
}
.dl-sp-panel__progress {
	flex: 1;
	height: 3px;
	border-radius: 99px;
	background: rgba(255,255,255,.28);
	overflow: hidden;
}
.dl-sp-panel__progress span {
	display: block;
	height: 100%;
	width: 0;
	background: #fff;
}
.dl-sp-panel__timer {
	color: #fff;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}
.dl-sp-panel__bottom {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 4;
	padding: 14px 16px 16px;
	background: linear-gradient(transparent, rgba(0,0,0,.72));
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	direction: rtl;
}
.dl-sp-panel__name { font-size: 15px; }
.dl-sp-panel__bottom a {
	color: #fff;
	font-weight: 700;
}
.dl-sp-overlay__close {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 6;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(0,0,0,.45);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
body.dl-sp-lock { overflow: hidden; }
.dl-sp-overlay video::-webkit-media-controls-start-playback-button,
.dl-sp-overlay video::-webkit-media-controls-overlay-play-button {
	display: none !important;
}

@media (max-width: 1199px) {
	.dl-sp { --dl-sp-gap: var(--dl-sp-gap-t, 14px); }
}
@media (max-width: 767px) {
	.dl-sp { padding-inline: 8px; --dl-sp-gap: var(--dl-sp-gap-m, 12px); }
	.dl-sp__slider { gap: 6px; }
	.dl-sp__arrow {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}
	.dl-sp-card-item {
		flex-basis: min(var(--dl-sp-cover-w, 320px), calc(100vw - 88px));
		width: min(var(--dl-sp-cover-w, 320px), calc(100vw - 88px));
	}
	.dl-sp-card__media {
		width: 100%;
		height: auto;
	}
	.dl-sp-card__play { width: 48px; height: 48px; }
	.dl-sp-card__play svg { width: 18px; height: 18px; }
	.dl-sp-overlay__stage {
		width: 100vw;
		height: 100vh;
		border-radius: 0;
	}
	.dl-sp-panel__frame { border-radius: 0; }
}
