/* 1. Ensure the video scales to the width of its container */
.responsive-video {
    width: 100%;
    /* Max-width is often not needed if container is already constrained */
    /* max-width: 100%; */
    height: auto; /* This maintains the aspect ratio */
    display: block; /* Removes any extra space below the video */
}
