.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.product_list__item {
  width: 23%;
  margin-top: 2.5%;
}
.product_list__item--empty {
  visibility: hidden;
  margin-top: 0;
  height: 0;
}
.product_list__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(55, 84, 170, 0.25), inset -5px -5px 10px #f3f3f3, inset 2px 2px 5px transparent, inset -5px -5px 10px transparent;
  transition-duration: 0.5s;
}
.product_list__link:hover, .product_list__link:focus {
  box-shadow: 2px 2px 5px transparent, inset -5px -5px 10px transparent, inset 2px 2px 5px rgba(55, 84, 170, 0.25), inset -5px -5px 10px #f9f9f9;
}
.product_list__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
}
.product_list__img--mosaic {
  filter: blur(10px);
}
.product_list__name {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-top: 10px;
  text-align: center;
}

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

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