
/* ############################################################
	090 - FOTO-INFOSLIDER
############################################################ */

/* Modul-Box */
.mdl090-modul-box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: calc(100vw * 1.0);
	font-size: 0;
	line-height: 0;
}
@media screen and (min-width: 768px) {
	.mdl090-modul-box {
		height: calc(100vw * 0.5);
		max-height: 620px;
	}
}
@media screen and (min-width: 992px) {
	.mdl090-modul-box {
		height: calc(100vw * 0.322);
		max-height: 620px;
	}
}


/* Foto-Box */
.mdl090-modul-box .picture-wrapper {
	z-index: 1;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vw * 1.0);
	overflow: hidden;
}
.mdl090-modul-box .picture-wrapper::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, var(--main-color-white) 0%, var(--main-color-black) 100%);
	mix-blend-mode: multiply;
}
	.mdl090-modul-box .picture-wrapper img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
@media screen and (min-width: 768px) {
	.mdl090-modul-box .picture-wrapper {
		height: calc(100vw * 0.5);
	}
}
@media screen and (min-width: 992px) {
	.mdl090-modul-box .picture-wrapper {
		height: calc(100vw * 0.322);
		max-height: 620px;
	}
}


/* Text-Box */
.mdl090-modul-box .content-wrapper {
	z-index: 2;
	position: relative;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}
	.mdl090-modul-box .content-wrapper .text-wrapper {
		width: 100%;
		margin-bottom: 30px;
	}
@media screen and (min-width: 768px) {
	.mdl090-modul-box .content-wrapper {
		padding-left: 50px;
		padding-right: 50px;
	}
		.mdl090-modul-box .content-wrapper .text-wrapper {
			width: calc((6 * var(--col-width-1)) + (5 * var(--gap)));
			margin-bottom: 30px;
		}
}
@media screen and (min-width: 1600px) {
	.mdl090-modul-box .content-wrapper {
		padding-left: 100px;
		padding-right: 100px;
	}
		.mdl090-modul-box .content-wrapper .text-wrapper {
			width: calc((5 * var(--col-width-1)) + (4 * var(--gap)));
			margin-bottom: 60px;
		}
}


/* Titel & Inhalt */
.mdl090-modul-box .text-wrapper {
	font-size: 1rem; /* 16px */
	line-height: 1.5;
	letter-spacing: 0.32px;
	color: var(--main-color-white);
}
	.mdl090-modul-box .text-wrapper h2 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
		font-style: italic;
		font-size: 2.5rem; /* 40px */
		line-height: 1.15;
		letter-spacing: normal;
		color: inherit;
	}
	.mdl090-modul-box .text-wrapper p {
		margin-bottom: 0;
	}
	.mdl090-modul-box .text-wrapper h2 + p {
		margin-top: 16px;
	}
@media screen and (min-width: 1200px) {
	.mdl090-modul-box .text-wrapper {
		font-size: 1.25rem; /* 20px */
		letter-spacing: 0.4px;
	}
		.mdl090-modul-box .text-wrapper h2 {
			font-size: 3.75rem; /* 60px */
		}
		.mdl090-modul-box .text-wrapper h2 + p {
			margin-top: 20px;
		}
}
@media screen and (min-width: 1600px) {
	.mdl090-modul-box .text-wrapper h2 {
		font-size: 4.375rem; /* 70px */
	}
}

