/* ==========================================================================
   Article Page Specific Styles
   ========================================================================== */

.article-container {
    max-width: 1000px; /* Wider content area */
    padding: 2rem 15px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 2rem auto;
}

.article-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.article-header h1 {
    color: var(--accent);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.article-meta {
    color: var(--muted);
    font-size: 0.95rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content figure {
    margin: 2rem 0;
    text-align: center;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-content figcaption {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #555;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
}

.article-content ul {
    margin-bottom: 1.5rem;
    list-style-type: none;
    padding-left: 1rem;
}

.article-content ul li {
    margin-bottom: 0.5rem;
}

.article-content ul li i {
    color: var(--primary);
    margin-right: 8px;
}

.article-references {
    margin-top: 3rem;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
}

.article-references h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.article-references h3 i {
    margin-right: 8px;
}

.article-references ol {
    margin-left: 1.5rem;
    line-height: 1.6;
}

.article-references ol li {
    margin-bottom: 0.5rem;
}

.article-references ol li a {
    color: var(--accent);
    word-break: break-all;
}
