/* --- SET THE .scroll-grid CLASS SETTINGS (horizontal scrolling for some content loops) --- */
/* Zet deze op de "looper" van de content loop. */
@media (max-width: 1024px) { 
	.scroll-grid {
		grid-template-columns: none !important;
		grid-auto-flow: column;
		grid-auto-columns: 350px; /* you can use some calc version here */
		overflow-x: scroll;
		scroll-snap-type: x mandatory; /* proximity is also an option */
		
	}
	.scroll-grid > div, .scroll-grid > article{
		scroll-snap-align: start;
}
}
