.news-item{

    background: rgba(255,255,255,1);
    box-shadow: 0 0.25rem 0.875rem 0 rgb(185 185 185 / 10%);
    padding: 20px 10px;

}
.news-item:hover{
    box-shadow: 0 0.375rem 1.25rem 0 rgb(129 225 237 / 30%);

    transition: all .2s;
}

.news-item > .item-main{

    padding-left: 20px;
    text-align: left;
}
.news-item > .item-img > img {
    width: 100%;
    transition:all 0.2s;
}
.news-item > .item-title {
    margin-top:20px;
    text-align: left;
    font-weight:500;
    font-size:14px;
    color:rgba(9,15,33,1);
    line-height:1.875rem;
}
.news-item:hover .item-title {
 color: #d7000f;
}

.news-item:hover .item-content {
    color: #9b9b9b;
}


.news-item .item-content {
   margin-top: 15px;
    font-size: 15px;
}
