/* ========== 时政常识模块 ========== */
.news-header-card {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    color: white;
    box-shadow: var(--shadow-md);
}
.news-header-card h2 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.news-header-card p { font-size: 12px; opacity: 0.9; }

.news-list { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }

.news-date-badge {
    background: linear-gradient(135deg, #FF6B6B, #EE5A5A);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #E74C3C;
    transition: all 0.2s;
}
.news-card.read { opacity: 0.55; border-left-color: #bbb; }
.news-cat-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}
.news-content {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.news-source {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.news-actions { display: flex; justify-content: flex-end; }
.news-btn {
    padding: 6px 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.news-btn.primary { background: #E74C3C; color: white; border-color: #E74C3C; }
.news-btn.primary:hover { background: #C0392B; }
.news-btn:hover:not(.primary) { background: #f5f5f5; }

.news-footer-tip {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    padding: 14px;
    background: #FFF5F5;
    border-radius: var(--radius-md);
}

@media (max-width: 480px) {
    .news-content { font-size: 14.5px; }
}
