/* Short videos - 9:16 vertical */
.myIframe--short {
    max-width: 360px;
    margin: 0 auto;
    padding-bottom: 0;
    height: 640px;
}

@media (max-width: 768px) {

    /* Quita el gutter de Bootstrap en el col del video */
    .no-padding-xs {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Video regular: ancho completo, altura proporcional 16:9 */
    .myIframe {
        height: auto;
        padding-bottom: 0;
        margin: 0;
    }
    .myIframe iframe {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        display: block;
    }

    /* Short: ancho completo, altura proporcional 9:16 */
    .myIframe--short {
        width: 100%;
        max-width: none;
        height: auto;
        padding-bottom: 0;
        margin: 0;
        position: relative;
    }
    .myIframe--short iframe {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 16;
        display: block;
    }

}
