.news-list-container {
    background-image: url("../img/bg/news_bg.jpg");
    min-height: 1200px;
    background-repeat: repeat;
    background-position: center;
}

.masonry {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

}

.masonry .column-container {
    flex: 1 1 0;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.column-item{
    cursor: pointer;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}
.column-item img{
    width: 100%;
}

.column-item:hover{
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 30%);
}
.column-item .news-title{
    padding-left: 15px;
    padding-top: 15px;
    font-weight: 600;
    color: #0a0a0a !important;
}
.column-item a{
    text-decoration: none;
}
.column-item .news-title p{
    margin-bottom: 6px;
}