.adev-video-scenes {
  width: 100%;
}

.adev-video-scenes .adev-vs-player {
  width: 100%;
}

.adev-video-scenes .adev-vs-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

.adev-video-scenes .adev-vs-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.adev-video-scenes .adev-vs-media iframe,
.adev-video-scenes .adev-vs-media video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.adev-video-scenes .adev-vs-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.adev-video-scenes .adev-vs-play {
  text-align: center;
  color: #fff;
  font-weight: 600;
  user-select: none;
}

.adev-video-scenes .adev-vs-play-icon {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 8px;
}

.adev-video-scenes .adev-vs-play-text {
  font-size: 16px;
  opacity: 0.95;
}

.adev-video-scenes .adev-vs-bottom {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  align-items: stretch;
}

.adev-video-scenes .adev-vs-left {
  width: 33.333%;
  min-width: 140px;
}

.adev-video-scenes .adev-vs-heading {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.adev-video-scenes .adev-vs-right {
  width: 66.666%;
  position: relative;
}

.adev-video-scenes .adev-vs-thumb {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.adev-video-scenes .adev-vs-thumb-media {
  width: 100%;
  aspect-ratio: 16 / 9; /* THUMB 16:9 */
  overflow: hidden;
  border-radius: 10px;
  background: #1a1a1a;
}

.adev-video-scenes .adev-vs-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adev-video-scenes .adev-vs-thumb-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #222, #111);
}

.adev-video-scenes .adev-vs-thumb-title {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  opacity: 0.95;
}

.adev-video-scenes .adev-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--adev-arrow-bg, rgba(0,0,0,.5));
  color: var(--adev-arrow-color, #fff);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.adev-video-scenes .adev-prev { left: 8px; }
.adev-video-scenes .adev-next { right: 8px; }

.adev-video-scenes .adev-nav span {
  font-size: 28px;
  line-height: 1;
  margin-top: -2px;
}

.adev-vs-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* o el que uses para tu stage */
  overflow: hidden;
}

.adev-vs-media iframe,
.adev-vs-media video,
.adev-vs-media .adev-vs-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.adev-vs-media .adev-vs-poster {
  object-fit: cover;
  display: block;
}

.adev-vs-poster-fallback {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}


/* Responsive layout: en móvil apila */
@media (max-width: 767px) {
  .adev-video-scenes .adev-vs-bottom {
    flex-direction: column;
  }
  .adev-video-scenes .adev-vs-left,
  .adev-video-scenes .adev-vs-right {
    width: 100%;
  }
  .adev-video-scenes .adev-nav {
    top: 45%;
  }
}
