.card{
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--color-border) 85%, transparent);
  background: color-mix(in srgb, var(--bg-card) 72%, transparent);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    0 18px 36px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -3px 12px rgba(69,40,41,0.08);

  padding: 18px;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

.card:hover{
  background: color-mix(in srgb, var(--color-surface-1) 70%, transparent);
  border-color: color-mix(in srgb, var(--color-border) 95%, transparent);
  transform: translateY(-1px);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.60),
    inset 0 -3px 10px rgba(69,40,41,0.10);
}

.cardRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.cardTitle{
  margin:0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.cardSub{
  margin: 6px 0 12px;
  color: color-mix(in srgb, var(--color-text-secondary) 80%, transparent);
  font-weight: 800;
}

.cardBody{
  margin: 6px 0 0;
  color: color-mix(in srgb, var(--color-text-secondary) 85%, transparent);
  font-weight: 700;
  line-height: 1.35;
}

.muted{
  color: color-mix(in srgb, var(--color-text-secondary) 80%, transparent);
  font-weight: 900;
}

.grow{ flex: 1; min-width: 0; }