:root {
    --main_color: rgba(3, 78, 162, 1);
    --bg_review_desc: #d8e4f1;
    --bg_review_box: rgba(148, 206, 233, 0.59)
}

#post_list1 .item {
    /* float: left; */
    /* width: -webkit-calc(50% - 29px); */
    width: 100% !important;
    height: auto !important;
    margin: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*border: 1px solid #ddd;*/
    border-radius: 5px;
    display: flex;
    padding: 10px;
    margin: 0 0 40px 0;
    background-color: var(--bg_review_box);
}

#post_list1 .post_img_thb {
    /* flex: 1; */
    background-color: #ddd;
    width: 320px;
    height: 360px;
    max-width: 100%;
    /*346px*/
}

#post_list1 .post_img_thb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#post_list1 .post_content {
    flex: 1;
    margin-left: 15px;

}

#post_list1 .heading-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

#post_list1 .review-content p {
    line-height: 1.8;
    color: var(--main_color);
}

#post_list1 .title {
    color: var(--main_color);
    margin: 0;
}

#post_list1 .category {
    margin: 0;
    color: #595959;
    font-weight: normal;
    /* line-height: 1.8; */
    max-height: 3.6em;
    font-size: 16px;
    overflow: hidden;
    visibility: visible;
    position: static;
}

#post_list1 .review_description {
    background-color: var(--bg_review_desc);
    /*Customer want to change only the text part by the white background and they want to change the text color to blue update 140225 by AM*/
    padding: 20px;
    border-radius: 5px;
}

.review-tag-name {
    background-color: var(--main_color);
    padding: 1vw;
    color: #fff;
    font-weight: 900;
}

@media only screen and (max-width: 1000px) {
    #post_list1 .item {
        flex-direction: column;
        align-items: center;
    }

    #post_list1 .post_content {
        margin-left: 0;
        margin: 10px 0 0 0;
    }
}