/* AuraOS design tokens — 8px base spacing scale */
:root {
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
}

/* Linear icon container — navy stroke, light gray square */
.card-ic {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(11, 42, 74, 0.06);
  flex-shrink: 0;
  font-size: 0;
}
.card-ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy, #0b2a4a);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
