/* Hero Slider Section - Mobile First Approach */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides-container {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

.hero-slide picture {
  width: 100%;
  display: block;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}
