video-picture-slideshow {
  --slide-width: 41vw;

  display: block;
  padding-top: 104px;
  padding-bottom: 104px;
}

video-picture-slideshow:not([data-init="true"]) .vps__slide:first-child {
  margin-right: 20px;
}

.vps__wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.vps__title {
  font-size: 48px;
  line-height: 1;
  color: #040921;
  text-align: left;
  font-weight: bold;
  margin-bottom: 80px;
  margin-top: 0;
}

.vps__track {
  overflow: unset !important;
}

.vps__list {
  list-style: none;
  display: flex;
}

.vps__slide {
  width: var(--slide-width);
  aspect-ratio: 1366 / 768;
}

.vps__slide__image {
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
}

.vps__tools {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 24px;
  width: var(--slide-width);
}

.vps__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vps__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  outline: none;
  transition: all .2s;
  background-color: transparent;
  color: #181E28;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}

.vps__arrow > svg {
  transform: scale(1.8);
}

.vps__arrow:hover {
  transform: scale(1.1);
}

.vps__pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vps__pagination {
  display: flex; 
  align-items: center;
  gap: 4px;
  padding: 0;
}

.vps__pagination .splide__pagination__page {
  display: block;
  width: 24px;
  border-radius: 2px;
  height: 4px;
  background-color: #D8D8D8;
  transition: background-color .2s;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
}

.vps__pagination .splide__pagination__page.is-active {
  background-color: #000000;
}

@media screen and (max-width: 960px) {
  video-picture-slideshow {
    --slide-width: 100%;

    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .vps__title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 24px;
  }

  .vps__slide {
    width: 100%;
    aspect-ratio: 1366 / 768;
  }

  .vps__arrow {
    width: 24px;
    height: 24px;
  }
}