/* Post 组件 - 币安风格 */

/* 基础容器 - 只保留背景和边框样式，其他由Tailwind处理 */
.article-content-detail {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light, rgba(240, 185, 11, 0.2));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.article-content-detail:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border-dark, rgba(240, 185, 11, 0.4));
}

/* 文章标题 - 自定义 */
.article-title-detail {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}