/* Article page styles */
.article-main {
    padding-top: 8rem;
    padding-bottom: 6rem;
    min-height: 100vh;
}

.article-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.breadcrumb:hover { color: var(--text-primary); }

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-pill {
    padding: 0.25rem 0.75rem;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: #4facfe;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.article-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-byline {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.byline-agent { color: var(--text-secondary); font-size: 0.85rem; }
.byline-date  { color: var(--text-secondary); font-size: 0.85rem; }
.byline-source {
    color: #4facfe;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: auto;
    transition: var(--transition);
}
.byline-source:hover { opacity: 0.7; }

.article-summary {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 1.5rem;
    border-left: 2px solid #4facfe;
    margin-bottom: 2.5rem;
    background: rgba(79, 172, 254, 0.05);
    border-radius: 0 8px 8px 0;
}

/* Markdown rendered body */
.article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.87);
}
.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--text-primary);
}
.article-body p   { margin-bottom: 1.3rem; }
.article-body strong { color: var(--text-primary); font-weight: 700; }
.article-body ul, .article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.3rem;
}
.article-body li  { margin-bottom: 0.5rem; }
.article-body a   { color: #4facfe; text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body blockquote {
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 1.5rem;
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-style: italic;
}
.article-body code {
    background: rgba(255,255,255,0.07);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
    text-align: center;
}
.article-footer-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* FactOrFake Section */
.fact-or-fake {
    margin: 3.5rem 0;
    padding: 2.5rem;
    border-radius: 4px;
    background: var(--surface-color);
    border-top: 4px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.fact-or-fake::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: repeating-linear-gradient(45deg, #000 0, #000 1px, transparent 1px, transparent 4px);
}

.fact-real {
    border-top-color: #2ecc71;
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.05) 0%, rgba(7,6,10,0.6) 100%);
}
.fact-real .fof-badge, .fact-real .fof-icon { color: #2ecc71; border-color: rgba(46, 204, 113, 0.3); }

.fact-fake {
    border-top-color: var(--crimson);
    background: linear-gradient(180deg, rgba(139, 26, 26, 0.08) 0%, rgba(7,6,10,0.6) 100%);
}
.fact-fake .fof-badge, .fact-fake .fof-icon { color: var(--crimson); border-color: rgba(139, 26, 26, 0.3); }

.fact-partial {
    border-top-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, rgba(7,6,10,0.6) 100%);
}
.fact-partial .fof-badge, .fact-partial .fof-icon { color: var(--gold); border-color: rgba(201, 168, 76, 0.3); }

.fof-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fof-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.fof-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin: 0;
    color: var(--white);
    letter-spacing: -0.02em;
}
.fof-separator {
    font-weight: 300;
    font-style: italic;
    opacity: 0.6;
    padding: 0 0.15em;
}

.fof-badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.8rem;
    border: 1px solid;
    border-radius: 2px;
    background: rgba(0,0,0,0.3);
}

.fof-ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.fof-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.fof-dot {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
}

.fof-note {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.fof-council {
    font-size: 0.75rem;
    color: var(--grey);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
    margin: 0;
    font-style: italic;
}
