.bestsellers__grid {
  --grid-manufacturer-row-height: 163px;
  --grid-product-row-height: 167px;

  display: grid;
  grid-template-columns: repeat(1, minmax(240px, 1fr));
  gap: 48px;
}

.bestsellers__item-wrapper {
  display: flex;
  align-items: center;
}

.bestsellers__item-wrapper .manufacturer-item {
  width: 100%;
}

.bestsellers__item-wrapper .product-list-section__container > * {
  height: var(--grid-product-row-height);
}

@media (min-width: 640px) {
  .bestsellers__grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (min-width: 1024px) {
  .bestsellers__grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }

  .bestsellers__item-wrapper {
    height: var(--grid-manufacturer-row-height);
  }
}
