.slideshow-hero-wrapper {
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.slideshow-hero {
  width: 100%;
  height: 100%;
  position: relative;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease-in-out, transform 5s ease-in-out;
  z-index: 1;
}

.slideshow-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slideshow-slide picture,
.slideshow-slide picture > img,
.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-alt {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, calc(1.2rem + 4vw), 5rem);
  font-weight: bold;
  text-shadow: 2px 2px 18px #000;
  z-index: 10;
  pointer-events: none;
  line-height: 1;
}

.slideshow-slide.active .slide-alt {
  opacity: 1;
}



/* Media Queries */
@media screen and (min-width: 576px) {
  .slideshow-hero-wrapper { height: 70vh; }
  .slide-alt { top: 75%; }
  
  /* Bullets */
  .slideshow-bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    background-color: rgba(0,0,0,0.3);
    padding: 0.5rem;
  }
  
  .slideshow-bullets .bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .slideshow-bullets .bullet.active {
    background: rgba(255,255,255,1);
  }
}

@media screen and (min-width: 992px) {
  .slideshow-hero-wrapper { height: 80vh; }
  .slide-alt { font-size: clamp(2rem, calc(1.5rem + 3vw), 6rem); }
}