.acf-video-text-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.acf-video-text-media,
.acf-video-text-content {
    width: 50%;
}

.acf-video-text.video-left .acf-video-text-media { order: 1; }
.acf-video-text.video-left .acf-video-text-content { order: 2; }

.acf-video-text.video-right .acf-video-text-media { order: 2; }
.acf-video-text.video-right .acf-video-text-content { order: 1; }


.acf-video {
    width: 100%;
    border-radius: 12px;
}

.acf-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.acf-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .acf-video-text-inner {
        flex-direction: column;
    }
    .acf-video-text-media,
    .acf-video-text-content {
        width: 100%;
    }
}