.relationship-panel {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.relationship-composer {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 8px;
  margin: 14px 0;
}
.secondary {
  border: 1px solid #9ab0a6;
  background: white;
  color: var(--green);
  border-radius: 9px;
  padding: 9px 14px;
  font-weight: 750;
  cursor: pointer;
}
.relationship-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.relationship-row:last-child { border: 0; }
.relationship-link {
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.relationship-link small, .relationship-link strong { display: block; }
.relationship-link strong { color: var(--green); }
.unlink {
  border: 0;
  background: transparent;
  color: #8b5b55;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 620px) {
  .relationship-composer { grid-template-columns: 1fr; }
  .relationship-composer button { width: 100%; }
}
