/*
 * AIZXS Theme Single Post Styles
 * 文章单页专用样式
 */

/* 文章标题 */
.entry-title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1F2937;
}

/* 文章内容 */
.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 30px 0 15px;
    color: #1F2937;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* 文章标签 */
.entry-tags {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #E5E7EB;
}

.entry-tags .tag {
    display: inline-block;
    padding: 5px 12px;
    margin: 5px;
    background: #F3F4F6;
    border-radius: 15px;
    font-size: 14px;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.entry-tags .tag:hover {
    background: var(--primary-color);
    color: #fff;
}

/* 文章导航 */
.post-navigation {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    padding: 15px;
    background: #F9FAFB;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* 评论区 */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #F3F4F6;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1F2937;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .single-wrapper {
        padding: 20px 15px;
    }
    
    .entry-title {
        font-size: 24px;
    }
    
    .entry-content {
        font-size: 16px;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
    }
}
