.artist-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.artist-note-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 750;
}

.artist-note small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.artist-note small b {
  color: var(--ink);
  font-weight: 700;
}

.artist-note p {
  margin: 5px 0 0;
  color: #555;
  font-size: 11px;
  line-height: 1.65;
}

.rules-note {
  margin: -4px 0 2px;
  color: #aaa;
  font-size: 9px;
  line-height: 1.6;
}

.priority-block,
.priority-block.avoid {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

.priority-heading {
  display: grid;
  gap: 5px;
}

.priority-heading > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.priority-heading h3 {
  margin: 0;
  font-size: 13px;
}

.priority-heading span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.priority-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.priority-list {
  border-top: 1px solid var(--line);
}

.priority-row {
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.priority-row > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.priority-block.must .priority-row:first-child > span {
  color: var(--green);
}

.priority-block.avoid .priority-row > span {
  color: var(--accent);
}

.priority-row input {
  min-height: 46px;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.priority-row input:focus {
  border-color: transparent;
  box-shadow: inset 0 -2px 0 var(--ink);
}
