
/* Author + Fact checker box */
.authorbox{display:grid;grid-template-columns:1fr 1fr;gap:16px;border:1px solid var(--border);border-radius:16px;padding:16px;background:var(--surface);box-shadow:var(--shadow-sm)}
.authorbox .ab{display:grid;grid-template-columns:72px 1fr;gap:14px;align-items:center}
.authorbox .role{display:inline-flex;align-items:center;gap:8px;background:var(--surface-alt);border:1px solid var(--border);padding:6px 10px;border-radius:999px;font-size:12px;font-weight:700;color:var(--text-muted);margin-bottom:6px}
.authorbox .name{font-weight:800}
.authorbox .bio{color:var(--text-muted);font-size:14px}
@media (max-width:800px){.authorbox{grid-template-columns:1fr}.authorbox .ab{grid-template-columns:56px 1fr}}
.callout{padding:10px 12px;border:1px dashed var(--border);border-radius:10px;font-size:13px;color:var(--text-muted)}
