/* Shared preview-card styles */
@import url('../colors_and_type.css');
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream-50); font-family: var(--font-body); color: var(--fg); }
.card { padding: 28px 32px; min-height: 100%; display: flex; flex-direction: column; gap: 18px; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.swatch { width: 76px; height: 76px; border-radius: 14px; box-shadow: var(--shadow-xs); display: flex; align-items: flex-end; justify-content: flex-start; padding: 8px; }
.swatch small { font-family: var(--font-body); font-size: 10px; font-weight: 600; color: var(--cream-50); letter-spacing: 0.04em; mix-blend-mode: normal; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.swatch.light small { color: var(--fg-strong); text-shadow: none; }
.label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua-500); font-weight: 600; }
.dim { font-size: 12px; color: var(--fg-muted); }
.token { font-family: var(--font-mono, ui-monospace); font-size: 11px; color: var(--fg-muted); }
