.mo-video-placeholder {
    position: relative;
    cursor: pointer;
    background: #000;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

.mo-video-placeholder img.mo-video-thumbnail,
.mo-video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.mo-video-placeholder .mo-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
    z-index: 1;
}

.mo-video-placeholder:hover .mo-video-play-button-bg {
    fill: #f00;
    fill-opacity: 1;
}

.mo-video-wrapper {
    position: relative;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.mo-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mo-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mo-video-placeholder:hover .mo-video-thumbnail {
    opacity: 1;
}

.mo-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    z-index: 1;
}

.mo-video-play-button-bg {
    fill: #212121;
    fill-opacity: 0.8;
    transition: fill-opacity 0.1s;
}

.mo-video-placeholder:hover .mo-video-play-button-bg {
    fill-opacity: 1;
    fill: #f00;
}

.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:has(.mo-video-wrapper):before {
    content: none !important;
    display: none !important;
    padding-top: 0 !important;
}

.wp-block-embed__wrapper .mo-video-wrapper {
    width: 100% !important;
}