/* ========== STILI LINK NEL TESTO ========== */
.article-content a, 
.opinion-content a,
.chat-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 123, 0.3);
    transition: all 0.2s ease;
    font-weight: 500;
}

.article-content a:hover, 
.opinion-content a:hover,
.chat-content a:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

/* ========== STILI SPECIFICI CONTENUTI MARKDOWN ========== */

.article-content, .opinion-content {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.article-content p, .opinion-content p { margin-bottom: 1.5rem; }

.article-content h1, .article-content h2, 
.opinion-content h1, .opinion-content h2 {
    color: var(--accent);
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content h3, .opinion-content h3 {
    color: #fff;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.article-content ul, .article-content ol,
.opinion-content ul, .opinion-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.article-content li, .opinion-content li { margin-bottom: 0.5rem; }
.article-content strong, .opinion-content strong { color: #fff; font-weight: 600; }
.article-content hr, .opinion-content hr { border: 0; height: 1px; background: var(--border); margin: 2.5rem 0; }