/* --- Main Slider Container --- */
.iws-slider-container {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  padding: 20px 0;
  overflow: hidden;
}

/* --- Swiper Wrapper --- */
.swiper-wrapper {
  display: flex;
  transition-timing-function: ease-in-out;
}

/* --- Each Slide --- */
.swiper-slide {
  flex-shrink: 0;
  width: auto;
  box-sizing: border-box;
}

/* --- Slide Content --- */
.iws-slide-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

/* --- Hover Overlay --- */
.iws-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.iws-slide-image:hover .iws-hover-overlay {
  opacity: 1;
}

/* --- Overlay Text Content --- */
.iws-hover-content {
  color: #fff;
  padding: 15px;
}

.iws-hover-content h3 {
  font-size: 1.2vw;
  margin-bottom: 10px;
  text-align: start;
}

.iws-hover-content p {
  font-size: 0.95vw;
  margin-bottom: 5px;
  text-align: start;
}

.iws-hover-content span {
  font-size: 0.8vw;
  opacity: 0.8;
  text-align: start;
}
.iws-slide-link {
  color: inherit;
  text-decoration: none;
}

.iws-slide-link:hover {
  text-decoration: underline;
  color: inherit;
}


/* --- Responsive --- */
@media (max-width: 768px) {
  .iws-hover-content h3 {
    font-size: 2.9vw;
    margin-bottom: 5px;
  }

  .iws-hover-content p {
    font-size: 2vw;
    margin-bottom: 0px;
  }

  .iws-hover-content span {
    font-size: 1.8vw;
    margin-top; -10px
  }
}
