/* container for video */
.fancybox-video-container {
    position: relative;
    z-index: 10;
    border-radius: 2rem;
    overflow: hidden;
    margin: 0 auto;
    max-width: 64%;
    aspect-ratio: 16 / 9;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* video preview style */
  .video-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
  }
  
  /* overlay for Fancybox trigger */
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
  }
  
  .video-overlay:hover {
    opacity: 1;
  }
  
  /* expand icon for overlay */
  .expand-icon {
    font-size: 2rem;
    color: white;
  }
  