/* Keep budget cards within small phone screens, including long unknown values. */
.stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat { min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
