/* Hide every scheduled-maintenance block from the 4th onward */
.scheduled-maintenance:nth-of-type(n + 4) {
  display: none;
}
/* Hide all status-day items except the last 3 */
.incidents-list .status-day:nth-last-of-type(n + 5) {
  display: none;
}