/* Shared base for all design-system preview cards. */
@import url('../colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.card-frame {
  width: 700px;
  padding: 28px;
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.grid { display: grid; gap: 12px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.mono { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.label { font-size: 12px; color: var(--graphite); }

.swatch-tile {
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  height: 96px;
}

.warm-card {
  background: linear-gradient(180deg, #f8f5f1, #f0ece7);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(26,26,26,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
}
