/* ==============================================
   文章详情页样式（命名空间：article-detail）
============================================== */
.article-detail-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.article-detail-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.article-detail-hero img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.article-detail-hero-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
}

.article-detail-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-detail-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    opacity: 0.9;
}

.article-detail-player {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}


.article-detail-player-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.article-detail-content {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.article-detail-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-main);
    white-space: pre-wrap;
}

.article-detail-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.article-detail-action-btn {
    display: inline-block;
    padding: 8px 12px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.article-detail-action-btn:hover {
    background: var(--color-primary-hover);
}

@media (max-width: 768px) {
    .article-detail-title {
        font-size: 20px;
    }
    .article-detail-hero img {
        height: 200px;
    }
}
