.td-video {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
}

.td-video__frame {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #111;
	overflow: hidden;
}

.td-video__media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
}

body.td-shell-view-video .td-video .td-video__media {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	object-fit: contain !important;
}

@media (min-width: 700px) {
	.td-video {
		max-width: min(100%, calc((100svh - 180px) * 16 / 9));
	}
}

.td-video__message {
	margin-top: 8px;
	color: var(--td-muted, #666);
	font-size: 14px;
}

.td-video--unsupported .td-video__message,
.td-video-error {
	color: #8a1f11;
}
