/* ========================================================================
   10. STATS
   real DOM:
   .match-stats__grid > h6 + .match-stats__row
   style target:
   - same visual language as Predictions
   - only Stats block changes
   ======================================================================== */

.match-stats{
  display:grid;
  gap:14px;
}

.match-stats__group{
  background:rgba(255,255,255,.08);
  padding:12px;
}

.match-stats__group + .match-stats__group{
  margin-top:14px;
}

.match-stats__grid{
  display:grid;
  gap:0;
  padding:12px;
  background:rgba(255,255,255,.08);
}

.match-stats__grid > h6{
  margin:0 0 12px;
  color:var(--color-content-heading);
  font-family:var(--h1-font-family);
  font-size:14px;
  line-height:1.2;
  font-weight:700;
}

.match-stats__grid > h6:not(:first-child){
  margin-top:20px;
}

.match-stats__row{
  display:grid;
  grid-template-columns:60px minmax(0,1fr) 60px;
  align-items:center;
  gap:12px;
  padding:10px 0;
}

.match-stats__num{
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:700;
}

.match-stats__num--right{
  text-align:right;
}

.match-stats__mid{
  min-width:0;
}

.match-stats__label{
  margin-bottom:6px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  text-align:center;
  font-size:12px;
  font-weight:600;
  color:#fff;
}

.match-stats__bar{
  display:flex;
  height:8px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
}

.match-stats__bar-left{
  background:rgba(111,179,255,1);
}

.match-stats__bar-right{
  background:rgba(180,226,78,1);
}

.match-stats--pred-style .match-stats__card{
  width:100%;
}

.match-stats--pred-style .match-stats__head{
  margin-bottom:18px;
}

.match-stats--pred-style .match-stats__compare-list{
  gap:18px;
}

.match-stats--pred-style .match-stats__label{
  margin:0;
}

.match-stats--pred-style .match-stats__bar{
  height:8px;
}

