.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--theme-space-3);
}

.profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--theme-bg-tertiary);
  color: var(--theme-text-secondary);
  font-size: 36px;
  font-weight: var(--theme-font-weight-semibold);
  flex-shrink: 0;
}

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

.profile-name {
  margin: 0;
  font-size: var(--theme-font-lg);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--theme-text-primary);
  text-align: center;
}

.profile-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--theme-space-2);
  width: 100%;
  padding: var(--theme-space-2) var(--theme-space-3);
  background: var(--theme-bg-secondary);
  border-radius: var(--theme-radius-md);
}

.profile-linkedin-label {
  font-size: var(--theme-font-sm);
  font-weight: var(--theme-font-weight-medium);
  color: var(--theme-text-secondary);
  flex-shrink: 0;
}

.profile-linkedin-value {
  min-width: 0;
  font-size: var(--theme-font-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--theme-radius-sm);
  color: var(--theme-color-primary);
  text-decoration: none;
  transition: background 120ms ease;
}

.profile-linkedin-link:hover {
  background: var(--theme-bg-tertiary);
}

.profile-linkedin-empty {
  color: var(--theme-text-tertiary);
  font-style: italic;
}

.profile-linkedin-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--theme-radius-sm);
  color: var(--theme-text-secondary);
  flex-shrink: 0;
  transition: background 120ms ease, color 120ms ease;
}

.profile-linkedin-edit:hover {
  background: var(--theme-bg-tertiary);
  color: var(--theme-text-primary);
}
