/* Preview card shell — fits ~700px wide. Cards have NO outer
   chrome (the design system tab supplies that). They are full-bleed
   bg + a single composition. */
@import url('../fonts/fonts.css');
@import url('../colors_and_type.css');

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  overflow: hidden;
}

.card {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row { display: flex; gap: 12px; align-items: center; }
.col { display: flex; flex-direction: column; gap: 8px; }
.label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.value {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--fg-muted);
}
.name {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}

.swatch {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
