/* ================================================================
   Header — profile header: avatar, name, clinic, bio, verified badge
================================================================ */
.profile {
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 4px auto 18px;
  background: var(--surface-2);
  border: 3px solid var(--surface);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 0 7px var(--teal-45),
    0 12px 26px -10px var(--blue-30);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initials {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal);
}

.profile-name {
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--navy);
}

.clinic-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 12px;
}

.bio {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 36ch;
  margin: 0 auto 16px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-tint);
  border: 1px solid var(--success-30);
  padding: 5px 12px;
  border-radius: 999px;
}

.verified-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}