.MEDIA  {
	background-color: var(--cream);
	border-radius: 20px 91px 20px 91px;
	padding: 60rem ;
}
.MEDIA .container {
	max-width: 960rem;
	margin: 0 auto;
}
.MEDIA .container .b-img {
	width: 100%;
	margin: auto;
}

.MEDIA .video {
	position: relative;
}

.MEDIA .video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.MEDIA .oembed {
	position: relative;
}

.MEDIA .oembed iframe {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.MEDIA .oembed-image {
	all: unset;
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
}

.MEDIA .oembed-image::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80rem;
	height: 80rem;
	background: #333;
	transform: translate(-50%, -50%);
	transition: background 0.25s;
}

.MEDIA .oembed-image:hover::after {
	background: blue;
}

@media screen and (max-width: 960px) {
	.MEDIA  {
		margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
		border-radius: 0;
		}
	.MEDIA .container {
		max-width: var(--frame-width);
    margin: 0 auto;
    padding: 60rem 20rem;
		}
	.MEDIA .oembed-image::after {width: 40rem; height: 40rem;}
}



/* MEDIA-MODAL */

.MEDIA-MODAL {
	position: relative;
	margin: 0 auto;
}

.MEDIA-MODAL .content {
	box-sizing: border-box;
	background: #000;
	max-height: calc(100vh - 80rem);
	overflow: visible;
}

.MEDIA-MODAL .content iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
