.video-container {
    width: 100%!important;       /* 親要素の幅いっぱいに広がる */
    max-width: 800px!important;   /* 必要であれば最大幅を制限 */
    margin: 0 auto!important;     /* 中央寄せ */
}

.video-container iframe {
    width: 100%!important;       /* ラッパーの幅に追従 */
    height: auto!important;      /* 高さを自動計算 */
    aspect-ratio: 16 / 9!important; /* アスペクト比を16:9に固定 */
}