I've got a successful scroll snapping with CSS working, but hoping and wondering if I can achieve the same effect of horizontal scroll snapping but with 2 rows of cards? (See section 2 of the CodePen)
display: flex;
flex-wrap: nowrap;
scroll-snap-type: mandatory; /* for older browsers */
scroll-snap-points-x: repeat(285px); /* for older browsers */
Can be done with grid like below