/**
 * mod_photocrew_hlsvideos — единственный файл стилей.
 * Префикс блока: .pc-hlsvideos / .pc-hlsvideos__*
 */

/* --- Корень секции: ширина по режиму --- */
.pc-hlsvideos--single .pc-hlsvideos__root {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.pc-hlsvideos--gallery .pc-hlsvideos__root {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.pc-hlsvideos__root,
.pc-hlsvideos__root * {
    box-sizing: border-box;
}

.pc-hlsvideos__root a {
    color: inherit;
    text-decoration: none;
}

.pc-hlsvideos > .pc-hlsvideos__block-header {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

/* Single + gallery: изоляция плеера и оверлей заголовка ролика */
.pc-hlsvideos--single .pc-hlsvideos__player,
.pc-hlsvideos--gallery .pc-hlsvideos__player {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.pc-hlsvideos--single .pc-hlsvideos__track,
.pc-hlsvideos--gallery .pc-hlsvideos__track {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    background: transparent !important;
    z-index: 2;
    pointer-events: none;
}

.pc-hlsvideos--single .pc-hlsvideos__track-inner,
.pc-hlsvideos--gallery .pc-hlsvideos__track-inner {
    width: auto;
    max-width: 88%;
    padding: 10px 12px 0;
}

.pc-hlsvideos--single .pc-hlsvideos__track-text,
.pc-hlsvideos--gallery .pc-hlsvideos__track-text {
    margin: 0;
    text-align: left;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.9),
        0 0 18px rgba(0, 0, 0, 0.55);
    font-size: clamp(0.9rem, 2.6vw, 1.05rem);
    line-height: 1.3;
}

.pc-hlsvideos--single .pc-hlsvideos__play,
.pc-hlsvideos--gallery .pc-hlsvideos__play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: default;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.pc-hlsvideos--single .pc-hlsvideos__play-icon,
.pc-hlsvideos--gallery .pc-hlsvideos__play-icon {
    width: 68px;
    height: 68px;
    max-width: 18vw;
    max-height: 18vw;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.pc-hlsvideos--single .pc-hlsvideos__play-icon::after,
.pc-hlsvideos--gallery .pc-hlsvideos__play-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-36%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.pc-hlsvideos--single .pc-hlsvideos__promo--playing .pc-hlsvideos__play,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--playing .pc-hlsvideos__play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
}

.pc-hlsvideos--single .pc-hlsvideos__promo--playing .pc-hlsvideos__track,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--playing .pc-hlsvideos__track {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
}

.pc-hlsvideos--single .pc-hlsvideos__promo--playing:hover .pc-hlsvideos__track,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--playing:hover .pc-hlsvideos__track {
    opacity: 1;
    visibility: visible;
}

.pc-hlsvideos--single .pc-hlsvideos__promo--waiting .pc-hlsvideos__track,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--waiting .pc-hlsvideos__track {
    opacity: 0 !important;
    visibility: hidden !important;
}

@keyframes pc-hlsvideos-buffer-spin {
    to {
        transform: rotate(360deg);
    }
}

.pc-hlsvideos__buffer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.14);
    pointer-events: none;
}

/*
 * Буфер только вместе с --playing (и после первого playing в JS),
 * иначе мелькает спиннер поверх постера до первого кадра.
 */
.pc-hlsvideos--single .pc-hlsvideos__promo--waiting.pc-hlsvideos__promo--playing .pc-hlsvideos__buffer,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--waiting.pc-hlsvideos__promo--playing .pc-hlsvideos__buffer {
    display: flex;
}

.pc-hlsvideos__buffer-spinner {
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    border: 4px solid rgba(255, 255, 255, 0.22);
    border-top-color: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    animation: pc-hlsvideos-buffer-spin 0.75s linear infinite;
}

.pc-hlsvideos--single .pc-hlsvideos__pause,
.pc-hlsvideos--gallery .pc-hlsvideos__pause {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: default;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
    -webkit-tap-highlight-color: transparent;
}

.pc-hlsvideos--single .pc-hlsvideos__promo--playing:hover .pc-hlsvideos__pause,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--playing:hover .pc-hlsvideos__pause {
    opacity: 1;
    visibility: visible;
}

.pc-hlsvideos--single .pc-hlsvideos__promo--waiting .pc-hlsvideos__pause,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--waiting .pc-hlsvideos__pause {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.pc-hlsvideos--single .pc-hlsvideos__promo--waiting .pc-hlsvideos__pause-icon,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--waiting .pc-hlsvideos__pause-icon {
    pointer-events: none !important;
}

.pc-hlsvideos--single .pc-hlsvideos__pause-icon,
.pc-hlsvideos--gallery .pc-hlsvideos__pause-icon {
    width: 68px;
    height: 68px;
    max-width: 18vw;
    max-height: 18vw;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    pointer-events: none;
    cursor: pointer;
}

.pc-hlsvideos--single .pc-hlsvideos__promo--playing:hover .pc-hlsvideos__pause-icon,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--playing:hover .pc-hlsvideos__pause-icon {
    pointer-events: auto;
}

.pc-hlsvideos--single .pc-hlsvideos__pause-icon::before,
.pc-hlsvideos--single .pc-hlsvideos__pause-icon::after,
.pc-hlsvideos--gallery .pc-hlsvideos__pause-icon::before,
.pc-hlsvideos--gallery .pc-hlsvideos__pause-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 22px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.95);
}

.pc-hlsvideos--single .pc-hlsvideos__pause-icon::before,
.pc-hlsvideos--gallery .pc-hlsvideos__pause-icon::before {
    left: calc(50% - 9px);
}

.pc-hlsvideos--single .pc-hlsvideos__pause-icon::after,
.pc-hlsvideos--gallery .pc-hlsvideos__pause-icon::after {
    left: calc(50% + 3px);
}

.pc-hlsvideos--single .pc-hlsvideos__promo--waiting .pc-hlsvideos__play,
.pc-hlsvideos--gallery .pc-hlsvideos__promo--waiting .pc-hlsvideos__play {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.pc-hlsvideos__inner {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pc-hlsvideos__col {
    width: 100%;
    position: relative;
}

.pc-hlsvideos__stage {
    position: relative;
}

.pc-hlsvideos__layout {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pc-hlsvideos__root iframe,
.pc-hlsvideos__root video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 16:9 контейнер плеера */
.pc-hlsvideos__player {
    position: relative;
    display: block;
    height: 0;
    padding: 0 0 56.25%;
    overflow: hidden;
    border-radius: 2px;
    background: #000;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.pc-hlsvideos__player .pc-hlsvideos__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: transparent;
    z-index: 2;
}

.pc-hlsvideos__poster-stack {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

.pc-hlsvideos__poster-blur {
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: -16px;
    left: -16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    -webkit-filter: blur(18px);
    filter: blur(18px);
    opacity: 0.94;
    transform: scale(1.06);
}

.pc-hlsvideos__poster-sharp {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}

.pc-hlsvideos__player .pc-hlsvideos__nav {
    z-index: 6;
}

.pc-hlsvideos__promo {
    display: block;
    position: relative;
}

.pc-hlsvideos__thumbs {
    position: relative;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
}

/* Обёртка под зону клика тумбнейлов (галерея desktop расширяет колонку padding’ом под тултип) */
.pc-hlsvideos__thumbs-hitbox {
    display: block;
    width: 100%;
    min-height: 0;
    overflow: visible;
}

.pc-hlsvideos__thumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Перебивает .article-content ul (padding слева у списков в материале) */
.article-content .pc-hlsvideos ul.pc-hlsvideos__thumbs-list {
    padding-left: 0;
    padding-inline-start: 0;
    margin-left: 0;
}

.pc-hlsvideos__thumb {
    width: 100%;
    position: relative;
    display: block;
    float: left;
    clear: left;
    cursor: default;
}

.pc-hlsvideos__thumb:not(.pc-hlsvideos__thumb--current) {
    cursor: pointer;
}

.pc-hlsvideos__thumb-link {
    display: flex;
    width: 100%;
}

.pc-hlsvideos__thumb--current .pc-hlsvideos__thumb-link {
    cursor: default;
}

.pc-hlsvideos__thumbs .pc-hlsvideos__thumb-img {
    background-position: center;
    background-size: cover;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    isolation: isolate;
}

/* Затемнение только у невыбранных; выбранный — чистый; hover — без затемнения */
.pc-hlsvideos__thumb-img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    background-color: transparent;
    transition: background-color 0.25s ease;
}

.pc-hlsvideos__thumb:not(.pc-hlsvideos__thumb--current) .pc-hlsvideos__thumb-img::before {
    background-color: rgba(0, 0, 0, 0.38);
}

.pc-hlsvideos__thumb--current .pc-hlsvideos__thumb-img::before {
    background-color: transparent;
}

.pc-hlsvideos__thumb:not(.pc-hlsvideos__thumb--current):hover .pc-hlsvideos__thumb-img::before {
    background-color: transparent;
}

/* Тултип названия ролика; desktop — слева от тумбнейла (right: 100% + 10px), по вертикали по центру */
.pc-hlsvideos__thumb-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    left: auto;
    transform: translateY(-50%);
    z-index: 40;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 10px;
    width: max-content;
    max-width: 300px;
    min-width: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.75rem;
    line-height: 1.35;
    color: #fff;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    background: rgba(24, 24, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pc-hlsvideos__thumb:not(.pc-hlsvideos__thumb--current):hover .pc-hlsvideos__thumb-tooltip {
    visibility: visible;
    opacity: 1;
}

.pc-hlsvideos__thumb-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pc-hlsvideos__thumb:not(.pc-hlsvideos__thumb--current):hover .pc-hlsvideos__thumb-icon,
.pc-hlsvideos__thumb:not(.pc-hlsvideos__thumb--current) .pc-hlsvideos__thumb-link:hover .pc-hlsvideos__thumb-icon {
    opacity: 1;
}

.pc-hlsvideos__thumb--current .pc-hlsvideos__thumb-icon,
.pc-hlsvideos__thumb--current:hover .pc-hlsvideos__thumb-icon,
.pc-hlsvideos__thumb--current .pc-hlsvideos__thumb-link:hover .pc-hlsvideos__thumb-icon {
    opacity: 0 !important;
    visibility: hidden;
}

/* Без Font Awesome — строго круг (без % max — flex иначе сплющивает) */
.pc-hlsvideos__thumb-play {
    display: block;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.58);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.pc-hlsvideos__thumb-play::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-36%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.pc-hlsvideos__nav {
    position: absolute;
    top: 41%;
    z-index: 4;
    cursor: pointer;
    display: block;
}

.pc-hlsvideos__nav--prev {
    left: 0;
}

.pc-hlsvideos__nav--next {
    right: 0;
}

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

.pc-hlsvideos__caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    margin: auto;
    cursor: default;
    background-color: rgba(0, 0, 0, 0.34);
    pointer-events: none;
}

.pc-hlsvideos__caption-inner {
    width: 100%;
}

.pc-hlsvideos__caption-title {
    margin: 0;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .pc-hlsvideos__nav {
        display: none;
    }

    .pc-hlsvideos__thumb {
        border: 6px solid rgba(36, 36, 36, 1);
    }

    /*
     * Галерея: промо в потоке задаёт высоту layout; тумбнейлы absolute top/bottom —
     * иначе flex даёт высоту строки = max(плеер, список) и скролл не появляется.
     */
    .pc-hlsvideos--gallery .pc-hlsvideos__layout {
        display: block;
        padding-right: 200px;
        overflow: visible;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__promo {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
    }

    /*
     * Колонка шире контента тумбнейлов: слева padding под тултип (иначе при overflow-y: auto
     * ось X становится auto и тултип обрезается). Клики в «полке» не перехватываем.
     * Ширина «полки» = max-width тултипа (300px) + зазор.
     */
    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        box-sizing: content-box;
        width: 200px;
        max-width: none;
        padding-left: 324px;
        float: none;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(95, 95, 95, 0.98) rgb(24, 24, 24);
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs-hitbox {
        width: 200px;
        max-width: 200px;
        margin-left: auto;
        min-height: 100%;
        overflow: visible;
        pointer-events: auto;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs::-webkit-scrollbar {
        width: 8px;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs::-webkit-scrollbar-track {
        background: rgb(24, 24, 24);
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs::-webkit-scrollbar-thumb {
        background: rgba(95, 95, 95, 0.98);
        border-radius: 4px;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs::-webkit-scrollbar-thumb:hover {
        background: rgba(125, 125, 125, 0.98);
    }
}

@media screen and (max-width: 767px) {
    .pc-hlsvideos__root {
        padding: 0;
        margin: 0;
    }

    .pc-hlsvideos__stage {
        background-color: rgba(24, 24, 24, 1) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .pc-hlsvideos__caption-title {
        color: rgba(255, 255, 255, 1) !important;
        padding: 10px;
    }

    .pc-hlsvideos__nav-icon {
        font-size: 1.875em;
        color: rgba(255, 255, 255, 1) !important;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__caption:not(.pc-hlsvideos__track) {
        background-color: rgba(30, 30, 30, 1);
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__caption.pc-hlsvideos__track {
        background-color: transparent !important;
    }
}

@media only screen and (max-width: 767px) {
    .pc-hlsvideos--gallery .pc-hlsvideos__layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        height: auto !important;
        overflow: visible;
        padding-right: 0 !important;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__promo {
        width: 100% !important;
        order: 1;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs {
        display: block !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        float: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        order: 2;
        margin-top: 12px;
        overflow: visible;
        padding-left: 0 !important;
        box-sizing: border-box !important;
        pointer-events: auto !important;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs-hitbox {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        min-height: 0 !important;
        pointer-events: auto !important;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs-list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        height: auto !important;
        max-height: none !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(95, 95, 95, 0.98) rgb(24, 24, 24);
        padding: 0 0 8px;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs-list::-webkit-scrollbar {
        height: 8px;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs-list::-webkit-scrollbar-track {
        background: rgb(24, 24, 24);
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs-list::-webkit-scrollbar-thumb {
        background: rgba(95, 95, 95, 0.98);
        border-radius: 4px;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs-list::-webkit-scrollbar-thumb:hover {
        background: rgba(125, 125, 125, 0.98);
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumb {
        float: none !important;
        flex: 0 0 auto;
        width: auto !important;
        clear: none !important;
        border-width: 2px;
    }

    .pc-hlsvideos--gallery .pc-hlsvideos__thumbs .pc-hlsvideos__thumb-img {
        width: 148px;
        flex-shrink: 0;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    /* Мобильная лента: тултип не показываем */
    .pc-hlsvideos--gallery .pc-hlsvideos__thumb-tooltip {
        display: none !important;
    }
}

@media only screen and (max-width: 470px) {
    /*
     * Выйти из горизонтальных полей контейнера материала (~12px): полная ширина вьюпорта
     * и отрицательные маржины.
     */
    .pc-hlsvideos {
        overflow-x: clip;
        width: 100vw !important;
        margin-left: -12px;
        margin-right: -12px;
        box-sizing: border-box;
    }

    .pc-hlsvideos > .pc-hlsvideos__block-header {
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .pc-hlsvideos__stage--bleed {
        position: relative;
        left: 50%;
        width: 100vw;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
        transform: translate3d(-50%, 0, 0);
        box-sizing: border-box;
    }

    @supports (width: 100dvw) {
        .pc-hlsvideos__stage--bleed {
            width: 100dvw;
        }
    }
}
