.section-latest-blog-posts {
  padding: 80px 0;
  background: var(--section-gray-color);
}
.section-latest-blog-posts h2 {
  text-align: center;
  display: block;
  font-size: 47px;
  margin-bottom: 45px;
  font-weight: 700;
  color: var(--ek-main-text-color);
  width: 100%;
}
.section-latest-blog-posts .blog-post {
  position: relative;
  display: block;
  padding: 0;
  border-radius: 20px;
  text-decoration: none;
  color: #2D2F36;
  background: #ffffff;
  overflow: hidden;
}
.section-latest-blog-posts .blog-post .post-thumbnail {
  display: block;
  margin: 0;
  padding: 0;
}
.section-latest-blog-posts .blog-post .post-thumbnail img {
  width: 100%;
  height: auto;
}
.section-latest-blog-posts .blog-post .blog-post-footer {
  display: block;
  padding: 25px;
  background: #ffffff;
}
.section-latest-blog-posts .blog-post .blog-post-footer .post-info {
  font-size: 15px;
}
.section-latest-blog-posts .blog-post .blog-post-footer .post-info span {
  margin-right: 10px;
}
.section-latest-blog-posts .blog-post .blog-post-footer .post-info span i {
  color: var(--ek-primary-color);
}
.section-latest-blog-posts .blog-post .blog-post-footer .post-separator {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: #f0f0f0;
  margin: 20px auto;
}
.section-latest-blog-posts .blog-post .blog-post-footer .post-separator:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 5px;
  width: 100px;
  background: #6ec74a;
  background: -webkit-gradient(linear, right top, left top, from(#6ec74a), color-stop(43%, #46b760), to(#1ba979));
  background: linear-gradient(-90deg, #6ec74a 0%, #46b760 43%, #1ba979 100%);
}
.section-latest-blog-posts .blog-post .blog-post-footer .post-title h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 20px;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .section-latest-blog-posts {
    padding: 50px 0;
  }
  .section-latest-blog-posts h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .section-latest-blog-posts .blog-post {
    margin-bottom: 40px;
  }
}