.aktuelles{

}

.aktuelles-wrap{
	display: inline-grid; 
	grid-template-columns: 66.6666% 33.3333%;
	gap: 0;
	width: 100%;
	background: #fff;
	margin-bottom: 40px;
}

.aktuelles-wrap .aktuelles-info{
	padding: 32px;
}

.aktuelles-wrap .teaserbild{
	min-height: 150px;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
}

@media screen and (max-width: 1023px) {
	
	.aktuelles-wrap{
		display: grid;
		grid-template-columns: 100%;
		gap: 0;
	}
	
	.aktuelles-wrap .teaserbild{
		min-height: 240px;
		grid-row: 1;
	}
		
}

/* admin */

#editor .acf-block-preview .aktuelles{
	height: 100px;
	max-width: 100%;
	background: #f4f4f4;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	position: relative;
	margin: 0;
	padding: 0;
}

#editor .acf-block-preview .aktuelles:after{
	content: "Aktuelles";
	background: #fff;
	padding: 6px 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#editor .acf-block-preview .aktuelles > *{
	display: none;
}