.portal-handoff {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 64px 20px;
  background: #f7f5f1;
}

.portal-handoff-card {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  border: 1px solid rgba(39, 49, 58, .12);
  box-shadow: 0 24px 80px rgba(39, 49, 58, .10);
  text-align: center;
}

.portal-handoff-card h1 {
  margin: 10px 0 14px;
}

.portal-handoff-spinner {
  width: 42px;
  height: 42px;
  margin: 22px auto 0;
  border: 4px solid rgba(94, 53, 111, .18);
  border-top-color: #5e356f;
  border-radius: 50%;
  animation: portal-spin .8s linear infinite;
}

@keyframes portal-spin { to { transform: rotate(360deg); } }

.portal-save-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  font-size: .88rem;
}

.portal-shortlist-toolbar {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.portal-shortlist-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid rgba(39, 49, 58, .12);
}

.portal-shortlist-card h3 { margin: 0 0 7px; }
.portal-shortlist-card p { margin: 0; color: #5f686f; }
.portal-shortlist-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.portal-shortlist-actions button,
.portal-shortlist-actions a { white-space: nowrap; }

@media (max-width: 720px) {
  .portal-shortlist-card { grid-template-columns: 1fr; }
  .portal-shortlist-actions { justify-content: flex-start; }
}
