.person-hero {
  border-radius: var(--radius-xl);
  border: 1px solid #cfe0ff;
  background:
    radial-gradient(340px 170px at 96% 4%, rgba(3, 166, 161, 0.17), transparent 70%),
    radial-gradient(300px 160px at 4% 100%, rgba(74, 134, 255, 0.18), transparent 74%),
    linear-gradient(120deg, #ffffff 0%, #f2f8ff 100%);
}

.person-view-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.person-view-avatar {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d8e7ff;
  box-shadow: 0 8px 18px rgba(15, 31, 70, 0.13);
}

.person-hero-actions {
  min-width: 180px;
}

.person-bio {
  white-space: normal;
  color: var(--ink-700);
}

.person-chip {
  color: var(--brand-800);
  font-size: 0.77rem;
  padding: 0.45rem 0.7rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  border: 1px solid #d7e5ff;
  border-radius: 0.75rem;
  background: #fbfdff;
  padding: 0.62rem 0.72rem;
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  border-color: #b9d0ff;
  background: #f2f7ff;
}

.contact-label {
  font-size: 0.82rem;
  color: var(--ink-500);
}

.contact-value {
  font-size: 0.92rem;
  color: var(--ink-900);
  word-break: break-all;
}

.contact-value-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

.contact-item-locked .blur-text {
  filter: blur(4px);
  user-select: none;
}

.related-person-card {
  border-radius: 0.9rem;
}

.related-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dbe8ff;
}

.x-small {
  font-size: 0.74rem;
}

@media (max-width: 767.98px) {
  .person-view-avatar {
    width: 84px;
    height: 84px;
  }

  .person-hero-actions {
    width: 100%;
  }
}
