.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;

  max-width: 320px;
  padding: 6px 10px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);

  text-decoration: none;
  color: inherit;
  line-height: 1.1;
}

.user-pill:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.user-pill__avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.10);
}

.user-pill__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.user-pill__name {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-pill__handle {
  font-size: 12px;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 860px) {
  .user-pill {
    max-width: 220px;
  }
}

.profile-hero {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.profile-hero__user {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 8px 2px;
}

.profile-hero__avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(120, 255, 190, 0.55), rgba(255, 120, 210, 0.45));
  flex: 0 0 auto;
}

.profile-hero__avatar {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  display: block;
}

.profile-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.profile-hero__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.05;
}

.profile-hero__name-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.profile-hero__name {
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}

.profile-hero__handle {
  font-size: 13px;
  opacity: 0.75;
  white-space: nowrap;
  flex: 0 0 auto;
}

.profile-hero__desc {
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .profile-hero__avatar-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .profile-hero__avatar {
    border-radius: 14px;
  }

  .profile-hero__title {
    font-size: 24px;
  }

  .profile-hero__name {
    max-width: 280px;
  }
}

.lb-user {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lb-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.10);
  flex: 0 0 auto;
}

.lb-user__meta {
  min-width: 0;
}