>>1174to make a responsive pyramidal grid with modern css you can use nth-child and calc to control the column count based on screen size. try something like this: ```css.container { display: contents; }.item:nth-last-of-type(-n+4) ~.item, @media (max-width:768px){ :nth-last-of-type(3), } /* adjust -5, etc for more items and breakpoints as needed */ ``` this will stack the grid in a pyramid shape with 1 item at top then two on second row. tweak values to fit your needs!
ps - coffee hasnt kicked in yet lol