.team-section {
  display: flex;
  gap: 20px;
}
.ts-label {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 8px;
}
.owner-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f7;
  padding: 6px 12px;
  border-radius: 30px;
}
.owner-avt {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.owner-name {
  font-weight: 700;
  font-size: 14px;
}
.collab-group {
  display: flex;
  align-items: center;
}
.collab-avt {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.collab-avt:first-child {
  margin-left: 0;
}
.collab-count {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
}
.collab-none {
  font-size: 13px;
  color: #ccc;
}
