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

html, body { background: var(--white); margin: 0; }
body {
  padding: 24px;
  font-family: var(--font-sans);
  color: var(--fg-default);
}
.card-frame { width: 100%; box-sizing: border-box; }

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