
.body {
  height: calc(50vh + 72px);
  transition: 0.35s;
  overflow: hidden;
}
 .body.fullscreen {
   overflow-y: auto;
   height: calc(100vh - 72px);
}
.users {
  /*display: grid;*/
  /*grid-template-columns: repeat(2, 1fr);*/
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;
}
.user {
  position: relative;
  aspect-ratio: 3/3.75;
  border-radius: 20px;
  overflow: hidden;
  width: calc(50% - 8px);
  min-height: 150px;
  margin-bottom: 16px;

}
.user:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 33.33%);
}
.user img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-color: #e8e8e8;
}
.user .name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  z-index: 1;
}
