@layer sections {
/* ── Admin dashboard ──────────────────────────────────────── */
body.admin-page { overflow: auto; height: auto; }
body.admin-page html { height: auto; }

.admin-layout {
  min-height: 100vh;
  background: var(--bg);
}

.admin-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-header-logo { display: block; flex-shrink: 0; }
.admin-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-fg);
  background: var(--sage-bg);
  padding: 3px 7px;
  border-radius: 4px;
}
.admin-header-spacer { flex: 1; }
.admin-header-link   { font-size: 12px; color: var(--muted); }
.admin-header-link:hover { color: var(--text); }

.admin-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 40px 72px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.admin-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
}
