.blog-post {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  border: 1px solid #EAEAEA;
  background: #FFFFFF;
}
.blog-post .blog-post__image {
  background-image: linear-gradient(#F4F4F4, #FFFFFF);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.blog-post .blog-post__image a {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  line-height: 0;
  align-items: center;
  justify-content: center;
}
.blog-post .blog-post__image a img {
  max-width: 100%;
  height: auto;
  transition: transform 0.2s;
}
.blog-post .blog-post__content .blog-post__title {
  margin: 0 0 10px;
  overflow: hidden;
}
.blog-post .blog-post__content .blog-post__title a {
  font-weight: 700;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  line-height: 28px;
}
.blog-post .blog-post__content .blog-post__header {
  display: flex;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 12px;
}
.blog-post .blog-post__content .blog-post__header .blog-post__category {
  font-weight: 700;
  display: inline-block;
  padding-right: 16px;
}
.blog-post .blog-post__content .blog-post__header .blog-post__category a {
  color: #000000;
  text-decoration: underline;
}
.blog-post .blog-post__content .blog-post__header .blog-post__category a:hover {
  text-decoration: none;
}
.blog-post .blog-post__content .blog-post__header .blog-post__read {
  font-weight: 300;
  position: relative;
  width: 100px;
  color: #292929;
}
.blog-post .blog-post__content .blog-post__header .blog-post__read:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  width: 1px;
  height: 15px;
  left: -8px;
  top: 2px;
}
.blog-post .blog-post__content .blog-post__text {
  overflow: hidden;
}
.blog-post .blog-post__content .blog-post__text p {
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
.blog-post .blog-post__content .blog-post__text p:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 28px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
}
.blog-post .blog-post__content .blog-post__footer {
  display: flex;
}
.blog-post .blog-post__content .blog-post__footer .blog-post__date {
  display: inline-block;
  position: relative;
  padding-right: 16px;
  font-weight: 300;
  color: #292929;
}
.blog-post .blog-post__content .blog-post__footer .blog-post__date:after {
  content: none;
}
.blog-post .blog-post__content .blog-post__footer .blog-post__author {
  color: #292929;
  font-weight: 700;
}
.blog-post .blog-post__content .blog-post__footer .blog-post__author:hover {
  text-decoration: none;
}
.blog-post .blog-post__content .blog-post__footer.hide_author .blog-post__date:after {
  content: none;
}
