/* css/auth-header.css */

.auth-slot {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* pill */
.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.auth-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}

.auth-avatar {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.auth-avatar--fallback {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
}

.auth-name {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* profile page cards */
.work-thumb {
  height: 150px;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.work-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.work-title {
  margin: 10px 0 6px;
  font-size: 16px;
}
.work-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.profile-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--border);
  object-fit: cover;
}
.profile-name {
  font-weight: 700;
  font-size: 18px;
}
.profile-role {
  color: var(--muted);
  font-size: 13px;
}
