.column--vimeo {
	.video-embed {
		position: relative;
		width: 100%;
		aspect-ratio: 16 / 9;
		display: flex;
		justify-content: center;
		opacity: 0;
		animation: 500ms ease-in 300ms appear-in;
		animation-fill-mode: both;

		iframe {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			max-width: 100%;
		}

		&.video-embed--portrait {
			aspect-ratio: 9 / 16;
		}
	}

	@keyframes appear-in {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	};
}

