/* ── modules/icon-row/style.css ── */
/* Icon row with labels — supports both static <img> and animated <object> SVGs */

/* PSR icon row */
.sPSR-col-icons {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.sPSR-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 108px;
  overflow: visible;
}

.sPSR-icon-wrap img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: flex-start;
}

/* Label alignment after static img */
.sPSR-icon-wrap img + .sPSR-icon-lbl {
  align-self: flex-start;
  margin-left: -18px;
  width: 108px;
}

/* Animated SVG via <object> */
.sPSR-icon-wrap object {
  height: 72px;
  width: auto;
  flex-shrink: 0;
  display: block;
  align-self: flex-start;
}

/* Label alignment after animated object */
.sPSR-icon-wrap object + .sPSR-icon-lbl {
  align-self: flex-start;
  margin-left: -23px;
  width: 108px;
}

.sPSR-icon-lbl {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: #0E122F;
  text-align: center;
  line-height: 18px;
  letter-spacing: -0.1px;
  font-feature-settings: 'zero' 1, 'ss08' 1;
  -webkit-font-smoothing: antialiased;
}

/* Steps V2 icons */
.sSV-icon {
  position: absolute;
  top: 772px;
  width: 75px;
  height: 75px;
  object-fit: contain;
  z-index: 2;
}

/* SV4 large icons */
.sSV4-icon {
  position: absolute;
  top: 600px;
  width: 75px;
  height: 75px;
  object-fit: contain;
  z-index: 2;
}

/* Step text label under icon */
.sSV-step-text {
  position: absolute;
  top: 859px;
  color: #0E122F;
  text-align: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.1px;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
