.page-bughouse-scene .pairing-row {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  column-gap: 10px;
  width: 100%;
}

@media (min-width: 480px) {
  .page-bughouse-scene .pairing-row {
    grid-template-columns: 1fr 120px 1fr;
    column-gap: 14px;
  }
}

.page-bughouse-scene .pairing-row__team {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 22px;
}

@media (min-width: 480px) {
  .page-bughouse-scene .pairing-row__team {
    min-height: 60px;
    padding: 10px 18px;
    font-size: var(--player-size);
    line-height: var(--player-line-height);
  }
}

.page-bughouse-scene .pairing-row__team--winner {
  background: var(--accent);
  color: #fff;
}

.page-bughouse-scene .pairing-row__team--pending {
  background: #5a5f63;
  color: transparent;
}

.page-bughouse-scene .pairing-row__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-bughouse-scene .pairing-row__result {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 120px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.03em;
}

.page-bughouse-scene .pairing-row__result--pending {
  background: #5a5f63;
  color: transparent;
}
