
.s-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.s-slide-img {
  display: none;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.s-slide-img.active {
  display: block;
}

.s-slide-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content:space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.s-slide-btn {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  pointer-events: all;
  transition: background-color 0.3s ease;
}

.s-slide-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}
