/**
 * Theme Name: Club Mer
 * Template: bard
 * Version: 1.0.0
 * Author: Paul Gribal
 * 
 */

#users {
  display: grid;
  flex-wrap: wrap;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
}

#users > div {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 0;

  overflow: hidden;
  border-radius: 16px;
  background-color: aliceblue;
}

#users > div > img {
  width: auto;
  aspect-ratio: 1;
}

#users > div > div {
  display: flex;
  flex-direction: column;

  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

span.name {
  font-weight: bold;
  font-size: 0.875rem;
}
