.art-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 30px;
}

.art-slideshow::after {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

.art-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease-out;
}

.art-slide.active {
  position: absolute;
  transform: translateX(0);
}

.art-slide.exiting {
  position: absolute;
  transform: translateX(-100%);
}

.art-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.art-prev, .art-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e8063c;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.art-prev:hover, .art-next:hover {
  background-color: #0e476d;
}

.art-prev {
  left: 20px;
}

.art-next {
  right: 20px;
}


