/* Article Page Styles */
.article-page { padding: 3rem 0; background: var(--background-color); }
.article-full { max-width: 900px; margin: 0 auto; background: var(--card-bg); border-radius: 12px; padding: 3rem; box-shadow: var(--shadow-md); }
.article-header { margin-bottom: 2rem; }
.article-category-badge { display: inline-block; padding: 4px 12px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; border-radius: 4px; color: white; margin-bottom: 1rem; }
.article-title { font-family: var(--font-primary); font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--text-color); }
.article-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: var(--text-muted); flex-wrap: wrap; }
.article-meta .author { font-weight: 600; color: var(--primary-color); }
.article-image-wrapper { margin: 2rem 0; }
.article-image { width: 100%; height: auto; border-radius: 8px; }
.image-caption { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; font-style: italic; }
.article-content { font-size: 1.1rem; line-height: 1.8; color: var(--text-color); }
.article-content .lead { font-size: 1.25rem; font-weight: 500; color: var(--primary-color); margin-bottom: 1.5rem; }
.article-content p { margin-bottom: 1.5rem; }
.article-content h2 { font-family: var(--font-primary); font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--primary-color); }
.article-content h3 { font-family: var(--font-primary); font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--text-color); }
.article-content ul, .article-content ol { margin-left: 2rem; margin-bottom: 1.5rem; }
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-quote { border-left: 4px solid var(--accent-color); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; font-size: 1.2rem; color: var(--text-muted); }
.article-quote cite { display: block; margin-top: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--primary-color); }
.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); align-items: center; }
.tags-label, .share-label { font-weight: 600; color: var(--text-muted); margin-right: 0.5rem; }
.tag { padding: 4px 12px; background: var(--background-color); color: var(--primary-color); font-size: 0.85rem; border-radius: 20px; transition: all 0.3s ease; }
.tag:hover { background: var(--primary-color); color: white; }
.article-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.article-share { display: flex; align-items: center; gap: 0.5rem; }
.share-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; font-size: 1rem; transition: all 0.3s ease; }
.share-link.facebook { background: #1877f2; }
.share-link.twitter { background: #1da1f2; }
.share-link.whatsapp { background: #25d366; }
.share-link.linkedin { background: #0077b5; }
.share-link:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.article-nav { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary-color); font-weight: 600; transition: all 0.3s ease; }
.back-link:hover { color: var(--secondary-color); }
@media (max-width: 768px) { .article-full { padding: 1.5rem; } .article-title { font-size: 1.8rem; } .article-content { font-size: 1rem; } }
