/* ──────────────────────────────────────────────────────────
   smart•builder — Page shell layout
   Réutilisable pour toutes les pages de l'app (accueil + outils).
   Fournit : zone principale scrollable, padding intérieur,
             en-tête de section (h2 + p type "filename").
   À charger après shared/global.css.
   ────────────────────────────────────────────────────────── */

/* ── MAIN (zone scrollable sous le header) ── */
/* Fonctionne dans un body flex column ET dans un grid (workspace). */
.main {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  background: var(--bg);
}
.main-inner {
  padding: 32px 36px;
  width: 100%;
}

/* ── SECTION HEADER (titre + sous-titre de chaque vue) ── */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title-block h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}
.section-title-block p {
  font-family: monospace;
  font-size: 14px;
  color: var(--text-muted);
}
.section-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
}
