/* Product Overview — hero stat tiles.
   Built at runtime by overview-hero.js from a plain Markdown list, so the .md
   stays plain text. Net-new styling; the toolkit theme has no stat component. */
.aries-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0.5rem;
}
.aries-stat {
  flex: 1 1 8rem;
  padding: 1rem 1.15rem;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  background: #F8F9FD;
}
.aries-stat__num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.05;
  color: #0E2841;
  overflow-wrap: anywhere;
}
.aries-stat__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #737373;
  overflow-wrap: anywhere;
}

html[data-theme="dark"] .aries-stat { background: #0E2032; border-color: #22344A; }
html[data-theme="dark"] .aries-stat__num { color: #EAF2F9; }
html[data-theme="dark"] .aries-stat__label { color: #8A9BAC; }
