.product-row {
  display: grid;
  gap: 32px 16px;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}
.product-row--closed {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.product-column {
  background-color: #f2f2f2;
  margin-bottom: 32px;
  margin-bottom: 0;
  max-width: 420px;
  min-width: 330px;
  /* width: 100%; */
  display: flex;
  flex-direction: column;
}
.product-column-closed {
  /* background-color: #f2f2f2; */
  max-width: 420px;
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  border-radius: 3px 3px;
  border: none;
}
.product-column-closed:hover {
  text-decoration: none;
}
.product-column-closed .product-category {
  transition: all 0.25s;
}
.product-column-closed:hover .product-category {
  color: #d1dae7;
}
.product-column-closed:hover .product-title {
  color: #fff;
  text-shadow: 0 0 15px rgb(0 0 0 / 80%);
}
.product-image {
  background-color: #f2f2f2;
  /* height: 180px; */
}
.product-image img {
  width: 100% !important;
}
.product-title {
  margin-top: 20px;
  margin-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-weight: 500;
}
.product-row .product-category {
    margin-bottom: 20px;
    padding-right: 15px;
    padding-left: 15px;
    font-weight: 400;
}
.product-column-closed .product-title {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 400;
  margin: 22px 30px;
  padding: 0;
  line-height: 2.8rem;
}
.product-column-closed .product-title a {
  color: var(--teaser-link-color);
}
.product-column-closed .product-category {
  margin-top: auto;
  color: #81a0cc;
  font-size: 1.6rem;
  margin-left: 30px;
  margin-bottom: 22px;
}
.product-facts {
  padding: 0 15px;
}
.product-facts--pair {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.4rem;
}
.product-facts-label {
  text-align: left;
}
.product-facts-value {
  text-align: right;
  font-weight: 500;
}
.product-button {
  margin: 14px 0 14px;
  padding: 6px 32px;
}
.product-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: 2rem;
}
.product-notes {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 40px;
}
