/* Shared frame styles for design-system preview cards.
   Each card is rendered at ~700px wide on the Design System tab.
   Cards have NO outer title/border — the tab adds one. We add
   internal hairlines and padding only. */

@import url('../colors_and_type.css');

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: var(--tracking-tight);
}

.card {
  padding: 28px 32px;
  box-sizing: border-box;
  min-height: 100%;
}

.row { display: flex; align-items: center; gap: 16px; }
.col { display: flex; flex-direction: column; gap: 16px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.swatch {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--fg-muted); }
.ink  { color: var(--fg); }
.dim  { color: var(--fg-muted); }
