.cba-single-case-presentation-section {
    background-color: var(--cba-single-case-presentation-section-color);
    width: 100vw;
    min-height: 100vh;
}

.cba-single-case-presentation-section:before {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    background-color: var(--cba-single-case-presentation-container-color);
}

.cba-single-case-presentation-section .container {
    background-color: var(--cba-single-case-presentation-container-color);
    width: 100%;
    max-width: 1920px;
}

.cba-single-case-presentation-section .container-image img,
.cba-single-case-presentation-section .container-video img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.cba-single-case-presentation-section .container-video {
    position: relative;
}

.cba-single-case-presentation-section .container-video:not(.autoplay) img {
    transition: opacity .3s ease;
    cursor: pointer;
}

.cba-single-case-presentation-section .container-video:not(.autoplay) img:hover {
    opacity: .4;
}

.cba-single-case-presentation-section .container-video .video-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--cba-single-case-presentation-container-color);
    padding: 12px;
    top: 0;
    left: 0;
}

.cba-single-case-presentation-section .container-video.play .video-wrapper {
    display: block;
}

.cba-single-case-presentation-section .container-video video {
    display: block;
    width: 85%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
}

.cba-single-case-presentation-section .container-video.autoplay video {
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, .2);
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .cba-single-case-presentation-section:before {
        height: 64px;
    }
}

@media screen and (max-width: 980px) {
    .cba-single-case-presentation-section:before {
        height: 4rem;
    }

    .cba-single-case-presentation-section .container-video video {
        width: 100%;
    }
}
