/*  ═══════════════════════════════════════════════════════════════
    Profile Avatar Component — shared circular avatar sizes
    ═══════════════════════════════════════════════════════════════ */

.profile-avatar {
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-soft-fill);
}

.profile-avatar--sm {
  width: 40px;
  height: 40px;
}

.profile-avatar--md {
  width: 48px;
  height: 48px;
}

.profile-avatar--lg {
  width: 112px;
  height: 112px;
  border: 2px solid var(--color-border);
}

@media (max-width: 640px) {
  .profile-avatar--lg {
    width: 96px;
    height: 96px;
  }
}
