.cyv-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 60px;
  position: relative;
  box-sizing: border-box;
}

.cyv-swiper {
  width: 100%;
  padding-bottom: 40px;
}

.cyv-swiper .swiper-slide {
  text-align: center;
}

.cyv-card {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  position: relative;
}

.cyv-card iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.cyv-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0054c7;
  background: #006dff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 109, 255, 0.4);
  transition: all 0.25s ease;
}

.cyv-button:hover {
  transform: translateY(-50%) scale(1.08);
  background: #0054c7;
}

.cyv-button-prev {
  left: 6px;
}

.cyv-button-next {
  right: 6px;
}

.cyv-button span {
  font-size: 20px;
  line-height: 1;
}

.cyv-wrapper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(0, 109, 255, 0.35);
}

.cyv-wrapper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 8px;
  background: #006dff;
}

@media (min-width: 1024px) {
  .cyv-wrapper {
    padding: 20px 70px;
  }
}

@media (max-width: 767px) {
  .cyv-wrapper {
    padding: 20px 48px;
  }

  .cyv-button {
    width: 36px;
    height: 36px;
  }

  .cyv-button span {
    font-size: 16px;
  }

  .cyv-card iframe {
    min-height: 350px;
  }
}
