.video-banner-container {
    display: flex;
    align-items: stretch;
    background: #e8fcfa;
    border-radius: 18px;
    max-width: 1317px;
    margin: 0 auto;
    min-height: 220px;
    position: relative;
    margin-top: 4em;
}

.video-banner-text {
    flex: 1 1 0;
    padding: 20px 0 20px 40px;
}

.video-banner-title {
    color: #000;
    font-size: 35px;
    font-weight: bolder;
    margin: 0 0 8px 0;
    line-height: 1.1;
}

.video-banner-title .highlight {
    color: #00c6b7;
}

.video-banner-subtitle {
    color: #00c6b7;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.video-banner-desc {
    color: #393d3d;
    font-size: 16px;
    margin-top: 12px;
    line-height: 1.6;
}

.video-banner-media {
    flex: 0 0 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 340px;
    height: auto;
    align-self: stretch;
}

.video-green-bg {
    background: linear-gradient(to bottom, #02C1A6 0%, #00CD7C 100%);
    border-radius: 20px;
    width: 340px;
    height: 100%;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
}

.video-stamp {
    position: absolute;
    top: 22%;
    right: 13%;
    width: 54px;
    height: 54px;
    z-index: 3;
}

.video-frame {
    position: relative;
    left: 0;
    width: 500px;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    background: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-frame img.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 4;
}

.play-button:hover {
    background: #e0f7f4;
}

.play-icon {
    width: 28px;
    height: 28px;
    display: block;
}

@media (max-width: 1200px) {
    .video-banner-container {
        padding-top: 1em;
        flex-direction: column;
        max-width: 100vw;
    }

    .video-banner-text {
        padding: 24px 16px 8px 16px;
    }

    .video-banner-media {
        flex: 0 0 260px;
        min-width: 0;
        width: 100%;
        justify-content: flex-start;
        position: relative;
        height: 220px;
    }

    .video-green-bg {
        width: 100%;
        max-height: 150px;
        border-radius: 14px;
        right: 0;
        bottom: 0;
        top: unset;
    }

    .video-frame {
        width: 90% !important;
        height: 220px !important;
        left: 5% !important;
    }

    .video-stamp {
        top: 15%;
        right: 8%;
    }
}

@media (max-width: 600px) {

    .video-banner-text {
        padding: 12px 4vw 4px 4vw;
    }

    .video-banner-media {
        flex: 0 0 300px;
        height: 300px;
    }

    .video-frame {
        width: 90%;
        height: 200px;
        left: 5%;
    }

}