Update brandmark and font selection grid styles

Use CSS grid minmax()
–––
.grid-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 15px;
}
–––
Good explanation how CSS grids work:
https://ishadeed.com/article/css-grid-minmax/