/* Page styles for analysis.md (.analysis-*) — extracted verbatim from the
   page's <style> block (REFACTOR_PLAN §4). Loaded globally via the head in
   observablehq.config.js; class names are page-prefixed so they can't leak. */

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .analysis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
