*[video-url] {
    cursor: pointer;
}
#jobsVideoLightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none;
    padding: 20px;
}
#jobsVideoLightbox.active {
    display: flex;
}
#jobsVideoLightbox .content {
    background: #000;
    width: min(100%, 1200px);
    height: auto;
    max-width: 1200px;
    max-height: 800px;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
}
#jobsVideoLightbox.active .content {
    opacity: 1;
    transform: translateY(0);
}
#jobsVideoLightbox .content video {
    width: 100%;
}
#jobsVideoLightbox .close {
    position: absolute;
    top: 50px;
    right: 50px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
}

#jobsVideoLightbox .content iframe {
    aspect-ratio: 16 / 10;
}
