/* draft-guides.css — per-set draft landing pages (/draft/<code>/).
   Layout/typography only; all colors via base.css tokens (DESIGN.md: no hardcoded hex). */

.draft-guide .precon-hero { margin-bottom: 1.5rem; }
.draft-guide .precon-hero-meta { color: var(--text-muted); font-size: 0.85rem; }

.draft-section { margin: 2rem 0; }
.draft-section > h2 { margin-bottom: 0.75rem; }
.draft-section > p { color: var(--text-secondary); line-height: 1.7; }
.draft-note { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }

/* Card cells in tables: thumbnail + name */
.draft-card-cell { display: flex; align-items: center; gap: 0.5rem; }
.draft-card-thumb { border-radius: 4px; flex: 0 0 auto; box-shadow: var(--shadow-sm); }

/* Best-commons grid */
.draft-commons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.draft-commons-col {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--btn-radius, 10px);
  padding: 0.85rem 1rem;
}
.draft-commons-col h3 { margin: 0 0 0.5rem; font-size: 0.95rem; }
.draft-commons-col ol { margin: 0; padding-left: 1.1rem; }
.draft-commons-col li { color: var(--text-secondary); margin: 0.2rem 0; }
.draft-rating { color: var(--accent); font-variant-numeric: tabular-nums; font-size: 0.85rem; }

.draft-post-link { margin-top: 1.5rem; }
