/* Prose/doc styles for the hosting help pages. Loaded alongside app.css
   (which provides nav, footer, buttons, and the theme variables). */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.doc .eyebrow { margin-bottom: 12px; }
.doc h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 600; color: var(--text-hi); line-height: 1.1; margin-bottom: 16px; }
.doc .lead { font-size: 1.1rem; line-height: 1.7; color: var(--muted); margin-bottom: 36px; }
.doc h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--text-hi); margin: 40px 0 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.doc h3 { font-size: 1.1rem; font-weight: 600; color: var(--gold); margin: 26px 0 10px; }
.doc p { font-size: 1rem; line-height: 1.75; color: var(--text); margin-bottom: 16px; }
.doc a { color: var(--gold); text-decoration: none; }
.doc a:hover { text-decoration: underline; }
.doc ul, .doc ol { margin: 0 0 18px 22px; color: var(--text); }
.doc li { font-size: 1rem; line-height: 1.7; margin-bottom: 10px; }
.doc ol { counter-reset: step; list-style: none; margin-left: 0; }
.doc ol > li { position: relative; padding-left: 44px; margin-bottom: 18px; }
.doc ol > li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--bg); font-family: 'Cormorant Garamond', serif; font-weight: 600; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.doc code { background: #20180f; border: 1px solid var(--border); border-radius: 5px; padding: 2px 6px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.88em; color: var(--gold-soft); word-break: break-all; }
.doc .note { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 10px; padding: 16px 20px; margin: 22px 0; }
.doc .note p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.doc .note strong { color: var(--text-hi); }
.doc .settings-table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 0.95rem; }
.doc .settings-table th, .doc .settings-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.doc .settings-table th { color: var(--muted); font-weight: 600; width: 40%; }
.doc .settings-table td { color: var(--text-hi); }
.doc .settings-table code { background: none; border: none; padding: 0; }
.doc .back { display: inline-block; margin-bottom: 28px; font-size: 0.9rem; color: var(--muted); }
.doc .back:hover { color: var(--gold); }
.help-cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 8px; }
.help-card { display: block; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-decoration: none; transition: border-color .2s, transform .2s; }
.help-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.help-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--text-hi); margin: 0 0 8px; border: none; padding: 0; }
.help-card p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.6; }
