#pk_flex_content .locatie_overzicht .top_content_container {
	display: flex; justify-content: space-between; gap: 3rem;
}
#pk_flex_content .locatie_overzicht .top_content_wrapper {
	max-width: 750px;
}
#pk_flex_content .locatie_overzicht .button_wrapper {
	flex-shrink: 0;
}

#pk_flex_content .locatie_overzicht .locatie_grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem; margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
	#pk_flex_content .locatie_overzicht .top_content_container {
		flex-direction: column; gap: 1.5rem; margin-bottom: 2rem;
	}
	#pk_flex_content .locatie_overzicht .locatie_grid {
		grid-template-columns: 1fr; margin-top: 0;
	}
}