.reviewBlock {
    background: var(--color-white);
    padding: 45px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 30px;
}

.reviewBlock .reviewBlock__header {
    color: #29292B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    margin-bottom: 30px;
}

.reviewBlock .reviewBlock__info {
    width: 35%;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.reviewBlock .reviewBlock__preview {
    color: #29292B;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    padding: 7px 0 7px 13px;
    margin-bottom: 20px;
}

.reviewBlock .reviewBlock__preview::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ABB3D1;
}

.reviewBlock .reviewBlock__preview p {
    margin: 0;
}

.reviewBlock .reviewBlock__image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-grow: 1; /* Значение flex-grow задает возможность блока расти на всё свободное пространство */
    min-width: 0;
    min-height: 265px;
}
