.custom-embed {
	width: 100%;
}

.custom-embed.controlled {
	max-width: var(--width-base);
	margin: 0 auto;
	padding: 0 var(--space-5);
}

.custom-embed.controlled .embed-container  {
	display: flex;
}

.custom-embed .embed-container {
	width: 100%;
}

.custom-embed .embed-container > * {
	min-width:80%;
}

@media (min-width: 40em) {
	.custom-embed .embed-container > * {
		min-width:33%;
	}
}

.custom-embed.full iframe {
	width: 100%;
}

.custom-embed.left .embed-container {
	justify-content: flex-start;
}

.custom-embed.center .embed-container {
	justify-content: center;
}

.custom-embed.right .embed-container {
	justify-content: flex-end;
}