.videos-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #18383C;
}

.video-title em {
    font-size: 24px;
    line-height: 1.4;
    display: block;
}

.videos-section {
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
}

.videos-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

.videos-section .container {
    position: relative;
}

.videos-section__img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 3;
    border-radius: 8px;
}

.videos-section__title {
    position: absolute;
    z-index: 4;
    border-radius: 6px;
    background: #E8E6D4;
    bottom: 20px;
    left: 20px;
    width: max-content;
    padding: 10px 15px;
    gap: 30px;
    display: flex;
}

.videos-section__title h2 {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.videos-section__title b {
    color: var(--color-text-green);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block
}

.video-section__duration {
    padding: 10px;
    border-radius: 6px;
    background: #76824A;

}

.video-section__play {
    background: rgb(0, 161, 231);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-section__play svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.video-reviews__container {
    display: flex;
    gap: 10px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
}

.video-section__play:hover {
    width: 56px;
    height: 56px;
}

.video-section__play:hover svg {
    width: 28px;
    height: 28px;
}

.video-reviews__card {
    display: flex;
    width: calc(33.33333% - 5px);
    position: relative;
    height: 480px;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    flex-direction: column;
    gap: 10px
}

.video-reviews__content {
    margin-top: auto;
    position: relative;
}

.video-reviews__title {
    display: flex;
    position: relative;
    z-index: 10;
    color: #E8E6D4;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: auto;
    margin-bottom: 0;
}

.video-reviews__text {
    position: relative;
    z-index: 10;
    color: #E8E6D4;
    font-size: 16px;
    font-weight: 400;
}

.video-reviews__img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-reviews__about {
}

.video-reviews__wrapper {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.video-reviews__wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-reviews__action {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.video-reviews__card .pause {
    display: none;
}

.video-reviews__card.is-playing .video-reviews__title, .video-reviews__card.is-playing .video-reviews__text, .video-reviews__card.is-playing .play, .video-reviews__card.is-playing .video-reviews__img {
    display: none;
}

.video-reviews__card.is-playing .pause {
    display: inline;
}

.video-reviews__card.is-playing:before, .video-reviews__card.is-playing:after {
    display: none;
}

.video-reviews__retry {
    position: absolute;
    right: 20px;
    bottom: 70px;
    z-index: 10;
    display: none;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(232, 230, 212, 0.6);
    background: rgba(0, 0, 0, 0.5);
    color: #E8E6D4;
    font-size: 14px;
    cursor: pointer;
}

.video-reviews__card.has-error .video-reviews__retry {
    display: inline-block;
}

.video-reviews__card.has-error .play,
.video-reviews__card.has-error .pause {
    display: none;
}

.video-reviews__card.has-error:before,
.video-reviews__card.has-error:after {
    display: none;
}

.video-wrapper {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.video-wrapper iframe {
    height: 100%;
    border-radius: 8px;
    border: none;
}

@media screen and (max-width: 1023px) {
    .video-title {
        font-size: 28px;
        width: 100%;
    }

    .video-title .highlight {
        font-size: 22px;
        margin-top: 15px;
    }

    .videos-section {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        margin: 0;
        overflow: visible;
    }

    .videos-section .container {
        align-items: center;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767.98px) {
    .video-reviews__card {
        aspect-ratio: 1;
    }

    .video-reviews__card.slick-slide.slick-current {
        display: flex !important;
    }

    .videos-section__title {
        position: relative;
        left: auto;
        bottom: auto;
        margin-left: -10px;
        background: transparent;
        width: calc(100% + 20px);
        padding: 10px 0;
        justify-content: space-between;
    }

    .videos-section__title h2,
    .videos-section__title b {
        color: var(--color-white);
        display: inline;
    }

    .video-section__duration {
        display: none;
    }
}
