.profile-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-interest-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.02);
}

.profile-interest-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.profile-interest-head p,
.profile-interest-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-interest-suggestions,
.profile-interest-selected-wrap,
.profile-interest-column {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.profile-interest-suggestions {
  display: grid;
  gap: 8px;
  padding: 10px;
  margin-top: 10px;
}

.profile-interest-suggestions-head,
.profile-interest-selected-head,
.profile-interest-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile-interest-column-head,
.profile-interest-selected-head {
  padding: 12px 12px 0;
}

.profile-interest-column-head span,
.profile-interest-suggestions-head,
.profile-interest-selected-head span {
  color: var(--muted);
  font-size: 12px;
}

.profile-interest-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.profile-interest-browser {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 12px;
}

.profile-interest-column {
  overflow: hidden;
}

.profile-interest-pill-list,
.profile-interest-option-grid {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.profile-interest-pill,
.profile-interest-option,
.profile-interest-suggestion,
.profile-interest-chip {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
}

.profile-interest-pill.is-active,
.profile-interest-option.is-selected,
.profile-interest-suggestion.is-selected,
.profile-interest-chip.is-selected {
  border-color: rgba(29, 78, 216, 0.4);
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.12);
  background: rgba(219, 234, 254, 0.55);
}

.profile-interest-pill-soft.is-active {
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.12);
  background: rgba(255, 237, 213, 0.65);
}

.profile-interest-option strong,
.profile-interest-suggestion strong,
.profile-interest-chip span {
  display: block;
  margin-bottom: 4px;
}

.profile-interest-chip {
  width: auto;
  max-width: 100%;
}

.profile-interest-option span,
.profile-interest-suggestion span,
.profile-interest-chip small,
.profile-interest-empty {
  color: var(--muted);
  font-size: 12px;
}

.profile-interest-empty {
  margin: 0;
  padding: 12px;
}

body.theme-dark .profile-interest-card {
  background: rgba(15, 23, 42, 0.5);
}

body.theme-dark .profile-interest-suggestions,
body.theme-dark .profile-interest-selected-wrap,
body.theme-dark .profile-interest-column,
body.theme-dark .profile-interest-pill,
body.theme-dark .profile-interest-option,
body.theme-dark .profile-interest-suggestion,
body.theme-dark .profile-interest-chip {
  background: #0f172a;
}

@media (max-width: 640px) {
  .profile-field-grid,
  .profile-interest-browser {
    grid-template-columns: 1fr;
  }
}
