/* 首页最新文章区域样式 */
.latest-posts-section {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
}

.latest-posts-section .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    position: relative;
}

.latest-posts-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #e74c3c;
}

.latest-posts-section #posts {
    margin-top: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .latest-posts-section {
        margin: 30px 0;
        padding: 15px 0;
    }
    
    .latest-posts-section .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

/* 确保与现有样式兼容 */
.content .latest-posts-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
