.review_wrapper{
    flex: 0 1 48%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 30px;
    background: var(--black);
    justify-content: space-between;
}
.review_date{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: var(--grey);
}
.review_item{
    display: flex;
    gap: 20px;
    align-items: center;
}
.author_title{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 28px;
    line-height: 132%;
    color: var(--white);
}
.model_price{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: var(--grey);
}
.model_price span{
    font-size: 15px;
}
.review_content{
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 187%;
    color: var(--white);
    height: 95px;
    overflow: auto;
    padding-right: 10px;
}
.review_content::-webkit-scrollbar{
    width: 2px;
}

.review_content::-webkit-scrollbar-thumb{
    background-color: var(--red);
    border-radius: 10px;
}

.review_content::-webkit-scrollbar-track{
    background-color: transparent;
}
.review_item_model{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    text-decoration: none;
}
.review_img_container{
    width: 70px;
    height: 70px;
}
.review_img_container img{
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.review_model_name{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
}

@media (max-width: 1024px) {
    .review_wrapper {
       padding: 20px;
    }
}
@media (max-width: 789px) {
    .review_wrapper {
        flex: 1 1 100%;
    }
    .review_content {
        height: auto;
        padding-right: 0;
    }
}
@media (max-width: 425px) {
    .review_wrapper {
       padding: 15px;
       border-radius: 20px;
       gap: 10px;
    }
    .review_item{
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .review_content{
        font-size: 15px;
        line-height: 160%;
    }
    .review_model_name{
        font-size: 18px;
    }
    .author_title{
        font-size: 20px;
    }
    .model_price{
        font-size: 16px;
    }
}