/* Five referral summary cards after removing the commission-mode field. */
.combined-promo .promo-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.combined-promo .promo-stats > div:last-child {
  border-right: 0;
}

@media (min-width: 761px) and (max-width: 1024px) {
  .combined-promo .promo-stats {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .combined-promo .promo-stats > div {
    grid-column: span 2;
  }

  .combined-promo .promo-stats > div:nth-last-child(-n + 2) {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .combined-promo .promo-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .combined-promo .promo-stats > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .combined-promo .promo-stats {
    grid-template-columns: 1fr !important;
  }

  .combined-promo .promo-stats > div:last-child {
    grid-column: auto;
  }
}
