/* Keep all five account metrics balanced without an orphan row. */
body.page-regular.professional.site-refined.institutional-site .page-body .stat-band { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); }
body.page-regular.professional.site-refined.institutional-site .page-body .stat-band .stat-cell { min-width:0; }
@media(max-width:1050px) {
 body.page-regular.professional.site-refined.institutional-site .page-body .stat-band { grid-template-columns:repeat(6,minmax(0,1fr)); }
 body.page-regular.professional.site-refined.institutional-site .page-body .stat-band .stat-cell { grid-column:span 2; }
 body.page-regular.professional.site-refined.institutional-site .page-body .stat-band .stat-cell:nth-child(n+4) { grid-column:span 3; }
}
@media(max-width:600px) {
 body.page-regular.professional.site-refined.institutional-site .page-body .stat-band { grid-template-columns:repeat(2,minmax(0,1fr)); }
 body.page-regular.professional.site-refined.institutional-site .page-body .stat-band .stat-cell { grid-column:span 1; }
 body.page-regular.professional.site-refined.institutional-site .page-body .stat-band .stat-cell:nth-child(4) { grid-column:span 1; }
 body.page-regular.professional.site-refined.institutional-site .page-body .stat-band .stat-cell:last-child { grid-column:1 / -1; }
}
