/**
 * PC 称号 pill：与个人主页 pc-user / pc-mine 的 .badge.title 视觉一致。
 * 使用方式：class="badge title"，文案放在 <span class="t">…</span>，图标 <i class="fas fa-crown">。
 */
.badge.title {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(201, 162, 39, 0.1);
  color: rgba(255, 236, 175, 0.95);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  box-sizing: border-box;
  width: fit-content;
  line-height: 1.2;
}

.badge.title .t {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.badge.title > i {
  flex-shrink: 0;
  opacity: 0.95;
}

[data-theme="light"] .badge.title {
  border-color: rgba(145, 110, 20, 0.35);
  background: rgba(201, 162, 39, 0.14);
  color: rgba(75, 58, 12, 0.95);
}
