/* Custom Square Video Wrapper - With Max Width */
.my-custom-square-video {
    width: 100%;
    max-width: 450px !important; /* Change this number to make it bigger or smaller */
    margin: 0 auto; /* Centers the video */
    aspect-ratio: 1 / 1 !important; /* Forces the perfect square */
    display: flex;
}

.my-custom-square-video iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}