if `minWidth >= 1024px && maxWidth < 1579px` chunk the items by two ([1,2,3,4,5] becomes [[1,2], [3,4], [5])
if `minWidth >= 1580px` chunk the items by 3 ([1,2,3,4,5,6,7,8] becomes [[1,2,3], [4,5,6], [7,8])
else chunk by one, which means it stays the same
if `minWidth >= 1024px && maxWidth < 1579px` chunk the items by two ([1,2,3,4,5] becomes [[1,2], [3,4], [5])
if `minWidth >= 1580px` chunk the items by 3 ([1,2,3,4,5,6,7,8] becomes [[1,2,3], [4,5,6], [7,8])
else chunk by one, which means it stays the same