.blog_item {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-bottom: 32px;
  padding-top: 20px;
  border-bottom: 1px solid #d3d3d5;
}

.blog_item_left {
  width: 195px;
  min-width: 195px;
  height: 130px;
  overflow: hidden;
  margin-right: 30px;
}
.blog_item_left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_item_right {
  overflow: hidden;
}

.blog_item_title {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 12px;
  color: #444;
  font-size: 20px;
}
.blog_item_des {
  margin-bottom: 20px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog_item_other_infos {
  display: flex;
  align-items: center;
}
.blog_item_other_infos > p {
  margin-right: 10px;
  color: #666666;
  font-weight: 300;
}

/* mobile */
@media screen and (max-width: 767px) {
  .blog_item {
    padding: 20px 0;
    flex-direction: row-reverse;
  }
  .blog_item_left {
    width: 90px;
    min-width: 90px;
    height: 65px;
    margin-right: 0;
    margin-left: 15px;
  }
  .blog_item_right {
    width: 100%;
    letter-spacing: 1px;
  }
  .blog_item_title {
    font-size: 16px;
    white-space: unset;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .blog_item_des {
    display: none;
  }
}
