div.author {
  display: flex;
  gap: 10px;
  align-items: center;
}
div.author .avatar {
  grid-row: span 2;
  width: 40px;
  height: 40px;
}
div.author .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
div.author .detail {
  font-size: 14px;
  line-height: 14px;
}
div.author .detail p {
  margin: 0px;
}
div.author .detail .name {
  line-height: 20px;
  color: white;
  font-weight: 500;
}