/**
 * Product Grid
 */

.product__grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}

.grid__item {
  flex-grow: 1;
  flex-shrink: 0;
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .product--large:not(.product--no-media) .product__media-wrapper,
  .product--large:not(.product--no-media) .product__info-wrapper {
    max-width: unset;
  }
  
  .product__grid {
    flex-direction: column;
  }
}