/* De scène is de achtergrond van de hele kaart */
.stage {
  position: relative;
  height: 450px;
  padding: 24px 29px;
}

.viz {
  position: absolute;
  inset: 0;
}

/* Alleen de plek in de stapelvolgorde, de stijl komt uit card.css. */
.stage h3 {
  position: relative;
  z-index: 1;
}

.results {
  position: absolute;
  left: 29px;
  right: 29px;
  bottom: 25px;
  z-index: 1;
  display: grid;
  gap: 17px;
}

.rrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  height: 46px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--c-ink);
  border-radius: 10px;
  padding: 0 19px;
}

.rrow .lbl {
  font-size: 17px;
  line-height: 1.3
}

.rrow .val {
  font: 700 17px var(--fh);
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums
}

.disclaim {
  font-size: 12px;
  margin-top: -6px;
  text-align: center;
}