.thumb {
  display: flex;
  align-items: center;
  margin: 5px 0;
  max-height: 60px;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}


figcaption {
  margin-left: 10px;
}

.type {
  font-size: 9px;
  font-weight: bold;
  margin: 0;
}

.name {
  font-family: Verdana, sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: red;
  margin: 0;
  max-width: 65vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}



.plate {
  font-size: 10px;
  font-weight: bold;
  margin: 0;
}

.thumb:hover {
  background-color: #f0f0f0;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}