Try using the CSS function minmax() .
What about the following solution:
.container { /* Your other code */ grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 2rem; }