/* Precheck KPI summary cards ("Total Record Day", "Ready Operate", "Not Ready",
   "Incomplete") — ONE authoritative rule.
   Sept 2026 UI audit: the true final winner for this layout was
   operations-layout-final.css's "#content .pck-record-summary" -- an ID-prefixed
   selector, which beats every later-loaded but ID-less rule regardless of file order
   (specificity always wins ties over source order). It forces exactly 4 equal columns
   AND a fixed article height:72px at every viewport width, so below roughly 1050px each
   card has too little width and vertical room for labels like "Total Record Day" /
   "Ready Operate", clipping them.
   This file uses the same "#content ..." specificity (plus the extra .pck-record-page
   scope, so it also wins on specificity alone) and is loaded last, to guarantee it wins
   without having to hunt down and edit every earlier layer. */
#content .pck-record-page .pck-record-summary{
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr))!important;
}
#content .pck-record-page .pck-record-summary article{
  height:auto!important;
  min-height:72px!important;
}
