/* content */
.content-wrapper {
  overflow-x: hidden;
  min-height: calc(100vh - 104px);
  padding-top: 104px;
}
/* blog */
.blog-wrapper {
  background-color: #fff;
  padding: 16px;
  padding-top: 20px;
}
.blog-box {
  margin-bottom: 12px;
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(0,0,0,.1);
  display: block;
  min-height: 115px;
}
.blog-box .thumb {
  width: 45%;
  display: inline-block;
  padding: 6px;
}
.thumb img {
  width: 100%;
  border-radius: 4px;
}
.blog-box .desc {
  width: 45%;
  display: inline-block;
  position: absolute;
  height: calc(29vw - 16px);
  max-height: 200px;
  padding: 8px;
}
.blog-box .tag {
  position: relative;
  top: 0;
  font-size: 12px;
  line-height: 2.33;
  letter-spacing: 0.3px;
  color: #616161;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.blog-box .title-holder {
  height: calc(18vw - 16px);
  /* display: table; */
  overflow: hidden;
  display: -webkit-box;
  /* autoprefixer: off */
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-box .title {
  font-size: 12px;
  line-height: 1.25;
  color: #212121;
  /* display: table-cell; */
  vertical-align: middle;
  overflow: hidden;
}
.blog-box .date {
  position: absolute;
  bottom:6px;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.4px;
  color: #9e9e9e;
}
