﻿
/* ############################################################
	016 - BILD/TEXT (KAMPAGNE)
############################################################ */

/* Layout */
.mdl016-modul-box {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: var(--main-color-3);
}
@media (min-width: 768px) {
	.mdl016-modul-box {
		flex-direction: row;
		height: calc(((12 * var(--col-width-1)) + (11 * var(--gap))) * 0.376);
		max-height: 652px;
	}
}
@media (min-width: 1024px) {
	.mdl016-modul-box {
	}
}


/* Foto-Box */
.mdl016-modul-box .picture-wrapper {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	transform-origin: center center;
	background: linear-gradient(to bottom, transparent 77.678%, var(--main-color-white) 77.678%);
}
	.mdl016-modul-box .picture-wrapper img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: top center;
	}
@media (min-width: 768px) {
	.mdl016-modul-box .picture-wrapper {
		position: absolute;
		right: 0;
		bottom: calc(-1 * (var(--mdl016-picture-width) * 0.22322));
		width: calc(50% - var(--gap-half));
		max-width: 840px;
		background: none;
	}
}


/* Text-Box */
.mdl016-modul-box .content-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	padding: 35px 30px 0;
}
@media (min-width: 768px) {
	.mdl016-modul-box .content-wrapper {
		width: calc(50% + var(--gap-half));
		padding-bottom: 35px;
	}
}
@media (min-width: 1024px) {
	.mdl016-modul-box .content-wrapper {
		padding: 55px 48px;
	}
}
@media (min-width: 1280px) {
	.mdl016-modul-box .content-wrapper {
		padding-left: calc(var(--col-width-1) + var(--gap));
		padding-right: calc(var(--col-width-1) + var(--gap));
	}
}

