.si-bar{
  --si-accent: #FA9244;
  --si-blue:   #135280;
  --si-ink:    #0d1317;

  display: flex;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 0 0 auto;
  flex-direction: column;
  gap: 20px;
}

.si-bar__col{ min-width: 0; }

.si-bar__label{
  letter-spacing: .06em;
 color: #0d1317;
  line-height: 1.2;
  margin-bottom: 6px;
}

.si-bar__value{
  font-size: 16px;
  color: var(--si-ink);
  line-height: 1.25;
}

.si-bar__value--accent{
  font-weight: 800;
  color: var(--si-accent);
}

.si-bar__value--blue{
  font-weight: 800;
  color: var(--si-blue);
}

/* Mobile */
@media (max-width: 720px){
  .si-bar{
    grid-auto-flow: row;
    margin-left: 0;
  }
  .si-bar__value{
    white-space: normal;
  }
}
