.video-project video {
	width: 100%;
	height: 100%;
	min-height: 0;
	display: block;
	object-fit: contain;
	object-position: center;
	background: #000;
}

.video-project--wide {
	grid-column: span 2;
}

.video-project--wide video {
	aspect-ratio: 2 / 1;
}

@media screen and (max-width: 1100px) {
	.video-project--wide {
		grid-column: auto;
	}

	.video-project--wide video {
		aspect-ratio: 1.48 / 1;
	}
}

.video-project--full {
	grid-column: 1 / -1;
}

.video-embed {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: 16 / 9;
	background: #000;
}

.video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media screen and (max-width: 640px) {
	.video-project,
	.video-project--wide {
		grid-column: auto;
	}
}
