/* ===== 文章详情页特有样式 ===== */

/* 文章标题（置于右栏中） */
.article-title {
    font-size: 36px;
    margin: 0 0 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

/* 发布日期 + 社交分享行 */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 0;
}
.post-date {
    font-size: 14px;
    color: #888;
}
.article-share-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.article-share-icons span {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
    font-size: 14px;
}
.article-share-icons a {
    color: #666;
    font-size: 18px;
    transition: color 0.3s;
}
.article-share-icons a:hover {
    color: #e67e22;
}

/* 标题下方分割线 */
.article-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0 0 25px;
}

/* You May Also Like 列表 */
.you-may-like {
    margin-bottom: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}
.you-may-like h4 {
    font-size: 18px;
    margin: 0 0 12px;
    color: #e67e22;
    font-weight: 600;
}
.you-may-like ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.you-may-like ul li {
    padding: 0 0 0 12px;
    font-size: 16px;
}
.you-may-like ul li a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}
.you-may-like ul li a:hover {
    color: #e67e22;
}

/* 文章正文 */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-top: 40px;
}
.article-body h3 {
    font-size: 20px;
    margin: 25px 0 10px;
    padding-left: 20px;
    position: relative;
    font-weight: 600;
}
.article-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #e67e22;
    border-radius: 1px;
}
.article-body h4 {
    font-size: 18px;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .article-title {
        font-size: 22px;
    }
}