
/* ############################################################
	130 - LINKLISTE/LINKBOX
############################################################ */

/* News-Liste */
.mdl130-modul-box {
	position: relative;
	width: 100%;
}


/* Linktitel */
.mdl130-modul-box h3 {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 1.1875rem; /* 19px */
	line-height: 1.4;
	letter-spacing: 0.19px;
	color: var(--main-color-white);
}
.mdl130-list > .flex-container > .flex-item:hover {
	text-decoration: none;
}
@media (min-width: 1020px) {
	.mdl130-modul-box h3 {
		font-size: 1.875rem; /* 30px */
		letter-spacing: 0.3px;
	}
}


/* Pfeil */
.mdl130-arrow {
	position: absolute;
	display: inline-block;
	right: 30px;
	top: calc(50% - 11px);
	width: 21px;
	height: 19px;
	background-position: center right 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../../fctriesenberg/Images/Elemente/Icon_Arrow_Right_Negativ_15x27.svg");
	-o-transition: background 0.3s ease;
	-ms-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}
.mdl130-list > .flex-container > .flex-item:hover .mdl130-arrow, .mdl130-arrow:hover {
	background-position: center right;
}
@media (min-width: 1020px) {
	/* Button */
	.mdl130-arrow {
		right: 30px;
		top: calc(50% - 16px);
		width: 35px;
		height: 27px;
		background-position: center right 20px;
	}
}
@media (min-width: 1440px) {
	/* Button */
	.mdl130-arrow {
		right: 50px;
		width: 45px;
		background-position: center right 30px;
	}
}


/* ############################################################
	RASTER
############################################################ */

/* Liste */
.mdl130-list {
	position: relative;
	display: block;
	width: 100%;
}

/* Rastersystem */
.mdl130-list > .flex-container {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: left;
	width: 100%;
}
	.mdl130-list > .flex-container > .flex-item {
		position: relative;
		margin: 10px 10px 0 0;
		padding: 18px 61px 20px 40px;
		background-color: var(--main-color-1);
		color: var(--main-color-white);
		text-decoration: none;
	}
@media (max-width: 759.98px) {
	/* 1/1  - 1 columns per row */
	.mdl130-list > .flex-container > .flex-item {
		width: 100%;
		margin-right: 0;
	}
	/* remove top margin from first row */
	.mdl130-list > .flex-container > .flex-item:nth-child(-n+1) {
		margin-top: 0;
	}
}
@media (min-width: 760px) {
	/* 1/2  - 2 columns per row */
	.mdl130-list > .flex-container > .flex-item {
		width: calc(1/2*100% - (1 - 1/2)*10px);
	}
	/* align last row columns to the left */
	.mdl130-list > .flex-container > .flex-item:nth-child(2n),
	.mdl130-list > .flex-container > .flex-item:last-child {
		margin-right: 0;
	}
	/* remove top margin from first row */
	.mdl130-list > .flex-container > .flex-item:nth-child(-n+2) {
		margin-top: 0;
	}
	
	/* Inview (Aktivierung: .inview) */
	.mdl130-list > .flex-container > .flex-item.come-in.show-different:nth-child(odd) {
		animation-duration: 0.6s;
	}
}
@media (min-width: 1020px) {
	.mdl130-list > .flex-container > .flex-item {
		min-height: 113px;
		padding: 33px 85px 37px 50px;
	}
}
@media (min-width: 1440px) {
	.mdl130-list > .flex-container > .flex-item {
		padding-right: 115px;
		padding-left: 80px;
	}
}

