.news-top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.news-top h2{
	margin-bottom: 0;
}
.news-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0 20px;
}
.news-list .news-item{
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    gap: 10px 0;
}
.news-list .news-item a.picture{
    font-size: 0;
    position: relative;
    height: 0;
    padding-top: 66%;
    margin-bottom: 20px;
    display: block;
}
.news-list .news-item a.picture img.preview_picture{
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
}
.news-list .news-item .name a{
	color: #bd0a1d;
	text-decoration: none;
}
.news-list .news-item .date-time {
    color: #8b8b8b;
}
.news-list .news-item .buttons{
    margin-top: auto;
}
@media (max-width: 960px){
    .news-list{
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        justify-content: stretch;
        grid-gap: 50px;
    }
    .news-list .slick-track {
        display: flex !important;
        align-items: stretch;
        margin-bottom: 20px;
    }
    .news-list .slick-slide {
        height: auto !important;
    }
    .news-list .news-item{
        display: flex!important;
        margin: 0 10px;
    }
    .news-list .slick-arrow{
        width: 50px;
        height: 50px;
        margin-top: -25px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        display: block;
        z-index: 1;
        cursor: pointer;
        border-radius: 50%;
        font-size: 0;
        color: transparent;
        background: #fff url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2220px%22%20height%3D%227px%22%20%20viewBox%3D%220%200%2020%207%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill%3D%22%23222%22%20d%3D%22M65%201250.5l-5%203.5v-7zm-20-1h15v2H45z%22%20transform%3D%22translate%28-45%20-1247%29%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center center;
        border: none;
    }
    .news-list .slick-prev{
        left: 30px;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        background-position: 50% 49%;
        box-shadow: 0 -1px 5px 0px rgba(0, 0, 0, 0.2);
    }
    .news-list .slick-next{
        right: 30px;
        box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
    }
    .news-list .slick-dots{
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .news-list .slick-dots li{
        margin: 0 9px;
    }
    .news-list .slick-dots li button{
        text-indent: -9999px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        display: block;
        width: 12px;
        height: 12px;
        border: 1px solid #d9d9d9;
        background-color: #fff;
        outline: none;
        padding: 0;
    }
    .news-list .slick-dots li button:hover{
        border-color: #222;
    }
    .news-list .slick-dots li.slick-active button{
        background-color: #bd0a1d;
        border-color: #bd0a1d;
    }
}