/*
 * Modal player of a YouTube video — the popup of § 5 and the "Regarder" of § 10.
 */

.mo-video-dialog {
    width: min(960px, 92vw);
    padding: 0;
    border: 0;
    border-radius: var(--mo-radius-md);
    background-color: var(--mo-surface-default-white);
}

.mo-video-dialog::backdrop {
    background-color: rgb(0 0 0 / 70%);
}

.mo-video-dialog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mo-spacing-xs);
    padding: var(--mo-spacing-xs);
}

.mo-video-dialog__title {
    margin: 0;
    color: var(--mo-text-heading);
    font-size: var(--mo-font-size-h4);
    font-weight: var(--mo-font-weight-semibold);
    line-height: var(--mo-line-height-h4);
}

.mo-video-dialog__frame {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}
