/* ── Article Layout ────────────────────────────────── */
.article {
    padding: 60px 0 80px;
    width: 100%;
}

body:has(.article) {
    align-items: flex-start;
}

.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: 48px;
    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(36px, 6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.article-subtitle {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 300;
    color: var(--text-dim);
    margin-bottom: 24px;
}

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

.article-hook {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    font-style: italic;
}

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

.article h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    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: 24px;
}

.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: 10px;
}

.article ol li {
    padding-left: 4px;
}

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
    background: var(--accent-dim);
    border: 1px solid rgba(232, 165, 35, 0.2);
    border-radius: 10px;
    padding: 28px 28px 24px;
}

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

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

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

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

.faq-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    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;
}

/* ── Footer ───────────────────────────────────────── */
.article-footer {
    margin-top: 48px;
    padding-top: 24px;
    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: 32px; }
    .article h2 { font-size: 24px; }
}
