.zero-remote-embed {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #000;
	border-radius: 4px;
	cursor: pointer;
}

.zero-remote-embed__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
}

.zero-remote-embed__play {
	position: relative;
	z-index: 2;
	display: block;
	width: 68px;
	height: 48px;
	transition: transform 0.15s ease;
}

.zero-remote-embed:hover .zero-remote-embed__play,
.zero-remote-embed:focus-visible .zero-remote-embed__play {
	transform: scale(1.1);
}

.zero-remote-embed__label {
	position: relative;
	z-index: 2;
	margin-top: 0.5em;
	padding: 0.15em 0.75em;
	font-size: 0.85rem;
	color: #fff;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 3px;
}

.zero-remote-embed__notice {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	margin: 0;
	padding: 0.6em 0.9em;
	font-size: 0.75rem;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.zero-remote-embed:focus-visible {
	outline: 2px solid #4d90fe;
	outline-offset: 2px;
}

@media (max-width: 480px) {
	.zero-remote-embed__notice {
		font-size: 0.7rem;
	}

	.zero-remote-embed__label {
		font-size: 0.75rem;
	}
}
