@media (min-width: 600px) {
  .hover-image__wrapper {
    width: 400px;
    position: relative;
  }
}
.hover-image__link {
  display: block;
}
@media (max-width: 768px) {
  .hover-image__link {
    opacity: 1;
    transform: translateX(-1.5rem);
  }
}
.hover-image__img1 {
  max-width: 100%;
  opacity: 0;
  z-index: 2;
  position: relative;
  transition: all 0.5s;
}
.hover-image__wrapper:hover .hover-image__img1 {
  opacity: 1;
}
@media (max-width: 768px) {
  .hover-image__img1 {
    opacity: 1;
  }
}
.hover-image__img2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 113px;
  transition: all 0.5s;
}
.hover-image__wrapper:hover .hover-image__img2 {
  opacity: 0;
}
@media (max-width: 768px) {
  .hover-image__img2 {
    opacity: 0;
  }
}