/* Native Drive controls only. The iframe always fits its responsive stage. */
.lws-drive-player {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}
.lfr-video-card__embed .lws-drive-player { margin: 0; border-radius: 0 0 12px 12px; }
.lws-drive-stage {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #000;
}
.lws-drive-player .lws-drive-iframe {
    position: absolute;
    inset: 0;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0 !important; /* Overrides the article's generic iframe minimum. */
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}
/* Only the upper-right popout is covered; playback controls remain untouched. */
.lws-drive-shield {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 52px;
    max-width: 25%;
    max-height: 30%;
    z-index: 2;
    background: #000;
    pointer-events: auto;
}
@media (max-width: 540px) {
    .lws-drive-player { margin-block: 16px; border-radius: 8px; }
    .lfr-video-card__embed .lws-drive-player { margin: 0; }
}
