
  .img-fade-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

/* immagini */
.img-fade-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* immagine hover */
.img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

/* desktop hover */
.img-fade-wrapper:hover .img-hover {
  opacity: 1;
}

/* mobile tap */
.img-fade-wrapper:focus-within .img-hover {
  opacity: 1;
}
.blend-wrapper {
  position: relative;
}

.blend {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blend-wrapper:hover .blend {
  opacity: 1;
}


