/* ==========================================================================
   players.css — real player portraits inside the existing circular avatars
   --------------------------------------------------------------------------
   The site's avatar wrappers (.av, .rb-av and their size variants) already
   own the circle, the ring colour and the layout. This file only teaches an
   <img> dropped inside one of those wrappers to fill the circle cleanly.
   Portraits exist only for players whose jersey number is confirmed against
   the roster table; every other player keeps the neutral silhouette.
   Loaded after the page stylesheets — it must not restyle the wrappers.
   ========================================================================== */

.av > img,
.rb-av > img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  border-radius:50%;
  display:block;
}
