.youtube-section .story-video__trigger {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}
.youtube-section .story-video__trigger:focus-visible,
.story-video__close:focus-visible {
    outline: 3px solid #2f6d24;
    outline-offset: 6px;
}
.story-video__dialog {
    width: min(960px, calc(100vw - 32px), calc((100dvh - 120px) * 16 / 9));
    max-width: calc(100vw - 32px);
    max-height: calc(100dvh - 32px);
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: #fff;
    color: #12382d;
    box-shadow: 0 24px 80px #0006;
}
.story-video__dialog[open] {
    animation: story-video-open 220ms ease-out;
}
.story-video__dialog::backdrop {
    background: #081c16c9;
}
.story-video__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
}
.story-video__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}
.story-video__close {
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid #dbe3dd;
    border-radius: 8px;
    background: #eef6ec;
    color: #12382d;
    font: inherit;
    cursor: pointer;
}
.story-video__player {
    aspect-ratio: 16 / 9;
    background: #000;
}
.story-video__frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.story-video__error {
    padding: 16px;
}
@keyframes story-video-open {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .story-video__dialog[open] { animation: none; }
}
