.g44-video {
    position: relative;
    background:#000;
}

.g44-video.ar-16-9,
.g44-video.ar-16-9 .g44-video-overlay img {
    aspect-ratio: 16 / 9;
}
.g44-video.ar-4-3,
.g44-video.ar-4-3 .g44-video-overlay img  {
    aspect-ratio: 4 / 3;
}
.g44-video.ar-1-1,
.g44-video.ar-1-1 .g44-video-overlay img  {
    aspect-ratio: 1 / 1;
}

.g44-video .g44-video-player {
    position: absolute;
    inset: 0;
}

.g44-video .g44-video-player{
    pointer-events: none;
}
.g44-video .g44-video-player:has(video, iframe){
    pointer-events:all;
}

.g44-video .g44-video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: #000;
    border: 0;
    padding: 0;
    cursor: pointer;
    overflow:hidden;
}

.g44-video .g44-video-overlay img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95;
}

.g44-video .g44-video-overlay i {
    position: absolute;
    font-size: clamp(48px, 12vw, 120px);
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

.g44-video .g44-video-placeholder {
    display: grid;
    place-items: center;
    color: #999;
    background: #111;
    height: 100%;
}

.g44-video .g44-video-placeholder-inner {
    text-align: center;
    display: grid;
    gap: 10px;
}