/**
 * Films Playlist block
 * Featured video stage + selectable playlist. Colors follow the global palette.
 */

/* Lift content above the .textured__bg overlay, which only targets .container-fluid globally */
.films-playlist .container {
    position: relative;
    z-index: 2;
}

.films-playlist__head {
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 25px;
}

.films-playlist__head p {
    color: #d7e3ef;
}

.films-playlist__description.is-empty {
    display: none;
}

.films-playlist__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

/**
 * Stage
 */

.films-playlist__stage {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background: #001830;
}

.films-playlist__poster {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.films-playlist__poster.is-active {
    opacity: 1;
    visibility: visible;
}

.films-playlist__scrim {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 24, 48, 0.15) 0%, rgba(0, 24, 48, 0.7) 100%);
}

.films-playlist__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #001830;
    font-size: 30px;
    line-height: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.3s;
}

.films-playlist__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    text-align: left;
}

.films-playlist__kicker {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2db7ea;
}

.films-playlist .films-playlist__stage-title {
    padding: 4px 0 0;
    color: #ffffff;
}

.films-playlist__stage iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.films-playlist__stage.is-playing .films-playlist__poster,
.films-playlist__stage.is-playing .films-playlist__scrim,
.films-playlist__stage.is-playing .films-playlist__play,
.films-playlist__stage.is-playing .films-playlist__caption {
    display: none;
}

/**
 * Playlist
 */

.films-playlist__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
}

.films-playlist__arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding-top: 12px;
}

.films-playlist__arrow {
    width: 39px;
    height: 25px;
    padding: 0;
    border: none;
    background: none;
    color: #2db7ea;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.films-playlist__arrow::after {
    font-family: "icomoon";
    font-size: 39px;
    line-height: 0.641em;
}

.films-playlist__arrow--prev::after {
    content: "\e905";
}

.films-playlist__arrow--next::after {
    content: "\e906";
}

.films-playlist__arrow[disabled] {
    opacity: 0.35;
    cursor: default;
}

.films-playlist__item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: "Work Sans", sans-serif;
    text-align: left;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.films-playlist__item.is-active {
    border-color: #2db7ea;
    background: rgba(45, 183, 234, 0.16);
}

.films-playlist__thumb {
    position: relative;
    flex: 0 0 108px;
    height: 66px;
    border-radius: 4px;
    overflow: hidden;
    background: #001830;
}

.films-playlist__duration {
    position: absolute;
    right: 5px;
    bottom: 5px;
    padding: 2px 5px;
    border-radius: 2px;
    background: rgba(0, 24, 48, 0.8);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.films-playlist__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2db7ea;
}

.films-playlist__title {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35em;
    color: #ffffff;
}

/**
 * Footer
 */

.films-playlist__foot {
    padding-top: 25px;
}

.films-playlist .films-playlist__note {
    max-width: 620px;
    margin: 0 auto;
    padding: 16px 0 0;
    font-size: 13px;
    line-height: 1.6em;
    color: #a9bdd1;
}

@media (min-width: 768px) {
    .films-playlist__head {
        padding-bottom: 35px;
    }

    .films-playlist__play {
        width: 74px;
        height: 74px;
        font-size: 36px;
    }

    .films-playlist__caption {
        padding: 22px 24px;
    }

    .films-playlist__foot {
        padding-top: 34px;
    }
}

@media (min-width: 1025px) {
    .films-playlist__grid {
        grid-template-columns: minmax(0, 2.15fr) minmax(260px, 1fr);
        gap: 26px;
    }

    .films-playlist__list {
        flex-direction: column;
        max-height: 520px;
        overflow-x: visible;
        overflow-y: auto;
        padding-right: 4px;
        padding-bottom: 0;
    }

    .films-playlist__item {
        min-width: 0;
    }

    .films-playlist__item:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .films-playlist__play {
        width: 82px;
        height: 82px;
        font-size: 40px;
    }

    .films-playlist__play:hover {
        background: #ffffff;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@media (min-width: 1200px) {
    .films-playlist__head {
        padding-bottom: 40px;
    }

    .films-playlist__title {
        font-size: 15px;
    }
}