:root {
    --ink: #11110f;
    --ink-soft: #25231f;
    --paper: #f1ede2;
    --paper-deep: #e7e0d1;
    --paper-pale: #f8f5ed;
    --red: #a33d32;
    --red-dark: #7f2c25;
    --line: rgba(17, 17, 15, 0.18);
    --white-line: rgba(255, 255, 255, 0.16);
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: "Bodoni 72", Didot, "Times New Roman", serif;
    --shell: 1240px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    background:
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(112, 83, 59, 0.055) 50%, transparent calc(50% + 0.5px)),
        var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    content: "";
    pointer-events: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--paper-pale);
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform 150ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
    background: rgba(12, 12, 11, 0.96);
    color: var(--paper-pale);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    font-family: var(--serif);
    font-size: 1.44rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    text-decoration: none;
}

.brand img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-plus {
    color: var(--red);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.primary-nav a {
    text-decoration: none;
}

.primary-nav a:not(.subscribe-link) {
    color: rgba(248, 245, 237, 0.72);
}

.primary-nav a:not(.subscribe-link):hover {
    color: var(--paper-pale);
}

.subscribe-link {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 160ms ease, color 160ms ease;
}

.subscribe-link:hover {
    background: var(--paper-pale);
    color: var(--ink);
}

.hero {
    padding-top: 32px;
    padding-bottom: 112px;
}

.channel-banner {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    background: #eee8dc;
    border: 1px solid rgba(17, 17, 15, 0.11);
}

.channel-banner::after {
    position: absolute;
    inset: 0;
    border: 8px solid rgba(255, 255, 255, 0.12);
    content: "";
    pointer-events: none;
}

.channel-banner img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.hero-intro {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 210px;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding-top: 54px;
}

.hero-mark img {
    width: min(100%, 230px);
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(17, 17, 15, 0.18);
    box-shadow: 0 22px 55px rgba(55, 43, 31, 0.14);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.library-heading h2,
.about-layout h2,
.subscribe-inner h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.052em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 800px;
    font-size: clamp(3.4rem, 6.3vw, 6.3rem);
}

.hero h1 em {
    color: var(--red);
    font-weight: inherit;
}

.hero-lead {
    max-width: 750px;
    margin: 28px 0 0;
    color: #49453e;
    font-size: clamp(1rem, 1.35vw, 1.17rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--ink);
    color: var(--paper-pale);
}

.button-primary:hover {
    background: var(--red);
}

.button-secondary {
    background: transparent;
    border-color: rgba(17, 17, 15, 0.36);
    color: var(--ink);
}

.button-secondary:hover {
    background: var(--paper-pale);
    border-color: var(--ink);
}

.hero-stats {
    margin: 0;
    border-left: 1px solid var(--line);
}

.hero-stats div {
    padding: 20px 0 20px 28px;
    border-bottom: 1px solid var(--line);
}

.hero-stats div:first-child {
    border-top: 1px solid var(--line);
}

.hero-stats dt {
    font-family: var(--serif);
    font-size: 2.25rem;
    line-height: 1;
}

.hero-stats dd {
    margin: 8px 0 0;
    color: #676158;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.45;
    text-transform: uppercase;
}

.featured-section {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 72px);
    background: var(--ink);
    color: var(--paper-pale);
}

.featured-section::before {
    position: absolute;
    top: -290px;
    right: -250px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.015);
    content: "";
}

.section-heading,
.library-heading {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--white-line);
}

.section-heading h2,
.library-heading h2,
.about-layout h2,
.subscribe-inner h2 {
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.section-heading > p,
.library-heading > p {
    max-width: 350px;
    margin: 0;
    color: rgba(248, 245, 237, 0.58);
    font-size: 0.88rem;
}

.featured-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
    gap: 28px;
    padding-top: 38px;
}

.feature-media,
.feature-small-media,
.card-media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 0;
    background: #24221f;
    border: 0;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.feature-media {
    aspect-ratio: 16 / 9;
}

.feature-media img,
.feature-small-media img,
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.feature-media::after,
.feature-small-media::after,
.card-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.48));
    content: "";
    pointer-events: none;
}

.feature-media:hover img,
.feature-small-media:hover img,
.card-media:hover img {
    transform: scale(1.025);
    filter: contrast(1.04);
}

.duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 3px 7px;
    background: rgba(10, 10, 9, 0.86);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.35;
}

.play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 74px;
    height: 74px;
    color: var(--paper-pale);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.play-mark svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.play-mark circle {
    fill: rgba(12, 12, 11, 0.68);
    stroke: rgba(255, 255, 255, 0.72);
}

.play-mark path {
    fill: currentColor;
}

.feature-media:hover .play-mark {
    transform: translate(-50%, -50%) scale(1.08);
}

.feature-copy {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding-top: 22px;
}

.feature-number {
    color: var(--red);
    font-family: var(--serif);
    font-size: 1.15rem;
}

.feature-copy h3,
.feature-small h3,
.card-copy h3 {
    margin: 5px 0 0;
    line-height: 1.2;
}

.feature-copy h3 {
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.03em;
}

.feature-copy h3 a,
.feature-small h3 a,
.card-copy h3 a {
    text-decoration: none;
}

.feature-copy h3 a:hover,
.feature-small h3 a:hover {
    color: #d7cbbc;
}

.video-meta {
    margin: 0;
    color: rgba(248, 245, 237, 0.53);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.video-meta span {
    margin-inline: 4px;
}

.feature-secondary {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 28px;
}

.feature-small {
    display: grid;
    grid-template-columns: minmax(145px, 0.9fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--white-line);
}

.feature-small:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.feature-small-media {
    aspect-ratio: 16 / 10;
}

.feature-small .duration {
    right: 7px;
    bottom: 7px;
}

.mini-play,
.card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: rgba(12, 12, 11, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    color: white;
    font-size: 0.72rem;
    padding-left: 2px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 180ms ease, transform 180ms ease;
}

.feature-small-media:hover .mini-play,
.card-media:hover .card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.feature-small .feature-number {
    display: block;
    margin-bottom: 18px;
}

.feature-small h3 {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    letter-spacing: -0.025em;
}

.film-library {
    padding: 120px 0;
}

.library-heading {
    color: var(--ink);
    border-color: var(--line);
}

.library-heading > p {
    color: #676158;
}

.library-tools {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 18px;
}

.sort-tabs {
    display: flex;
    gap: 8px;
}

.sort-tab {
    min-height: 44px;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid var(--line);
    color: #5f5a52;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.sort-tab:hover,
.sort-tab.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper-pale);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(100%, 310px);
    border-bottom: 1px solid rgba(17, 17, 15, 0.5);
}

.search-box svg {
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.search-box input {
    width: 100%;
    padding: 10px 4px;
    background: transparent;
    border: 0;
    color: var(--ink);
    outline: 0;
}

.search-box input::placeholder {
    color: #777066;
}

.results-line {
    margin: 8px 0 28px;
    color: #777066;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 24px;
}

.video-card {
    min-width: 0;
}

.video-card[hidden] {
    display: none;
}

.card-media {
    aspect-ratio: 16 / 9;
}

.card-copy {
    padding: 18px 2px 0;
}

.card-copy .video-meta {
    color: #7a7369;
}

.card-copy h3 {
    min-height: 3.15em;
    font-family: var(--serif);
    font-size: clamp(1.3rem, 1.8vw, 1.68rem);
    letter-spacing: -0.025em;
}

.card-copy h3 a:hover {
    color: var(--red);
}

.watch-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    color: var(--red-dark);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.watch-link span {
    font-size: 1rem;
    transition: transform 160ms ease;
}

.watch-link:hover span {
    transform: translateX(4px);
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.load-more[hidden],
.no-results[hidden] {
    display: none;
}

.no-results {
    margin: 45px 0 0;
    padding: 45px;
    border: 1px solid var(--line);
    color: #676158;
    text-align: center;
}

.about-section {
    padding-bottom: 124px;
}

.about-rule {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 62px;
    color: var(--red);
    font-family: var(--serif);
    font-size: 1.3rem;
}

.about-rule::before,
.about-rule::after {
    height: 1px;
    background: var(--line);
    content: "";
}

.about-rule::before {
    flex: 0 0 64px;
}

.about-rule::after {
    flex: 1;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
    gap: clamp(60px, 11vw, 150px);
}

.about-layout h2 {
    max-width: 660px;
}

.about-copy {
    padding-top: 4px;
    color: #49453e;
    font-size: 1.03rem;
}

.about-copy p {
    margin: 0 0 20px;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 14px;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    color: var(--red-dark);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
}

.subscribe-panel {
    padding: 80px 0;
    background: var(--red-dark);
    color: var(--paper-pale);
}

.subscribe-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.subscribe-inner .eyebrow {
    color: #ddc6ac;
}

.subscribe-inner h2 {
    max-width: 780px;
    font-size: clamp(2.7rem, 4.9vw, 5.1rem);
}

.button-light {
    flex: 0 0 auto;
    background: var(--paper-pale);
    color: var(--ink);
}

.button-light:hover {
    background: var(--ink);
    color: var(--paper-pale);
}

.site-footer {
    padding: 62px 0 28px;
    background: var(--ink);
    color: var(--paper-pale);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 54px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
}

.footer-inner p {
    margin: 16px 0 0;
    color: rgba(248, 245, 237, 0.48);
    font-family: var(--serif);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 28px;
    align-items: start;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(248, 245, 237, 0.7);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--white-line);
    color: rgba(248, 245, 237, 0.38);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    width: min(calc(100% - 32px), 1120px);
    max-width: none;
    max-height: calc(100vh - 32px);
    margin: 0;
    padding: 0;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.88);
}

body.video-open {
    overflow: hidden;
}

.video-dialog[hidden] {
    display: none;
}

.dialog-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    padding: 9px 12px 9px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dialog-topbar h2 {
    overflow: hidden;
    margin: 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dialog-close {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0 0 4px;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.dialog-close:hover {
    background: white;
    color: black;
}

.dialog-player {
    aspect-ratio: 16 / 9;
}

.dialog-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1020px) {
    .hero-intro {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .hero-mark img {
        width: 160px;
    }

    .hero-stats {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .hero-stats div,
    .hero-stats div:first-child {
        padding: 20px;
        border-top: 0;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .hero-stats div:last-child {
        border-right: 0;
    }

    .featured-layout {
        grid-template-columns: 1fr;
    }

    .feature-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .feature-small,
    .feature-small:last-child {
        grid-template-columns: minmax(130px, 0.65fr) 1fr;
        padding: 22px 0 0;
        border-top: 1px solid var(--white-line);
        border-bottom: 0;
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .subscribe-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 66px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .site-header {
        height: var(--header-height);
    }

    .brand {
        gap: 9px;
        font-size: 1.16rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .primary-nav {
        gap: 8px;
    }

    .primary-nav > a:not(.subscribe-link) {
        display: none;
    }

    .subscribe-link {
        padding: 8px 10px;
        font-size: 0.67rem;
    }

    .hero {
        padding-top: 14px;
        padding-bottom: 74px;
    }

    .channel-banner,
    .channel-banner img {
        min-height: 112px;
    }

    .hero-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 38px;
    }

    .hero-mark img {
        width: 106px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .hero-lead {
        margin-top: 22px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats div,
    .hero-stats div:first-child,
    .hero-stats div:last-child {
        padding-inline: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .featured-section {
        width: 100%;
        padding-inline: 14px;
    }

    .section-heading,
    .library-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .section-heading > p,
    .library-heading > p {
        max-width: 100%;
    }

    .feature-copy {
        grid-template-columns: 32px 1fr;
    }

    .feature-secondary {
        grid-template-columns: 1fr;
    }

    .feature-small,
    .feature-small:last-child {
        grid-template-columns: 132px 1fr;
    }

    .feature-small .feature-number {
        margin-bottom: 10px;
    }

    .film-library {
        padding: 80px 0;
    }

    .library-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .search-box {
        width: 100%;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .card-copy h3 {
        min-height: 0;
    }

    .about-section {
        padding-bottom: 80px;
    }

    .about-rule {
        margin-bottom: 44px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .subscribe-panel {
        padding: 66px 0;
    }

    .footer-inner,
    .footer-base {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .video-dialog {
        width: calc(100% - 16px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
