@shadeed9 Hey there, re: https://codepen.io/shadeed/pen/xxQMoxv/9214be2bff56fef4e4f9210f79075ac3, there is a way to get what I think you were after:
```
.post {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: max-content max-content 1fr; /* instead of 50px */
column-gap: 1rem;
}
```
Apologies if you considered and rejected the idea elsewhere in the post for other reasons; I admit I didn’t process all of it.