.vl-container-f5ac032e {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.vl-thumb-f5ac032e {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.vl-container-f5ac032e:hover .vl-thumb-f5ac032e {
    transform: scale(1.03);
}

.vl-overlay-f5ac032e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.vl-play-btn-f5ac032e {
  position: absolute;
  background: none;
  border: 2px solid; /* needed so icon_color's border-color control has something to color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
  --vl-glow-color-f5ac032e: rgba(255, 255, 255, 0.6); /* fallback if control not set */
}

.vl-play-btn-f5ac032e svg {
  position: relative;
  z-index: 3; /* stay above the pulse/fill circles */
  margin-left: 4%; /* optical centering alignment */
  transition: fill 0.3s ease;
}

.vl-play-btn-f5ac032e:hover {
  transform: scale(1.1);
}

/* CodePen pulsing ring — now driven by the Glowing Color control */
.vl-play-btn-f5ac032e:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 50%;
  background: var(--vl-glow-color-f5ac032e);
  animation: vl-pulse-f5ac032e 1500ms ease-out infinite;
}

@keyframes vl-pulse-f5ac032e {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* Lightbox Modal Styles */
.vl-modal-backdrop-f5ac032e {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.admin-bar .vl-modal-backdrop-f5ac032e {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .vl-modal-backdrop-f5ac032e {
        top: 46px;
    }
}

.vl-modal-backdrop-f5ac032e.active {
    opacity: 1;
}

.vl-modal-content-f5ac032e {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vl-modal-backdrop-f5ac032e.active .vl-modal-content-f5ac032e {
    transform: scale(1);
}

.vl-modal-close-f5ac032e {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: opacity 0.2s;
}

.vl-modal-close-f5ac032e:hover {
    opacity: 0.8;
}

.vl-modal-content-f5ac032e iframe,
.vl-modal-content-f5ac032e video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
