.news{
    padding: 60px 0px;
    padding-top: 0px;
}

.news-list-items{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.items-news{
    font-size: 16px;
    width: calc((100vw - 410px) / 4);
    height: 550px;
    display: inline-block;
    padding: 8px;
    box-sizing: border-box;
}

    .items-news-content{
        background-color: #fff;
        height: 100%;
        position: relative;
    }
    
        .items-news-image{
            height: 260px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transition: height 0.3s;
        }
        
        .items-news-desk{
            padding: 15px 35px;
            box-sizing: border-box;
        }
        
            .ind-name{
                margin-bottom: 10px;
            }
            
                .ind-name-type{
                    color: #9F9F9F;
                    font-size: 18px;
                    margin-bottom: 5px;
                }
                
                .ind-name-title{
                    color: #201D1D;
                    font-weight: bold;
                    font-size: 22px;
                    margin-bottom: 15px;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                
                .ind-name-text{
                    color: #9F9F9F;
                    font-size: 18px;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                
                    .ind-name-text p {
                        padding: 0px;
                        margin: 0px;
                    }
                
        .ind-readmore{
            color: #118AE5;
            font-size: 20px;
            display: inline-block;
            cursor: pointer;
            position: absolute;
            bottom: 25px;
        }
        
@media only screen and (max-width: 1300px){

    .items-news {
        width: 33.33333%;
        margin-bottom: 20px;
    }

}
        
@media only screen and (max-width: 768px){

    .news {
        padding: 20px 0px;
    }
    
    .items-news {
        font-size: 16px;
        width: 100%;
        height: 550px;
        display: inline-block;
        padding: 8px;
        box-sizing: border-box;
    }
    
    .items-news-desk{
        padding: 15px 25px;
    }
    
}