
/* ############################################################
	024 - NEWS PUSH-MITTEILUNGEN AUF STARTSEITE
############################################################ */

/* News-Liste */
.mdl024-modul-box,
.mdl024-item {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}
.mdl024-modul-box {
	width: calc(100% + 50px);
	margin-left: -25px;
}
	.mdl024-item {
		padding: 40px 25px;
	}
@media (min-width: 1020px) {
	.mdl024-modul-box {
		width: calc(100% + (135px + 30px));
		margin-left: -30px;
	}
		.mdl024-item {
			padding: 80px 135px 0 30px;
		}
}
@media (min-width: 1440px) {
	.mdl024-modul-box {
		width: calc(100% + (165px + 30px));
		margin-left: -30px;
	}
		.mdl024-item {
			padding-top: 250px;
			padding-right: 165px;
		}
}


/* Foto */
.mdl024-foto-box {
	position: relative;
	overflow: hidden;
	width: calc(100% + 25px);
	height: 0;
	margin-bottom: 30px;
	padding-bottom: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
@media (min-width: 1020px) {
	.mdl024-foto-box {
		width: 100%;
		margin-bottom: 0;
	}
}


/* Titel */
.mdl024-item h2 {
	margin: 0;
}
@media (min-width: 1020px) {
	.mdl024-item h2 {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 5;
		overflow: hidden;
		font-size: 2rem; /* 32px */
		line-height: 2.625rem; /* 42px */
	}
}
@media (min-width: 1440px) {
	.mdl024-item h2 {
		-webkit-line-clamp: 5;
		font-size: 2.8125rem; /* 45px */
		line-height: 3.75rem; /* 60px */
	}
}
@media (min-width: 1920px) {
	.mdl024-item h2 {
		-webkit-line-clamp: 6;
	}
}


/* Einleitung */
.mdl024-item .mdl024-einleitung {
	font-size: 0.875rem; /* 14px */
	line-height: 1.375rem; /* 22px */
}
@media (min-width: 1020px) {
	.mdl024-item .mdl024-einleitung {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		font-size: 1rem; /* 16px */
		line-height: 1.625rem; /* 26px */
	}
}


/* Button */
.mdl024-button {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 98px;
	height: 34px;
	margin-top: 30px;
	padding-left: 10px;
	padding-right: 13px;
	background-color: var(--main-color-1);
	font-size: 0.875rem; /* 14px */
	line-height: 1.375rem; /* 22px */
	color: var(--main-color-2);
}
@media (min-width: 1020px) {
	.mdl024-button {
		min-width: 158px;
		height: 55px;
		margin-top: 60px;
		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;
	}
	.mdl024-button:hover {
		background-color: var(--main-color-white);
		color: var(--main-color-2);
	}
}


/* Abstände */
.mdl024-item h2 + .mdl024-einleitung {
	margin-top: 15px;
}
@media (min-width: 1020px) {
	.mdl024-item h2 + .mdl024-einleitung {
		margin-top: 30px;
	}
}


