/* Article Page Container and Card Styles - FIXED */

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.article-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    box-shadow: var(--glass-shadow);
    padding: 60px 80px;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease-out;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.article-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #b3b3b3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.article-content h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background: var(--primary-color);
    margin-right: 15px;
    border-radius: 3px;
    box-shadow: 0 0 10px var(--primary-color);
}

.article-meta i {
    color: var(--primary-color);
}