/* ==========================================
   STANDINGS
========================================== */

.fcwc-standings-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:12px;
  margin-bottom:12px;
  box-shadow:0 3px 12px rgba(15,23,42,.05);
}

.fcwc-standings-card h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  color:#0f172a;
}

.fcwc-standings-head-row,
.fcwc-standings-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 40px 40px 32px 32px 32px 40px;
  align-items:center;
}

.fcwc-standings-head-row{
  padding-bottom:8px;
  margin-bottom:4px;
  border-bottom:1px solid #e5e7eb;
  font-size:11px;
  font-weight:900;
  color:#64748b;
}

.fcwc-standings-th-team{
  text-align:left;
}

.fcwc-standings-row{
  padding:8px 0;
}

.fcwc-standings-team{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.fcwc-standings-rank{
  width:18px;
  text-align:center;
  font-size:12px;
  font-weight:800;
  color:#64748b;
}

.fcwc-standings-team img{
  width:24px;
  height:24px;
  object-fit:contain;
}

.fcwc-standings-team-name{
  min-width:0;
}

.fcwc-standings-team-name strong{
  display:block;
  font-size:12px;
  font-weight:700;
  color:#111827;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-standings-team-name small{
  display:block;
  font-size:10px;
  color:#64748b;
  margin-top:1px;
}

.fcwc-standings-row > div:not(.fcwc-standings-team){
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:#111827;
}

.fcwc-standings-pts{
  font-size:13px !important;
  font-weight:900 !important;
}

.fcwc-standings-row.is-qualified{
  border-left:4px solid #22c55e;
  padding-left:6px;
}

.fcwc-standings-row.is-third{
  border-left:4px solid #facc15;
  padding-left:6px;
}

.fcwc-standings-loading{
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:#64748b;
}

.fcwc-standings-rules{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:12px;
  margin-top:10px;
}

.fcwc-standings-rules h3{
  margin:0 0 10px;
  font-size:14px;
  font-weight:900;
}

.fcwc-standings-rules p{
  margin:0 0 6px;
  font-size:12px;
  color:#64748b;
}

.fcwc-standings-rules small{
  display:block;
  margin-top:8px;
  font-size:11px;
  color:#64748b;
}

.fcwc-standings-row{
  border-left:4px solid transparent;
  padding-left:6px;
}

.fcwc-standings-row.is-qualified{
  border-left-color:#22c55e;
}

.fcwc-standings-row.is-third{
  border-left-color:#facc15;
}

/* Móvil */

@media(max-width:640px){

  .fcwc-standings-head-row,
  .fcwc-standings-row{
    grid-template-columns:minmax(0,1fr) 32px 30px 24px 24px 24px 32px;
  }

  .fcwc-standings-team-name strong{
    font-size:11px;
  }

  .fcwc-standings-team img{
    width:22px;
    height:22px;
  }
}