.overview-stats {
  grid-template-columns: repeat(4, 1fr);
}

.overview-stats article,
.overview-stats article:nth-child(3n) {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-stats article:nth-child(4n) {
  border-right: 0;
}

.overview-stats article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.balance-card strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-stats article,
  .overview-stats article:nth-child(3n),
  .overview-stats article:nth-child(4n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .overview-stats article:nth-child(2n) {
    border-right: 0;
  }

  .overview-stats article:last-child {
    border-bottom: 0;
  }
}
