/* Help Center article styles — shared by all generated help article pages. */
.article-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    min-height: 100dvh;
}

.article__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    font-size: 0.85rem;
}

.article__breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.article__breadcrumb a:hover { color: var(--green); }
.article__breadcrumb span { color: var(--text-muted); }
.article__breadcrumb .breadcrumb-current { color: var(--text-secondary); }

.article__container { max-width: 780px; margin: 0 auto; }

.article__header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

.article__category-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-display);
    margin-bottom: 16px;
    background: rgba(16, 212, 142, 0.1);
    color: var(--green);
    border: 1px solid rgba(16, 212, 142, 0.2);
}

.article__category-badge--gold {
    background: rgba(240, 185, 11, 0.1);
    color: var(--gold);
    border-color: rgba(240, 185, 11, 0.2);
}

.article__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.article__body { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }

.article__body h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.article__body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.article__body p { margin-bottom: 16px; }
.article__body ul, .article__body ol { margin-bottom: 16px; padding-left: 24px; }
.article__body ul li, .article__body ol li { margin-bottom: 8px; line-height: 1.7; }
.article__body ul li::marker { color: var(--green); }
.article__body ol li::marker { color: var(--green); font-weight: 600; }
.article__body strong { color: var(--text-primary); font-weight: 600; }

.article__body .callout {
    background: rgba(16, 212, 142, 0.06);
    border: 1px solid rgba(16, 212, 142, 0.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}
.article__body .callout--gold { background: rgba(240, 185, 11, 0.06); border-color: rgba(240, 185, 11, 0.15); }
.article__body .callout p:last-child { margin-bottom: 0; }

.article__related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.article__related h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.article__related-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.article__related-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition);
}
.article__related-list a svg { color: var(--green); flex-shrink: 0; transition: transform var(--transition); }
.article__related-list a:hover { color: var(--green); }
.article__related-list a:hover svg { transform: translateX(3px); }

.article__further { margin-top: 24px; font-size: 0.9rem; color: var(--text-muted); }
.article__further a { color: var(--green); text-decoration: none; }
.article__further a:hover { text-decoration: underline; }

.article__footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.article__back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: color var(--transition); }
.article__back:hover { color: var(--green); }
.article__back svg { transition: transform var(--transition); }
.article__back:hover svg { transform: translateX(-3px); }

.article__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition);
}
.article__cta:hover { transform: translateY(-2px); box-shadow: 0 0 20px var(--green-glow); }

@media (max-width: 600px) {
    .article-page { padding: 100px 0 60px; }
    .article__footer { flex-direction: column; align-items: flex-start; }
}
