.helf-league-status {
  margin: 0.8rem 0 0;
  color: var(--muted, #5f6b62);
  line-height: 1.45;
}

.helf-league-status.is-error {
  font-weight: 700;
}

.helf-league-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.helf-league-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem;
  border: 1px solid rgba(22, 101, 52, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.helf-league-row.is-self {
  border-width: 2px;
}

.helf-league-rank {
  min-width: 2.2rem;
  font-variant-numeric: tabular-nums;
}

.helf-league-avatar {
  font-size: 1.4rem;
  line-height: 1;
}

.helf-league-identity,
.helf-league-ranked-score {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.helf-league-identity span,
.helf-league-ranked-score span {
  font-size: 0.78rem;
  color: var(--muted, #5f6b62);
}

.helf-league-identity strong,
.helf-league-identity span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.helf-league-ranked-score {
  text-align: right;
}

.helf-league-empty {
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted, #5f6b62);
}

@media (max-width: 620px) {
  .helf-league-row {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .helf-league-ranked-score {
    grid-column: 3;
    text-align: left;
  }
}
