.modul--textblock {
	font-family: 'Montserrat', sans-serif;
	padding: 4rem 1rem;
	box-sizing: border-box;
}

.textblock__inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 2rem;
	padding-bottom: calc(2rem + 49px);
	box-sizing: border-box;
	position: relative;
}

.textblock__headline {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.textblock__content {
	font-size: 1rem;
	line-height: 1.6;
}

/* Farbspezifisch */

.textblock--rosa .textblock__inner {
	background-color: #f9c1cd;
	color: #2d2c80;
}

.textblock--rosa .textblock__inner::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 49px;
	/*background-image: url('../img/fliese-rosa.png');*/
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: bottom center;
	pointer-events: none;
}

.textblock--dunkelblau .textblock__inner {
	background-color: #2d2c80;
	color: #fff;
}

.textblock--dunkelblau .textblock__inner::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 49px;
	/*background-image: url('../img/fliese_dunkelblau.png');*/
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: bottom center;
	pointer-events: none;
}

.textblock--gelb .textblock__inner {
	background-color: #fff35f;
	color: #2d2c80;
}

.textblock--gelb .textblock__inner::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 49px;
	/*background-image: url('../img/fliese_gelb.png');*/
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: bottom center;
	pointer-events: none;
}

.textblock--tuerkis .textblock__inner {
	background-color: #00b4cd;
	color: #fff;
}

.textblock--tuerkis .textblock__inner::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 49px;
	/*background-image: url('../img/fliesen-blau-vierfach.png');*/
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: bottom center;
	pointer-events: none;
}

.textblock--gruen .textblock__inner {
	background-color: #cae2bd;
	color: #2d2c80;
}

.textblock--gruen .textblock__inner::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 49px;
	/*background-image: url('../img/fliesen-gruen-vierfach.png');*/
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: bottom center;
	pointer-events: none;
}






/* Responsiv */
@media (max-width: 768px) {
	.textblock__inner {
		padding: 2rem 1rem;
	}
}
