I wanted to point out that in the mobile view, the text is still appearing beside the video. I would like the layout to be adjusted only for mobile view so that the video appears first, and the text is shown below the video.
Hi @Adesh1
You can do that by adding this code to Custom CSS of that section
@media (max-width: 749px) {
.flexible-layout { display: flex; }
}
Thank you

