/* Holler — documentation pages */
.doc { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.doc .eyebrow { margin-bottom: 12px; }
.doc h1 { font-size: var(--t-3xl); margin-bottom: 14px; }
.doc .lede { font-size: var(--t-lg); color: var(--ink-soft); margin-bottom: 8px; }
.doc .updated { font-family: var(--font-body); font-size: var(--t-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin: 18px 0 0; }
.doc h2 { font-size: var(--t-xl); margin: 48px 0 14px; }
.doc h3 { font-size: var(--t-lg); margin: 28px 0 8px; }
.doc p { margin: 0 0 16px; color: var(--ink-soft); }
.doc ul { margin: 0 0 16px; padding-left: 22px; color: var(--ink-soft); }
.doc li { margin: 8px 0; }
.doc strong { color: var(--ink); font-weight: 600; }
.doc a { color: var(--brand-600); }
.doc a:hover { text-decoration: underline; }
.doc hr { height: 1px; background: var(--line); border: 0; margin: 48px 0; }

.note { background: var(--brand-50); border: 1px solid var(--brand-200); border-left: 3px solid var(--brand-500); border-radius: var(--r-sm); padding: 16px 18px; margin: 0 0 22px; }
.note p:last-child { margin-bottom: 0; }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card { display: block; padding: 20px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); transition: transform .15s var(--ease), border-color .15s var(--ease); }
.card:hover { transform: translateY(-2px); border-color: var(--brand-300); text-decoration: none; }
.card .t { font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.card .d { font-size: var(--t-sm); color: var(--muted); }

.faq details { border-top: 1px solid var(--line); padding: 6px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 2px; font-family: var(--font-display); font-weight: 600; font-size: var(--t-lg); display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-600); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq .answer { padding: 0 2px 18px; color: var(--ink-soft); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 0; }
.btn-row .btn { box-shadow: none; background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-row .btn:hover { box-shadow: inset 0 0 0 1.5px var(--brand-400); background: var(--brand-50); transform: none; }
