.pbs-bunny-video {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.pbs-bunny-video.loaded {
    aspect-ratio: 16 / 9;
}

.pbs-bunny-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.pbs-bunny-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pbs-bunny-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 68px;
    height: 48px;

    background: rgba(0,0,0,0.7);

    border-radius: 12px;
}

.pbs-bunny-play::before {
    content: '';

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-40%, -50%);

    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}

@media (min-width: 1024px) {

    .pbs-bunny-video {
        max-width: 900px;
        margin: 40px auto;
        border-radius: 12px;
        overflow: hidden;
    }
}