/* =============================================
   MVPoker - Article Specific Styles
   ============================================= */

.article-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* TL;DR Box */
.tldr-box {
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1rem 2rem;
    margin: 3rem 0;
    border-radius: 0 12px 12px 0;
}

.tldr-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tldr-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-main);
}

.tldr-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Table of Contents */
.toc-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.toc-toggle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.toc-list {
    margin-top: 1rem;
}

.toc-list ul {
    list-style: none;
    padding-left: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--text-muted);
    transition: all 0.2s;
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Article Content Alignment */
.article-content {
    max-width: 820px;
    margin: 0 auto;
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-question {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.faq-question::before {
    content: 'Q:';
    color: var(--primary);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Related Posts */
.related-section {
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Source Section */
.source-section {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    border: 1px dashed var(--border);
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-content {
        font-size: 1.05rem;
    }
}