

/* Start:/bitrix/templates/newsro-a/components/bitrix/news/news-list/bitrix/news.list/.default/style.css?17830712761441*/
.news-list__date {
    
}


.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 3fr));
    gap: 0px;
}

.news-list__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.news-list__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #2f80ed;
}

.news-list__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,.12);
}

.news-list__date {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-list__name {
    color: #222;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    transition: color .3s;
}

.news-list__name:hover {
    color: #2f80ed;
}

.news-list__desc {
    margin-top: 16px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-list__item {
        padding: 20px;
    }

    .news-list__name {
        font-size: 20px;
    }
}
/* End */
/* /bitrix/templates/newsro-a/components/bitrix/news/news-list/bitrix/news.list/.default/style.css?17830712761441 */
