@import "news.css";

.detail {
    margin-top:var(--padding);
}

.video-wrap {
    aspect-ratio: 1 / 1.2;
    height:auto;
}
.video {
    border-radius:var(--radius-inner);
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    aspect-ratio: 1 / 1.2;
    height:auto;
}
.video::before {
    content:'';
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background:url(../_img/musk.png);
    z-index:2;
    opacity: .6;
}
.video video {
    width:100%;
}
.video-wrap img {
    position:absolute;
    width:calc(100% + (var(--padding) * 2));
    max-width:600px;
    bottom:40px;
    left:50%;
    translate: -50% 0;
    z-index:5;
}


@media (max-width:920px ) {
    .video-wrap ,
    .video {
        aspect-ratio: 2 / 3;
        height:auto;
    }
}
@media (max-width:720px ) {

}
@media (max-width:520px ) {

}