.news-card {
    border: solid 1px #E8EAF6;
    box-sizing: border-box;
    border-radius: 6px;
    transition: .5s ease-in-out;
    height: 400px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;


}
body{
    background: #E8EAF6;
}


.news-card:hover {
    border: solid 1px #C5CAE9;
    transform: scale(1.02);
   
}

.description {
    font-size: 16px;
    line-height: 1.3rem;
    color: #262626c9;
}
.card-title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4rem;
}