.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: var(--text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-title {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: block;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-content a {
    color: var(--red);
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content blockquote {
    border-right: 3px solid var(--red);
    padding-right: 1rem;
    margin-right: 0;
    color: var(--text-sub);
    font-style: italic;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--text-sub);
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--red-bright);
}

.back-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transform: scaleX(-1); /* RTL support */
}
