.ProductItem {
  --padding: var(--spaceSm);
  position: relative;
  display: flex;
  flex-flow: column;
  color: var(--colorWhite);
}

.ProductItem:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0.7;
  background: linear-gradient(360deg, #0B4EA2 50%, rgba(11, 78, 162, 0) 100%);
  pointer-events: none;
}

@media (max-width: 32rem) {
  .ProductItem {
    font-size: var(--textSm);
  }
}

.ProductItem:hover .ProductItem-image img, .ProductItem:active .ProductItem-image img, .ProductItem:focus .ProductItem-image img {
  transform: scale(1.05);
}

.ProductItem-content {
  position: absolute;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  bottom: 0;
  padding: 1rem 1.5rem;
  z-index: 2;
}

@media (min-width: 80.01rem) {
  .ProductItem-content {
    padding: 2rem 2.5rem;
  }
}

.ProductItem-image {
  overflow: hidden;
}

.ProductItem-image img {
  transition: var(--animationBase);
}

.ProductItem-title {
  color: var(--colorWhite);
  margin: 0;
}

.ProductItem-title small {
  display: block;
  font-size: .55em;
}

.ProductItem-title a {
  color: inherit;
  text-decoration: none;
}

.ProductItem-title a:hover, .ProductItem-title a:active, .ProductItem-title a:focus {
  text-decoration: underline;
}

.ProductItem-title a:hover small, .ProductItem-title a:active small, .ProductItem-title a:focus small {
  text-decoration: none;
}

/*# sourceMappingURL=product-item.min.css.map */
