/* Article Page Styles */
.back-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
}

.article {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.article-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.article h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    line-height: 1.3;
}

.article-section {
    margin-bottom: 32px;
}

.article-section:last-child {
    margin-bottom: 0;
}

.article-section h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-alt);
}

.article-section p {
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-section ul {
    list-style: none;
    margin: 0;
}

.article-section li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-color);
    border-bottom: 1px solid var(--bg-alt);
}

.article-section li:last-child {
    border-bottom: none;
}

.article-section li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .article {
        padding: 24px;
    }

    .article h1 {
        font-size: 1.5rem;
    }

    .article-icon {
        font-size: 2.5rem;
    }
}
