/* PC/MB modal for YouTube (no auto focus) */
.yt-modal { position: fixed; inset: 0; z-index: 9999999; display: none; }
.yt-modal[aria-hidden="false"] { display: flex; align-items: center; justify-content: center; }
.yt-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.yt-modal__dialog { position: relative; z-index: 1; width: min(92vw, 960px); aspect-ratio: 16 / 9; background: #000; box-shadow: 0 12px 32px rgba(0,0,0,.5); }
.yt-modal__close { position: absolute; top: -44px; right: 0; width: 40px; height: 40px; background: transparent; color: #fff; font-size: 24px; line-height: 40px; border: 0; cursor: pointer; }
.yt-modal__framewrap, .yt-modal__framewrap iframe { width: 100%; height: 100%; display: block; }
@media (max-width: 768px) { .yt-modal__dialog { margin-top: 10vh; } }
/* optional: prevent background scroll while open */
body.video-open { overflow: hidden; }
