.autoplayer-pro {
	--controls-bg-hover-color: var(--red);
	--controls-text-hover-color: var(--white);
	--text-content-bg-color: var(--primary-color-100);
	--text-color: var(--gray-100);
	--border-color: var(--gray-100);
	position: relative;
	overflow: hidden;
    padding-bottom: 58%;
	display: flex;
}

@media (min-width: 64em) {
	.autoplayer-pro {
		width: 100%;
		height: auto;
		aspect-ratio: 1440 / 840;
	}
}

@media (min-width: 1440px ) {
	.autoplayer-pro { aspect-ratio: 1440 / 600; padding-bottom: 0; }
}
.autoplayer-pro .poster {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	filter: blur(20px);
}

.autoplayer-pro .fallback.loaded .poster { filter: none; }

.autoplayer-pro:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 24px;
	background: url(hero_video_edge.svg);
	pointer-events: none;
	z-index: 3;
}

.autoplayer-pro:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 190px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
	opacity: 0.7;
	pointer-events: none;
	z-index: 2;
}

@media (min-width: 64em) {
	.autoplayer-pro:after {
		height: 100%;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 35%, #000 100%);
	}
}

.autoplayer-pro .video {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 100%;
	min-width: 100%;
	min-height: 100%;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 300ms cubic-bezier(0,0,0.3,1);
}

.autoplayer-pro.video-loaded .video { opacity: 1; }

.autoplayer-pro .video-controls {
	display: none;
	gap: 12px;
	margin-bottom: var(--space-6);
}

.autoplayer-pro.video-loaded .video-controls { display: flex; }

.autoplayer-pro .video-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	color: var(--off-white);
	border: 1.13px dashed var(--light-blue, #B0DFDB);
	border-radius: var(--rounded-circle);
	box-shadow: none;
	width: 45px;
	height: 45px;
	font-size: var(--text-lg);
}

@media (hover: hover) {
	.autoplayer-pro .video-control { transition: background var(--transition-appendix); }
	.autoplayer-pro .video-control:hover {
		background-color: var(--controls-bg-hover-color);
		color: var(--controls-text-hover-color);
	}
}

@media (min-width: 64em) {
	.autoplayer-pro .video-controls { gap: 14px; }
	.autoplayer-pro .video-control {
		width: 50px;
		height: 50px;
		font-size: var(--text-xl);
	}
}

.autoplayer-pro .video-control:focus-visible {
	outline: var(--border-color) solid 1px;
	outline-offset: 2px;
}

.autoplayer-pro .video-control .fa-play { margin-left: var(--space-px); }

.autoplayer-pro .text-content {
	display: flex;
	justify-content: center;
	align-items: end;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 25px;
	z-index: 3;
	width: 100%;
	height: 275px;
}

.autoplayer-pro .text-content::before,
.autoplayer-pro .text-content::after {
	content: "";
	position: absolute;
	width: 230px;
	height: 234px;
	background-image: url(hero_video_asset.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 20px;
	pointer-events: none;
}
.autoplayer-pro .text-content::before {
	left: 0px;
	transform: rotateY(180deg);
}

.autoplayer-pro .text-content::after { right: 0px; }

@media (min-width: 64em) {
	.autoplayer-pro .text-content::before,
	.autoplayer-pro .text-content::after {
		width: 318px;
		height: 323px;
		background-image: url(hero_video_asset_desktop.svg);
	}
	.autoplayer-pro .text-content::before { left: 20px; }
	.autoplayer-pro .text-content::after { right: 20px; }
}

.autoplayer-pro .text-content .title {
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 700;
	margin-bottom: var(--space-2);
	line-height: var(--leading-tight);
	color: var(--text-color);
}

.autoplayer-pro .description {
	font-family: var(--font-display);
	font-size: var(--text-base);
	color: var(--text-color);
	margin-bottom: var(--space-2);
}

.autoplayer-pro .text-content .read-more {
	font-family: var(--font-display);
	color: var(--text-color);
	text-decoration: none;
	font-weight: 700;
}

.autoplayer-pro .text-content .read-more:hover,
.autoplayer-pro .text-content .read-more:focus-visible {
	text-decoration: underline;
	outline: none;
}

.autoplayer-pro .logo-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70%;
	z-index: 3;
}

.autoplayer-pro .logo-wrapper .logo { max-width: 242px; }