﻿@charset "UTF-8";
.video {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px;
}

.video__title {
font-size: 1.25rem;
margin-bottom: 12px;
}

.video__container {
width: 100%;
aspect-ratio: 16 / 9;
background: #000;
border-radius: 8px;
overflow: hidden;
margin-top: 10px;
margin-bottom: 60px;
}

.mt60 {
    margin-top: 60px !important
}
@supports not (aspect-ratio: 16 / 9) {
.video__container {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
}
.video__container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
}

.video__container video {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
  