/* 新闻列表（扁平卡片） */
.news-item {
    background: #fff;
    border: var(--surface-border);
    border-radius: 3px;
    padding: 18px 20px;
    margin-bottom: 12px;
    box-shadow: var(--surface-shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}
.news-item:hover { box-shadow: var(--surface-shadow-hover); }
.news-item h2 { font-size: 17px; margin: 0 0 8px; }
.news-item h2 a { color: #333; text-decoration: none; }
.news-item h2 a:hover { color: #1989fa; }
.news-meta { color: #999; font-size: 13px; }
.news-desc { color: #666; font-size: 14px; margin-top: 10px; line-height: 1.7; }

.news-list-ul { list-style: none; margin: 0; padding: 0; }
.news-item--link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.news-item--link .news-item-title {
    display: block;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #333;
}
.news-item--link:hover .news-item-title { color: #1989fa; }

/* 新闻详情 */
.article {
    background: #fff;
    border: var(--surface-border);
    border-radius: 3px;
    padding: 28px 32px;
    box-shadow: var(--surface-shadow);
}
.article h2 { font-size: 22px; margin: 0 0 12px; color: #222; }
.article .meta { color: #666; font-size: 13px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid #eee; }
.article .content { font-size: 15px; line-height: 1.9; color: #444; }
.article .content img { max-width: 100%; }
.article .content blockquote{ padding-left: 10px;}
