/* shared preview card baseline */
@import url("../colors_and_type.css");

html, body {
  margin: 0;
  padding: 0;
  background: var(--bee-white);
  color: var(--bee-ink);
  font-family: var(--bee-font-body);
  -webkit-font-smoothing: antialiased;
}
.card {
  box-sizing: border-box;
  padding: 18px 22px;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.row { display: flex; gap: 10px; align-items: center; }
.col { display: flex; flex-direction: column; gap: 6px; }
.label-xs { font-family: var(--bee-font-ui); font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--bee-fg-muted); }
.spec { font-family: var(--bee-font-mono-spec); font-size: 11px; color: var(--bee-fg-muted); }
.value { font-family: var(--bee-font-ui); font-size: 12px; font-weight: 600; color: var(--bee-ink); }
