.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.product_list__item {
  position: relative;
  width: 24%;
  aspect-ratio: 1/1;
  margin-top: 1%;
  overflow: hidden;
}
.product_list__item--empty {
  visibility: hidden;
  margin-top: 0;
  height: 0;
  aspect-ratio: unset;
}
.product_list__item:hover .product_list__link {
  opacity: 1;
}
.product_list__item:hover .product_list__img {
  transform: scale(1.3);
}
.product_list__link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  font-size: 2.4rem;
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
  opacity: 0;
}
.product_list__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center center;
  transition-duration: 0.5s;
}

@media screen and (max-width: 900px) {
  .product_list__item {
    width: 32.5%;
  }
}
@media screen and (max-width: 600px) {
  .product_list__item {
    width: 48.5%;
    margin-top: 3%;
  }
}

/*# sourceMappingURL=sketch_list.css.map */
