You wire up a card grid with the one-liner everyone reaches for:

.cards {

display: grid;

grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));

gap: 1rem;