/* ========================================================================
   13. STANDINGS
   ======================================================================== */

.match-standings{
  width:100%;
}

.match-standings__row{
  display:grid;
  grid-template-columns:56px minmax(180px,1fr) 60px 60px 60px 60px 70px 70px;
  align-items:center;
  background:rgba(255,255,255,.08);
}

.match-standings__row + .match-standings__row{
  margin-top:8px;
}

.match-standings__row--head{
  background:rgba(255,255,255,.02);
}

.match-standings__col{
  padding:10px 12px;
  text-align:center;
  color:var(--color-content-heading);
  font-family:var(--h1-font-family);
  font-size:13px;
  line-height:1.2;
  font-weight:600;
}

.match-standings__row--head .match-standings__col{
  color:rgba(255,255,255,.65);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}

.match-standings__col--team{
  text-align:left;
}

.match-standings__team{
  display:flex;
  align-items:center;
  gap:10px;
}

.match-standings__team img{
  display:block;
  width:20px;
  height:20px;
  flex:0 0 20px;
  object-fit:contain;
}

