/* =========================================================
   НОВОСТИ (карточки в правой колонке)
   ========================================================= */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.news-item {
    background: #fff;
    border: 1px solid var(--kb-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--kb-shadow-xs);
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--kb-shadow);
}

.news-item .news-date {
    font-size: 12px;
    color: var(--kb-muted);
    margin-bottom: 8px;
    display: block;
}

.news-item .news-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--kb-text);
}

.news-item .news-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--kb-text-soft);
}

.news-item .news-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--kb-primary);
    font-weight: 600;
    text-decoration: none;
}