.recent-posts{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
/*   background-color: #ebf5f4;
  padding: 50px;
  border-radius: 16px; */
}

.recent-posts.white_color {
  background-color: #ffffff;
}

.recent-posts.light_green_color {
  background-color: #ebf5f4;
  padding: 50px;
  border-radius: 16px;
}


.recent-posts article{
  flex: 0 0 calc(33.333% - 20px);
  display: flex;
  position: relative;
}
.recent-posts article .link-wrapper{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.recent-posts article .article-wrapper{
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
/* 
.recent-posts .post-item .article-wrapper .article-txt {
  padding-left: 20px;
  padding-right: 20px;
} */

.recent-posts article .article-wrapper .article-content{
  margin-bottom: 10px;
}
.recent-posts article h2{
  margin: 0 0 12px 0;
  font-family: BatonTurboMedium;
  line-height: 1.33;
}
.recent-posts article p{
  margin: 0;
  font-size: var(--font-size-text-md);
  line-height: 1.5rem;
  color: #757575;
}
.recent-posts article img{
  width: 100%;
  border-radius: 8px;
  height: 250px;
  object-position: center;
  object-fit: cover;
}

.recent-posts.show-featured .post-item .article-wrapper .article-img img {
  height: auto !important;
}

.recent-posts article .article-date{
  font-size: var(--font-size-text-sm);
  line-height: 1.5rem;
  color: #757575;
  font-family: BatonTurboBook;
}
.recent-posts article span{
  background: #ddf0ed;
  border-radius: 100px;
  padding: 4px 8px;
  color: #03594f;
  font-size: var(--font-size-text-sm);
}
.recent-posts article .button{
  max-width: fit-content;
  margin-top: auto;
}

@media(max-width: 980px){
  .recent-posts article{
    flex: 0 0 calc(50% - 20px);
    display: flex;
  }
}
@media(max-width: 767px){
  .recent-posts article{
    flex: unset;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }
  .recent-posts article img{
    width: 100%;
  }
  .recent-posts{
    padding: 40px 16px;
  }
}
.recent-posts article