/* avatar.css — Retratos angulares tipo recorte: cuadrado girado con tinta. */

.avatar {
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  border: 2px solid var(--text);
  box-shadow: var(--shadow-ink-sm);
  transform: rotate(-3deg);
  user-select: none;
}

.avatar-initials {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}

.avatar-sm {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}
.avatar-md {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
}
.avatar-lg {
  width: 88px;
  height: 88px;
  font-size: 2.4rem;
}
