.bottomContentAds {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}
.bottomContentAd {
	padding: 14px;
	border: solid 1px #aaa;
	text-align: center;
	position: relative;
	visibility: hidden;
}
.bottomContentAd  > div {
	width: 320px;
	height: calc(100% - 14px);
	/*height: 250px;*/
	background: #eee;
}
.bottomContentAd:after {
	content: 'Anzeige';
	position: absolute;
	top: 14px;
	right: 14px;
	background-color: rgb(95,153,6);
	color: white;
	font-size: 10px;
	padding: 3px 10px 1px 10px;
}
.bottomContentAd:before {
	display: block;
	content: ' ';
	background: #eee;
	height: 13px;
	border-top: solid rgb(95,153,6) 4px;
}
