.avia_textblock.bottomlined {
  display: grid;
  margin: 0;
  gap: 10px 5px;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fit,minmax(80px,1fr));
}

.avia_textblock.bottomlined  div  img {
  background-color: #eee !important;
}

FLAGSHIP

LUNAR KITTEN

WEST COAST IPA

 5.7% ABV

Light body with fruity, piney hop expression and bitter finish.

AVAILABILITY

19oz Can

16oz Can

Half Barrel

Sixtel Keg

you could set the media queries like this

.avia_textblock.bottomlined {
  display: grid;
  margin: 0;
  gap: 20px 5px;
  grid-auto-flow: row;
  grid-template-columns: repeat(4,minmax(80px,1fr));
}


.avia_textblock.bottomlined  div  img {
  background-color: #eee !important;
}


@media only screen and (min-width: 990px) and (max-width: 1140px) {
  .avia_textblock.bottomlined {
    grid-template-columns: repeat(2,minmax(80px,1fr));
  }
}

@media only screen and (min-width: 550px) and (max-width: 989px) {
  .avia_textblock.bottomlined {
    grid-template-columns: repeat(4,minmax(80px,1fr));
  }
}

@media only screen and (max-width: 549px) {
  .avia_textblock.bottomlined {
    grid-template-columns: repeat(2,minmax(80px,1fr));
  }
}