/* 文章列表容器 */
.article-container {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #004a9e;
    margin-bottom: 40px;
}

.article-list {
    max-width: 800px;
    margin: 0 auto;
}

.article-item {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.article-item h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.article-item p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.article-item .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #004a9e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.article-item .read-more:hover {
    background: #003366;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .article-item h2 {
        font-size: 20px;
    }

    .article-item p {
        font-size: 14px;
    }
}
