/* =============================================
   RunParticle — FAQ Page Styles
   ============================================= */

/* --- Group headings (match CLI reference style) --- */

.faq-group {
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.faq-group .group-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

/* --- FAQ items --- */

.faq-item {
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.faq-question {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
}

.faq-answer p code {
    font-size: 0.85em;
}

/* --- Numbered steps --- */

.faq-steps {
    list-style: none;
    counter-reset: faq-step;
    padding: 0;
    margin: 0 0 20px 0;
}

.faq-steps li {
    counter-increment: faq-step;
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 300;
}

.faq-steps li::before {
    content: counter(faq-step);
    position: absolute;
    left: 0;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--accent-subtle);
    border: 1px solid rgba(0, 255, 136, 0.15);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
}

.faq-steps li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-steps li code {
    font-size: 0.85em;
}
