/* ========================================================================
   14. PREDICTIONS
   ======================================================================== */

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

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

.match-predictions__card--chart{
  padding:14px;
}

.match-predictions__chart-wrap{
  position:relative;
  min-height:420px;
}

.match-predictions__head{
  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-predictions__compare-list{
  display:grid;
  gap:12px;
}

.match-predictions__compare{
  display:grid;
  gap:6px;
}

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

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

.match-predictions__compare-pct--right{
  text-align:right;
}

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

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

.match-predictions__compare-bar-home{
  background:rgba(111,179,255,1);
}

.match-predictions__compare-bar-away{
  background:rgba(180,226,78,1);
}

.match-predictions__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

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

.match-predictions__key{
  margin-bottom:6px;
  color:rgba(255,255,255,.45);
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.match-predictions__value{
  color:var(--color-content-heading);
  font-family:var(--h1-font-family);
  font-size:16px;
  line-height:1.2;
  font-weight:600;
}

.match-predictions__note{
  color:rgba(255,255,255,.70);
}

.match-predictions__pill{
  display:inline-flex;
  flex-direction:column;
  gap:6px;
  text-align:right;
}

.match-predictions__pill-key{
  color:rgba(255,255,255,.45);
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.match-predictions__pill-value{
  color:var(--color-content-heading);
  font-family:var(--h1-font-family);
  font-size:16px;
  line-height:1.2;
  font-weight:600;
}

.match-predictions__percents{
  display:grid;
  gap:12px;
}

.match-predictions__percent{
  display:grid;
  gap:6px;
}

.match-predictions__percent-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.match-predictions__percent-label,
.match-predictions__percent-value{
  color:#fff;
  font-size:12px;
  font-weight:600;
}

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

.match-predictions__bar-in{
  display:block;
  height:100%;
  background:rgba(255,255,255,.90);
}

.match-predictions__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}

.match-predictions__mini{
  padding:10px 12px;
  background:rgba(0,0,0,.14);
}

.match-predictions__mini-key{
  margin-bottom:8px;
  color:rgba(255,255,255,.45);
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.match-predictions__mini-value{
  color:var(--color-content-heading);
  font-family:var(--h1-font-family);
  font-size:15px;
  line-height:1.2;
  font-weight:700;
}

.match-predictions__advice{
  color:rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.5;
  font-weight:600;
}

