
/* ############################################################
	200 - BILD-/TEXTNAVIGATION
############################################################ */

/* Modultitel */
.mdl200-modultitel {
	margin-bottom: 14px;
}
@media (min-width: 1020px) {
	.mdl200-modultitel {
		margin-bottom: 32px;
	}
}


/* Liste */
.mdl200-modul-box {
	position: relative;
	display: block;
	width: 100%;
}
@media (min-width: 1020px) {
	.mdl200-modul-box {
	}
}


/* Foto */
.mdl200-foto-box {
	position: relative;
	width: 100%;
	padding-bottom: 17px;
}
.mdl200-foto-box-inline {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.mdl200-foto-box-inline::before {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: calc((1 / 0.76) * 100%);
}
	.mdl200-foto-box .mdl200-image {
		position: absolute;
		display: inline-block;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		-ms-object-fit: cover;
		-moz-object-fit: cover;
		-webkit-object-fit: cover;
		object-fit: cover;
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
@media (min-width: 1020px) {
	.mdl200-foto-box {
		padding-bottom: 28px;
	}
	.mdl200-foto-box .mdl200-image {
		-o-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-webkit-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
	.mdl200-foto-box:hover .mdl200-image {
		transform: scale(1.1);
	}
}


/* Header */
.mdl200-header {
	margin-bottom: 14px;
	font-size: 0.875rem; /* 14px */
	line-height: 1.3125rem; /* 21px */
}
@media (min-width: 1020px) {
	.mdl200-header {
		margin-bottom: 46px;
		font-size: 1rem; /* 16px */
		line-height: 1.5rem; /* 24px */
	}
}


/* Titel */
h2.mdl200-titel {
	margin: 0;
}


/* Textdaten */
.mdl200-content-box {
	padding: 23px 0 0;
}
	/* Titel */
	.mdl200-content-box > h3 {
		font-family: "Practice";
		font-weight: 400;
		font-size: 1.4375rem; /* 23px */
		line-height: 1.6875rem; /* 27px */
	}

	/* Abstände */
	.mdl200-content-box h3 + p.mdl200-lead {
		margin-top: 23px;
	}
@media (min-width: 1020px) {
	.mdl200-content-box {
		padding: 40px 20px 0;
	}
		/* Titel */
		.mdl200-content-box > h3 {
			font-size: 2.1875rem; /* 35px */
			line-height: 2.625rem; /* 42px */
		}
}


/* Button */
.mdl200-button {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 98px;
	height: 34px;
	margin-top: 15px;
	padding-left: 13px;
	padding-right: 13px;
	background-color: var(--main-color-2);
	font-size: 0.875rem; /* 14px */
	line-height: 1.375rem; /* 22px */
	color: var(--main-color-white);
}
.mdl200-foto-box .mdl200-button {
	position: absolute;
	left: 15px;
	bottom: 0;
	margin: 0;
}
@media (min-width: 1020px) {
	/* Button */
	.mdl200-button {
		min-width: 158px;
		height: 55px;
		margin-top: 46px;
		padding-left: 24px;
		padding-right: 24px;
		font-size: 1.375rem; /* 22px */
		line-height: 2rem; /* 32px */
		-o-transition: color 0.3s ease, background 0.3s ease;
		-ms-transition: color 0.3s ease, background 0.3s ease;
		-moz-transition: color 0.3s ease, background 0.3s ease;
		-webkit-transition: color 0.3s ease, background 0.3s ease;
		transition: color 0.3s ease, background 0.3s ease;
	}
	.mdl200-foto-box:hover .mdl200-button,
	.mdl200-button:hover {
		background-color: var(--main-color-1);
		color: var(--main-color-2);
	}
	.mdl200-foto-box .mdl200-button {
		left: 40px;
	}
}


