ol.pg-upsell {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: auto auto auto;
  gap: 15px 10px;
}

ol.pg-upsell > li {
  width: auto;
  text-align: center;
}

.upsell-span {
  min-height: 30px;
  font-size: 20px;
  display: block;
  font-weight: 600;
}

ol.pg-upsell > li div.product-item-info {
  text-align: -webkit-center;
  width: 100%;
  padding-bottom: 5px;
  clear: both;
  display: inline-block;
}

ol.pg-upsell > li:hover {
  border-radius: 40px;
  box-shadow: 0 12px 32px 0 rgb(71 74 89 / 28%);
  transition: all 0.3s ease;
}

ol.pg-upsell > li img.product-image-photo {
  border: none;
  filter: none !important;
}

.related-available > a {
  display: block;
  height: 100%;
}

.product-item-name > a:hover {
  text-decoration: none;
  color: #017ae3;
}

/* Upsell Responsive */
@media (min-width: 320px) and (max-width: 768px) {
  ol.pg-upsell {
    display: block;
  }
}