[data-builder="video"] {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}

[data-builder="video"] video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100%;
}

/* Play button */

.builder-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    transition: opacity .3s;
}

.builder-video-play::before {
    content: "▶";
    font-size: 42px;
    color: white;
}

[data-builder="video"].playing .builder-video-play {
    opacity: 0;
    pointer-events: none;
}
