/* PC 계정 매물 추가 정보 태그 — 계정 UI 전용 네임스페이스 */

.account-extra-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px 8px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #eef0f3;
  max-height: 3.4em;
  overflow: hidden;
}

.account-extra-info[hidden],
.account-extra-info:empty {
  display: none !important;
}

.account-extra-info-label {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--pc-text-muted, #6b7280);
  line-height: 1.2;
}

.account-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  flex: 1 1 180px;
  max-height: 3.4em;
  overflow: hidden;
}

.account-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  height: 20px;
  padding: 0 7px;
  border: 1px solid var(--pc-border, #dde1e6);
  border-radius: 999px;
  background: #f7f8fa;
  color: var(--pc-navy, #1b2430);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.account-tag-label,
.account-tag-value,
.account-tag-source,
.account-tag-sep {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-tag-sep {
  color: #9ca3af;
  font-weight: 500;
}

.account-tag-source {
  margin-left: 2px;
  padding-left: 5px;
  border-left: 1px solid #e5e7eb;
  color: #8b93a0;
  font-size: 10px;
  font-weight: 600;
}

.account-tag--structured {
  background: #f7f8fa;
}

.account-tag--title {
  background: #fffdf5;
  border-color: #f0d78c;
}

.account-tag--seller {
  background: #f8fafc;
  border-style: dashed;
}
