.video-scroll-widget {
	display: flex;
	flex-direction: row;
	gap: 3.2rem;
	padding: 0 4rem;
	width: 100%;
	overflow-x: auto;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
	user-select: none;
	cursor: grab;
	cursor: -webkit-grab;
}

.video-scroll-widget::-webkit-scrollbar {
	display: none;
}

.video-scroll-widget:active {
	cursor: grabbing;
	cursor: -webkit-grabbing;
	scroll-behavior: auto;
}

.video-scroll-widget .video-item,
.customizable-cards-wrapper .video-item{
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-scroll-widget .video-item iframe,
.video-scroll-widget .video-item video ,
.customizable-cards-wrapper .video-item iframe,
.customizable-cards-wrapper .video-item video {
	width: 445px;
	height: 445px;
	display: block;
	border: none;
	background: #E8E8E8;
}

.video-thumbnail-wrapper {
	position: relative;
	width: 100%;
	height: 25rem;
	cursor: pointer;
	background: #E8E8E8;
}

.video-thumbnail-wrapper img.video-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


@media (max-width: 990px) {
	.video-scroll-widget {
		gap: 1.3398rem;
		padding: 0 2rem;
	}
	.video-scroll-widget .video-item iframe,
	.video-scroll-widget .video-item video,
	.customizable-cards-wrapper .video-item iframe,
	.customizable-cards-wrapper .video-item video {
		width: 235px;
		height: 235px;
	}
	
	.video-thumbnail-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
	
/* 	.card-scrollable {
		position: relative;
		z-index: 9;
	} */
}


.video-thumbnail-wrapper {
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.video-thumbnail-wrapper .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	transition: transform 0.2s ease;
}

.video-thumbnail-wrapper .play-icon::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 20px solid white;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 5px;
}

/* 🔽 Mobile Styles */
@media (max-width: 990px) {
	.video-thumbnail-wrapper .play-icon {
		width: 44px;
		height: 44px;
	}

	.video-thumbnail-wrapper .play-icon::after {
		border-left: 14px solid white;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		margin-left: 3px;
	}
}

