.utr-hero-video {
	object-position: center center;
}

.utr-hero-media-controls {
	position: absolute;
	right: 24px;
	bottom: 22px;
	z-index: 3;
	display: flex;
	align-items: stretch;
	gap: 10px;
}

.utr-hero-video-toggle {
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, .45);
	background: rgba(16, 19, 24, .72);
	color: #fff;
	padding: 10px 14px;
	font: 800 10px/1 Manrope, sans-serif;
	letter-spacing: .1em;
	cursor: pointer;
	backdrop-filter: blur(8px);
}

.utr-video-audio-host {
	position: relative;
}

.utr-video-audio-toggle {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	box-sizing: border-box;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .58);
	border-radius: 50%;
	background: rgba(16, 19, 24, .76);
	color: #fff;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
	-webkit-backdrop-filter: blur(9px);
	backdrop-filter: blur(9px);
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.utr-hero-media-controls .utr-video-audio-toggle {
	position: static;
	flex: 0 0 48px;
}

.utr-video-audio-toggle:hover,
.utr-video-audio-toggle:focus-visible {
	border-color: #e23434;
	background: #e23434;
	transform: scale(1.05);
}

.utr-video-audio-toggle:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.utr-video-audio-toggle-icon {
	position: relative;
	display: block;
	width: 26px;
	height: 22px;
}

.utr-video-audio-toggle-icon::before {
	position: absolute;
	top: 2px;
	left: 1px;
	width: 15px;
	height: 18px;
	background: currentColor;
	clip-path: polygon(0 35%, 32% 35%, 80% 0, 80% 100%, 32% 65%, 0 65%);
	content: "";
}

.utr-video-audio-toggle-icon::after {
	position: absolute;
	top: 6px;
	left: 15px;
	width: 10px;
	height: 10px;
	background:
		linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
		linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
	content: "";
}

.utr-video-audio-toggle.is-audible .utr-video-audio-toggle-icon::after {
	top: 1px;
	left: 16px;
	width: 7px;
	height: 16px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-bottom-color: transparent;
	border-left: 0;
	border-radius: 0 50% 50% 0;
	background: transparent;
}

.utr-hero-video-toggle:hover,
.utr-hero-video-toggle:focus-visible {
	border-color: #e23434;
	background: #e23434;
}

.utr-hero-video-toggle:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.utr-hero-video {
		/* Keep the driver and branded vehicle in frame when the 16:9 scene is
		 * cropped into a narrow portrait viewport. */
		object-position: 62% center;
	}

	.utr-hero-media-controls {
		right: 14px;
		bottom: 16px;
	}

	.utr-video-audio-toggle {
		top: 12px;
		right: 12px;
		width: 44px;
		height: 44px;
	}

	.utr-hero-media-controls .utr-video-audio-toggle {
		flex-basis: 44px;
	}
}
