.page-bughouse-scene .panel--standings {
  width: 100%;
  max-width: 560px;
}

.page-bughouse-scene .panel--standings .panel__list {
  width: 100%;
}

.page-bughouse-scene .standings-row {
  display: grid;
  grid-template-columns: 48px 1fr 64px;
  align-items: center;
  column-gap: 16px;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border-radius: 30px;
  color: #000;
  box-sizing: border-box;
}

.page-bughouse-scene .standings-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.94);
}

.page-bughouse-scene .standings-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.78);
}

.page-bughouse-scene .standings-row__rank {
  grid-column: 1;
  text-align: center;
  justify-self: center;
}

.page-bughouse-scene .standings-row__team {
  grid-column: 2;
  text-align: left;
  justify-self: stretch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.page-bughouse-scene .standings-row__points {
  grid-column: 3;
  width: 72px;
  text-align: center;
  justify-self: center;
}

.page-bughouse-scene .standings-row--tb2 {
  grid-template-columns: 48px 1fr 52px 56px;
}

.page-bughouse-scene .standings-row__tb2 {
  grid-column: 4;
  width: 56px;
  text-align: center;
  justify-self: center;
}

/* Full standings: all teams, width = longest row, no ellipsis */
.page-bughouse-standings .bughouse-scene.panel--standings,
.page-bughouse-standings .panel--standings {
  width: auto;
  max-width: 100%;
  align-items: center;
}

.page-bughouse-standings .panel--standings .panel__list {
  width: auto;
  max-width: 100%;
}

.page-bughouse-standings .standings-row {
  grid-template-columns: 56px auto 80px;
  column-gap: 20px;
  min-height: 60px;
  height: auto;
  padding: 12px 28px;
  box-sizing: border-box;
}

.page-bughouse-standings .standings-row--tb2 {
  grid-template-columns: 56px auto 64px 72px;
}

.page-bughouse-standings .standings-row__team {
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}
