.watch-page-main {
    padding-block: 10px;
    color: var(--ink);
}

.watch-page-hero {
    display: grid;

    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    /* padding-top: clamp(24px, 3.5vw, 44px); */
    padding-top: 100px;
    padding-bottom: clamp(24px, 3.5vw, 44px);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.watch-page-banner {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
    margin-bottom: clamp(0.7rem, 1.8vw, 1.1rem);
}

.watch-page-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.watch-page-hero h1 {
    margin: 0 auto 18px;
    font-size: clamp(36px, 6vw, 86px);
    line-height: 0.94;
}

.watch-page-hero h1 em {
    color: var(--gold);
}

.watch-page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.2;
}

.watch-page-heading {
    margin: 0;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    letter-spacing: -0.01em;
}

.watch-page-feature {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
    gap: clamp(0.75rem, 1.8vw, 1rem);
    align-items: stretch;
    margin-top: clamp(0.7rem, 2vw, 1.4rem);
}

.watch-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(320px, 34vw, 480px);
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: var(--white);
}

.watch-feature-copy .watch-page-heading {
    margin-bottom: 0.9rem;
    font-size: clamp(1.3rem, 3.2vw, 2.5rem);
    line-height: 1;
}

.watch-feature-copy p:not(.eyebrow) {
    margin: 0 0 1.25rem;
    color: var(--graphite);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.2;
}

.watch-feature-copy .button {
    align-self: flex-start;
}

.watch-feature-video,
.watch-feature-placeholder {
    min-height: clamp(320px, 34vw, 480px);
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.watch-feature-video iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    border: 0;
}

.watch-feature-placeholder {
    display: grid;
    place-items: center;
    padding: 1.25rem;
    color: #fff;
    text-align: center;
}

.watch-feature-placeholder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.watch-page-library {
    margin-top: 50px
}

.watch-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.8vw, 1rem);
}

.watch-video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #0c1119;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    min-height: 210px;
    isolation: isolate;
}

.watch-video-skeleton {
    background: #e7e7e7;
    box-shadow: none;
}

.watch-video-skeleton::after {
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.72) 50%, transparent 80%);
    transform: translateX(-100%);
    animation: watch-skeleton-shimmer 1.35s ease-in-out infinite;
}

.watch-video-skeleton-line {
    position: absolute;
    z-index: 2;
    left: 14px;
    right: 28%;
    bottom: 16px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.watch-video-grid>.watch-empty-state {
    grid-column: 1 / -1;
}

@keyframes watch-skeleton-shimmer {
    to {
        transform: translateX(100%);
    }
}

.watch-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 260ms ease;
}

.watch-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.06) 28%, rgba(6, 8, 12, 0.86) 100%);
    pointer-events: none;
}

.watch-video-title {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    font-size: clamp(0.9rem, 1.55vw, 1.05rem);
    font-weight: 650;
    line-height: 1.2;
    text-wrap: pretty;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-video-card:hover img,
.watch-video-card:focus-visible img {
    transform: scale(1.035);
}

.watch-video-card:hover,
.watch-video-card:focus-visible {
    border-color: rgba(208, 171, 73, 0.62);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.watch-page-tabs {
    margin-bottom: 1.1rem;
    font-size: 14px;
}

#watch-library-heading {
    scroll-margin-top: 120px;
}

.watch-tab-panel {
    display: none;
}

.watch-tab-panel.active {
    display: block;
}

.watch-empty-state {
    margin: 0;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.95rem 1.05rem;
    background: rgba(255, 255, 255, 0.6);
}

.watch-page-gallery {
    margin-top: 50px;
}

.watch-page-gallery .watch-gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
    text-align: center;
}

.watch-page-gallery .watch-gallery-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 0;
    background: transparent;
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-transform: uppercase;
}

.watch-page-gallery .watch-gallery-more a:hover,
.watch-page-gallery .watch-gallery-more a:focus-visible {
    color: var(--gold);
}

.watch-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 1.1rem;
}

.watch-gallery-filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;

    border-radius: 999px;
}

.select_gallery_year {
    width: 100%;
}

.watch-gallery-filter::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.watch-gallery-filter select {
    min-width: 112px;

    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 10px 36px 10px 16px;
    appearance: none;
    background: var(--black);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    outline: 0;
}

.watch-gallery-filter select:focus-visible {
    box-shadow: 0 0 0 3px rgba(208, 171, 73, 0.28);
}

.watch-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.8vw, 1rem);
}

.watch-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: #0c1119;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

.watch-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 260ms ease;
}

.watch-gallery-item:hover img,
.watch-gallery-item:focus-visible img {
    transform: scale(1.035);
}

.watch-gallery-item:hover,
.watch-gallery-item:focus-visible {
    border-color: rgba(208, 171, 73, 0.62);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.watch-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(0, 0, 0, 0.86);
}

.watch-gallery-lightbox.active {
    display: flex;
}

.watch-gallery-lightbox img {
    max-width: min(92vw, 1120px);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.watch-gallery-close,
.watch-gallery-nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease;
}

.watch-gallery-close:hover,
.watch-gallery-nav:hover {
    border-color: var(--gold);
    background: rgba(208, 171, 73, 0.18);
}

.watch-gallery-close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 30px;
    line-height: 1;
}

.watch-gallery-nav {
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    font-size: 42px;
    line-height: 1;
}

.watch-gallery-prev {
    left: 24px;
}

.watch-gallery-next {
    right: 24px;
}

.watch-page-main,
.watch-page-feature,
.watch-video-grid,
.watch-video-card,
.watch-gallery-grid,
.watch-gallery-item,
.watch-gallery-head,
.watch-gallery-filter {
    min-width: 0;
}

.watch-page-tabs.chips {
    position: relative;
    top: auto;
    z-index: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 22px;
    width: auto;
    margin-top: 22px;
    margin-right: calc(0px - clamp(22px, 5vw, 76px));
    margin-bottom: 1.1rem;
    margin-left: calc(0px - clamp(22px, 5vw, 76px));
    padding: 18px clamp(22px, 5vw, 76px);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    background: rgba(251, 248, 241, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.watch-page-tabs.chips .watch-filter-tab {
    flex: 0 0 auto;
    margin: 0;
    padding: 0 18px 0 0;
    border: 0;
    border-right: 1px solid rgb(204, 204, 204);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    transform: none;
}

.watch-page-tabs.chips .watch-filter-tab:last-child {
    padding-right: 0;
    border-right: 0;
}

.watch-page-tabs.chips .watch-filter-tab:hover,
.watch-page-tabs.chips .watch-filter-tab.active,
.watch-page-tabs.chips .watch-filter-tab.active:hover {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    background: transparent;
    color: var(--gold);
    transform: none;
}

@media (max-width: 1180px) {
    .watch-page-feature {
        grid-template-columns: 1fr;
    }

    .watch-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .watch-video-grid,
    .watch-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-page-main {
        padding-top: clamp(104px, 18vw, 136px);
    }

    .watch-page-tabs.chips {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-inline: clamp(22px, 5vw, 76px);
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .watch-page-tabs.chips::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 760px) {
    .watch-page-hero p:not(.eyebrow) {
        line-height: 1.2;
    }

    .watch-page-feature,
    .watch-video-grid,
    .watch-gallery-grid {
        grid-template-columns: 1fr;
    }

    .watch-gallery-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .watch-gallery-filter {
        width: 100%;
        justify-content: space-between;
    }

    .watch-gallery-filter select {
        flex: 0 0 auto;
        width: auto;
    }

    .watch-gallery-nav {
        width: 44px;
        height: 44px;
        font-size: 34px;
    }

    .watch-gallery-prev {
        left: 12px;
    }

    .watch-gallery-next {
        right: 12px;
    }

    .watch-video-card {
        min-height: 228px;
    }

    .watch-video-title {
        font-size: 0.96rem;
    }

    .watch-page-main {
        padding-top: 70px;
    }

    .watch-page-feature {
        gap: 24px;
    }

    .watch-video-card,
    .watch-gallery-item {
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }

    .watch-gallery-lightbox {
        padding: 72px 14px 24px;
    }

    .watch-gallery-close {
        top: 16px;
        right: 16px;
    }

    .watch-gallery-grid {
        display: grid;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: clamp(240px, 76vw, 300px);
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .watch-gallery-item {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .watch-gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .watch-page-main {
        padding-block: 10px;
    }

    .watch-gallery-year {
        font-size: 8px;
    }

    .watch-page-tabs.chips {
        margin-right: calc(0px - clamp(18px, 6vw, 24px));
        margin-left: calc(0px - clamp(18px, 6vw, 24px));
        padding-right: clamp(18px, 6vw, 24px);
        padding-left: clamp(18px, 6vw, 24px);
        scroll-padding-inline: clamp(18px, 6vw, 24px);
    }

    .watch-page-library {
        margin-top: 20px;
    }

    .watch-page-tabs.chips {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .watch-page-gallery {
        margin-top: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .watch-video-skeleton::after {
        animation: none;
    }
}