/* ========================================
   HORIZON SUITE — Icon System
   Sprite: assets/svg/horizon/horizon-sprite.svg
   Scoped to HS sections only
======================================== */

:root{
  --hs-accent: #a6ff4a;
  --hs-icon-size: 22px;
}

/* HS icon base */
.hs-svg{
  display:inline-block;
  width: var(--hs-icon-size, 22px);
  height: var(--hs-icon-size, 22px);
  vertical-align: middle;
  flex: 0 0 auto;
  shape-rendering: geometricPrecision;
  overflow: visible;
}

/* Icon wrapper capsule */
.hs-icon-wrap{
  width: calc(var(--hs-icon-size, 22px) + 14px);
  height: calc(var(--hs-icon-size, 22px) + 14px);
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  flex: 0 0 auto;
}

/* Size variants */
.hs-icon-wrap--lg{
  --hs-icon-size: 34px;
}
.hs-icon-wrap--xl{
  --hs-icon-size: 48px;
}

/* Hero emblem (no capsule needed) */
.hs-svg--hero{
  width: 80px;
  height: 80px;
}
