.series-gallery {
  margin: 120px 0;
}

.series-gallery__title {
  font-family: Inter, sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #595959;
  margin-bottom: 16px;
}

/* MAIN */
.series-gallery__viewport {
  overflow: hidden;
}

.series-gallery__container {
  display: flex;
}

.series-gallery__slide {
  flex: 0 0 100%;

}

.series-gallery__slide img {
 width: 90%;
 
  height: auto;
  display: block;
 
}

/* NAV */
.series-gallery__nav {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 16px;
  border: 1px solid #aaa;
  background: transparent;
  cursor: pointer;
}

.series-gallery__nav--prev { left: 16px; transform: rotate(135deg); }
.series-gallery__nav--next { right: 16px; transform: rotate(-45deg); }

/* THUMBS */
.series-gallery__thumbs {
  margin-top: 24px;
}

.series-gallery__thumbs-viewport {
  overflow: hidden;
}

.series-gallery__thumbs-container {
  display: flex;
  gap: 16px;
}

.series-gallery__thumb {
  flex: 0 0 auto;
  width: 206px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: .5;
}

.series-gallery__thumb.is-active {
  opacity: 1;
}

.series-gallery__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.series-gallery .carousel__btn--prev, .carousel__btn--next {
        position: absolute;
         opacity: 1;
        pointer-events: auto;
    }
section.series-gallery {

        position: relative;
}
.series-gallery__wrapper {
    display: flex;
        position: relative;
}
.series-gallery__main {
   
}
.series-gallery .carousel__btn--prev{
    left: 0;
}
.series-gallery .carousel__btn--next{
    right: 0;
}
/* mobile */
@media (max-width: 991px) {
    .series-gallery__slide img {


    width: 100%;
}
    .series-gallery__wrapper{
        flex-direction: column;
}
  .series-gallery__thumb {
    width: 140px;
  }
}
