.simple-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  height: 668px; /* adjust height */
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.simple-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.simple-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.simple-slide.active {
  opacity: 1;
}

.simple-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5rem 1rem;
}
