How can I replicate the followig using CSS Grid?
So far I have the following:
.parent{
display: grid;
gap: 1.5em;
grid-template-columns: repeat(3, 1fr);
}
But this leaves the first column with 3 items (not desired)...
Also, how could one align-items: center; the first and last column to give that diamond effect?

