/* ── Article Layout ────────────────────────────────── */
.article {
    padding: 48px 0 80px;
}

.article-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Breadcrumb ───────────────────────────────────── */
.breadcrumb {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.breadcrumb a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb .sep {
    margin: 0 8px;
    color: var(--border-light);
}

/* ── Article Header ───────────────────────────────── */
.article-header {
    margin-bottom: 48px;
}

.article-header h1 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.article-lede {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dim);
}

/* ── Article Body ─────────────────────────────────── */
.article section {
    margin-bottom: 36px;
}

.article h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--text);
}

.article h3 {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    margin-top: 20px;
}

.article p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.article strong {
    font-weight: 500;
    color: var(--text);
}

.article section a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: border-color 0.2s, color 0.2s;
}

.article section a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.article ul, .article ol {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.article li {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.article blockquote {
    border-left: 2px solid var(--accent);
    padding-left: 16px;
    margin: 20px 0;
}

.article blockquote p {
    color: var(--text-dim);
    font-style: italic;
}

.article code {
    font-family: var(--font-mono);
    font-size: 13px;
    background: var(--bg-card);
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid var(--border);
}

.article pre {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px;
    margin: 16px 0;
    overflow-x: auto;
}

.article pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-section {
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

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

.faq-item h3 {
    text-transform: none;
    letter-spacing: normal;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    margin-top: 0;
}

.faq-item p { margin-bottom: 0; }

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: 8px;
    padding: 24px;
}

.cta-section h2 {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 10px;
}

.cta-section a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-border);
    transition: border-color 0.2s;
}

.cta-section a:hover { border-color: var(--accent); }

/* ── Article Footer ──────────────────────────────── */
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-line {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.author-line a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.author-line a:hover { color: var(--accent); }

.author-line .sep {
    margin: 0 6px;
    color: var(--border-light);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 480px) {
    .article-header h1 { font-size: 28px; }
    .article h2 { font-size: 22px; }
}
