/* Anniversary video — full column-width card on the login landing, where the banner used to be */
.start-hero__video-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 34px 0 10px;
    /* Native video is 1920x1080 with a ~44px player/scrollbar baked into the bottom.
       Shorter aspect ratio + overflow:hidden crops that strip off (1080 - 56 = 1024). */
    aspect-ratio: 1920 / 1024;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 18px 44px rgba(28, 20, 18, 0.22);
    background: #0c0c0c;
}

.start-hero__video-frame .start-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* taller than the frame by exactly the cropped strip, top-aligned → bottom strip is clipped */
    height: calc(100% * 1080 / 1024);
    object-fit: cover;
    display: block;
}

@media (max-width: 1199px) {
    .start-hero__video-frame {
        margin-top: 24px;
    }
}

@media (max-width: 574px) {
    .start-hero__video-frame {
        margin-top: 18px;
        border-radius: 4px;
    }
}
