.layout--eq-two-col {
	display: grid;
	grid-template-columns:1fr;
	gap:40px;
}

@media screen and (max-width: 767px) {
	.layout__region-bild {
		order:1;
	}
}

@media screen and (min-width: 768px) {
	.layout--eq-two-col {
		grid-template-columns:1fr 1fr;
	}
}