.blog-recent-container {
  padding: 40px 0;
}

.blog-recent.columns-3 {
  display: flex;
  flex-wrap: wrap;
  /*gap: 30px;*/
  justify-content: space-between;
}

.blog-card {
  flex: 0 0 32%;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.img-link {
  display: block;
  position: relative;
}

.featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

.post-date {
  background-color: #d3a919;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  position: absolute;
  bottom: 1px;
  left: 16px;
  font-size: 0.8rem;
  border-radius: 1px;
}

.article-content-wrap {
  padding:20px;
 background: #f5f5f5;
}

.title h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.title a {
  text-decoration: none;
  color: #000;
}

.excerpt {
  color: #676767;
  font-size: 16px;
  line-height: 1.5;
}

.post-meta {
  padding: 10px 20px 0;
  font-size: 12px;
  color: #000;
  display: flex;
  justify-content: space-between;
}

.post-meta i {
  margin-right: 5px;
}

a.img-link {
    background: #f5f5f5;
}

i.icon-user:before {
    content: "\f007"; 
    font-family: 'FontAwesome';
	    font-style: normal;

}

i.icon-comment:before {
    content: "\f075";
	font-family: 'FontAwesome';
	    font-style: normal;
}

@media (max-width: 900px) {
  .blog-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 600px) {
  .blog-card {
    flex: 0 0 100%;
  }
}
