/* 新闻列表样式 - 用于 page-news.php, archive.php */

/* 新闻网格 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* 新闻卡片 */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-card h3 a:hover {
    color: #0066FF;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .section-title {
        font-size: 24px !important;
    }
}
