/* Article-specific styling for high-engagement blog posts */
.article-page {
    background: #fdfdfd;
}

.article-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
}

.article-header .article-category {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    margin-bottom: 1rem;
    display: block;
}

.article-header .article-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.article-header .article-meta {
    font-size: 0.9rem;
    color: #6d6d6d;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

/* Article Body */
.article-body {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
}

.article-body h2 {
    font-family: var(--f-serif);
    font-size: 2.25rem;
    margin: 4rem 0 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body .lead {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    margin-bottom: 3rem;
}

.tip-box {
    background: #f9f9f7;
    border-left: 4px solid var(--c-accent);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin: 3rem 0;
}

/* Summary Section */
.summary-section {
    background: var(--c-dark-obsidian);
    color: white;
    padding: 3rem;
    border-radius: 24px;
    margin: 5rem 0;
}

.summary-section h3 {
    color: var(--c-gold-metallic);
    margin-bottom: 1rem;
}

/* Related Articles */
.related-articles {
    border-top: 1px solid #eee;
    padding-top: 4rem;
    margin-top: 4rem;
}

.related-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.related-card h4 {
    font-family: var(--f-serif);
    font-size: 1.25rem;
}

/* Table of Contents */
.article-toc {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 3rem 0;
}

.toc-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #888;
}

.article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.article-toc a {
    text-decoration: none;
    color: var(--c-dark-obsidian);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.article-toc a:hover {
    color: var(--c-accent);
}

/* FAQ Section */
.faq-section {
    margin: 5rem 0;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 24px;
}

.faq-section h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--c-dark-obsidian);
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Affiliate Note */
.affiliate-note {
    font-size: 0.85rem;
    color: #888;
    margin: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .article-header .article-title {
        font-size: 2.25rem;
    }
    .article-toc ul {
        flex-direction: column;
        gap: 0.75rem;
    }
}
