.video-review {
    display: flex;
    background: linear-gradient(100.42deg, #0097A7 0%, #14D9EE 100%);
    border-radius: 12px;
}
.video-review__description {
    flex-basis: 38%;
    flex-shrink: 0;
    flex-grow: 1;

    position: relative;
    margin: 28px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.video-review__description-bg-symbol {
    position: absolute;
    right: 44px;
    max-height: 90%;
}
.video-review__description-bg-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(354.5deg, rgba(255, 255, 255, 0.13) 3.91%, rgba(255, 255, 255, 0) 95.98%, rgba(255, 255, 255, 0) 95.98%);
    -webkit-mask-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 1) 100%);
}
.video-review__description-logo {
    height: 30px;
}
.video-review__description-text {
    position: relative;
    z-index: 1;
    margin: 44px;
}
.video-review__description-title {
    margin-top: 20px;
    margin-bottom: 10px;
}
.video-review__description-paragraph {
    margin-bottom: 15px;
}
.video-review__media {
    flex-shrink: 1;
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
}
.video-review__preview-img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
    cursor: pointer;
}
@media (max-width: 1199px) {
    .video-review {
        flex-direction: column;
    }

    .video-review__media {
        margin: 28px;
    }

    .video-review__description + .video-review__media {
        margin-top: 0;
    }
}
@media (max-width: 576px) {
    .video-review__description-bg-mask {
        display: none;
    }

    .video-review__description {
        margin: auto;
    }

    .video-review__description-text {
        margin: 28px;
    }
}


/* new version */
.video-review-new {
    /* remove after the new version is introduction */
    /***/background: transparent;
    /***/border-radius: unset;
    
    display: grid;
    align-items: center;
    grid-template-areas: 
        "img"
        "text";
    gap: 24px;
}

@media all and (min-width: 770px) {
    .video-review-new {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "text img";
    }
}

@media all and (min-width: 1024px) {
    .video-review-new {
        grid-template-columns: 461px auto;
    }
}

.video-review-new .video-review__description {
    /* remove after the new version is introduction */
    /***/display: block;
    /***/margin: 0;
    /***/position: unset;

    grid-area: text;
}
@media all and (max-width: 350px) {
    .video-review-new .video-review__description .default-button {
        width: 100%;
    }
}

.video-review-new .video-review__media {
    grid-area: img;
    border-radius: 12px;
    overflow: hidden;
}

.video-review__preview-img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: auto;
    cursor: pointer;
    object-fit: cover;
}

@media all and (max-width: 770px) {
    .video-review-new .video-review__preview-img {
        max-height: 320px;
    }
}

/* remove after the new version is introduction */
/***/@media (max-width: 1199px) {
    /***/.video-review-new .video-review__media {
        /***/margin: 0;
    /***/}
/***/}