.news-modul {
	padding: 4rem 1rem;
	box-sizing: border-box;
}

.news-modul__inner {
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}

.news-modul__content {
	background-color: #fff35f;
	color: #2d2c80;
	font-family: 'Montserrat', sans-serif;
	padding: 2rem;
	box-sizing: border-box;
	position: relative;
	padding-bottom: calc(2rem + 49px);
}

.news-modul__content::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;
}

.news-modul__headline {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

.news-modul__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.news-modul__item {
	display: flex;
	flex-direction: column;
}

.news-modul__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.news-modul__date {
	font-size: 0.9rem;
	margin: 0.5rem 0;
}

.news-modul__title {
	font-weight: 600;
	color: #2d2c80;
	font-size: 1rem;
	margin: 0 0 0.5rem 0;
}

.news-modul__excerpt {
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: auto;
}

.news-modul__more {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #2d2c80;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.news-modul__grid {
		grid-template-columns: 1fr;
	}
}
