.vds-detail-page {
    --vds-detail-accent: #58d26a;
    --vds-detail-text: #171717;
    --vds-detail-muted: #6d6d6d;
    --vds-detail-surface: #f6f6f6;
    --vds-detail-radius: 18px;
    color: var(--vds-detail-text);
}

.vds-detail-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.vds-detail-article {
    padding: 48px 0 0;
}

.vds-detail-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--vds-detail-radius);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.13);
}

.vds-detail-player,
.vds-detail-fallback-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.vds-detail-fallback-image { object-fit: cover; }

.vds-detail-empty-player {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #fff;
    text-align: center;
}

.vds-detail-header {
    padding-top: 28px;
}

.vds-detail-category,
.vds-related-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: var(--vds-detail-accent);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    border-radius: 999px;
    padding: 8px 14px;
}

.vds-detail-title {
    margin: 14px 0 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.07;
    letter-spacing: -.025em;
}

.vds-detail-description {
    max-width: 850px;
    margin-top: 22px;
    color: var(--vds-detail-muted);
    font-size: 18px;
    line-height: 1.75;
}

.vds-detail-description > *:first-child { margin-top: 0; }
.vds-detail-description > *:last-child { margin-bottom: 0; }

.vds-more-videos {
    margin-top: 56px;
    padding: 48px 0 64px;
    background: var(--vds-detail-surface);
    overflow: hidden;
}

.vds-more-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.vds-more-eyebrow {
    color: var(--vds-detail-accent);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.vds-more-title {
    margin: 4px 0 0;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.1;
}

.vds-related-navigation {
    display: flex;
    gap: 10px;
}

.vds-related-prev,
.vds-related-next {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.vds-related-prev:disabled,
.vds-related-next:disabled {
    opacity: .35;
    cursor: default;
}

.vds-related-swiper {
    overflow: hidden;
}

.vds-related-card,
.vds-related-card-link {
    height: 100%;
}

.vds-related-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.vds-related-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
    background: #111;
}

.vds-related-media video,
.vds-related-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease, filter .3s ease;
}

.vds-related-card-link:hover .vds-related-media video,
.vds-related-card-link:hover .vds-related-media img {
    transform: scale(1.05);
    filter: brightness(.78);
}

.vds-related-category {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    pointer-events: none;
}

.vds-related-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 36px;
    text-shadow: 0 2px 18px rgba(0,0,0,.5);
    pointer-events: none;
}

.vds-related-title {
    margin: 12px 0 0;
    font-size: 17px;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .vds-detail-shell {
        width: min(100% - 24px, 1180px);
    }

    .vds-detail-article {
        padding-top: 20px;
    }

    .vds-detail-player-wrap {
        border-radius: 12px;
    }

    .vds-detail-header {
        padding-top: 20px;
    }

    .vds-detail-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .vds-more-videos {
        margin-top: 38px;
        padding: 36px 0 46px;
    }

    .vds-more-heading-row {
        align-items: center;
    }

    .vds-related-prev,
    .vds-related-next {
        width: 38px;
        height: 38px;
    }
}
