.list-card{
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    margin-bottom: 1.8rem;
}

.list-card:hover{
    transform: translateY(-5px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.list-card img{
    border-radius: 10px;
}

.list-card h5{
    font-size: 18px;
    margin-top: 15px;
}

.news-content img {
    max-width:100%;
}

/*--------------------------------------------------------------
# news-page
--------------------------------------------------------------*/
.figure img{
    width: 100%;
    display: block;
}

.figure-caption{
    font-size: 16px;
    padding: 10px 20px;
    background-color: #f5f5f5;
    margin-bottom: 20px;
}