.users-page {
  display: grid;
  gap: 1rem;
}

.tc-user-results {
  display: grid;
  gap: .85rem;
}

.tc-user-card {
  border-color: var(--tc-line);
  border-radius: var(--tc-radius);
  box-shadow: var(--tc-shadow);
}

.tc-user-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .8rem;
}

.tc-user-name-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
  gap: .35rem;
}

.tc-user-name {
  min-width: 0;
  font-size: 1.14rem;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.tc-user-growth {
  flex: 0 0 auto;
  white-space: nowrap;
}

.tc-user-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem 1.2rem;
  margin-top: .95rem;
}

.tc-user-info-cell {
  display: grid;
  min-width: 0;
  gap: .16rem;
}

.tc-user-info-cell-wide {
  grid-column: 1 / -1;
}

.tc-user-info-label {
  color: var(--tc-muted);
  font-size: .82rem;
  font-weight: 750;
}

.tc-user-info-value {
  min-width: 0;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
  line-height: 1.48;
}

@media (max-width: 767px) {
  .tc-user-card-head {
    gap: .45rem;
  }

  .tc-user-info-grid {
    grid-template-columns: 1fr;
  }
}
