/* Highlight only the numbers */
.rtbl .price-badge .price-num {
  background: #eaf5ff !important;
  color: #0b5ed7 !important;
  font-weight: 700;
  padding: 0 .25rem;
  border-radius: .35rem;
}
.rtbl .price-badge .price-label,
.rtbl .price-badge .price-to,
.rtbl .price-badge .price-currency {
  font-weight: 500;
}
.rtbl .price-badge { white-space: normal; }

/* Mobile layout: stack each token on its own line */
@media (max-width: 576px) {
  .rtbl .price-badge {
    display: inline-grid !important;
    grid-auto-rows: auto;
    gap: .15rem;
    align-items: start;
    justify-items: start;
  }
  .rtbl .price-badge > span {
    display: block !important;
  }
  .rtbl .price-badge .price-num {
    direction: ltr;
  }
  .rtbl .price-badge .price-num.digits-9plus {
    font-size: 0.85em !important;
    line-height: 1.2 !important;
  }
}
