/* Shared base for all preview cards (700×Nh viewports). */
@import url('../colors_and_type.css');

html, body { margin: 0; padding: 0; background: #fff; }
body {
  width: 700px;
  padding: 24px;
  box-sizing: border-box;
  font-family: var(--font-ui);
  color: var(--text-primary);
}
.row { display: flex; gap: 12px; align-items: stretch; }
.col { display: flex; flex-direction: column; gap: 8px; }
.swatch {
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 12px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
}
.swatch .name { font-size: 12px; font-weight: 600; }
.swatch .hex  { opacity: 0.85; font-family: var(--font-data); font-size: 11px; }
.label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 8px; }
