/* 首页最新文章区域样式 */
.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;
}

/* === GEO FAQ区块样式 === */
.geo-homepage-faq {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}
.geo-homepage-faq h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}
.geo-faq-item {
    margin-bottom: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
}
.geo-faq-q {
    padding: 14px 18px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.geo-faq-q:hover {
    background: #f0f0f0;
}
.geo-faq-q .arrow {
    font-size: 12px;
    color: #999;
}
.geo-faq-q.active + .geo-faq-a {
    display: block !important;
}
.geo-faq-a {
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    display: none;
}
.geo-faq-a a {
    color: #fc1900;
    text-decoration: none;
}
.geo-faq-a a:hover {
    text-decoration: underline;
}
