.home-hero {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
}

.home-slides-wrap {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Let empty white space pass through */
}

.home-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.home-slide.active {
  opacity: 1;
}

.home-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  cursor: default; /* No cursor change whatsoever */
  pointer-events: auto; /* Only the image itself receives clicks and hovers */
}

@media screen and (max-width: 48rem) {
  .home-hero {
    margin: 0.5rem 0;
  }
  .home-slides-wrap {
    height: 55vh;
    max-height: 55vh;
  }
}
