/* Blog Listing */

.blog-post-listing {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap:20px;
}

.blog-post-listing .blog_article { 
  flex:1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: radial-gradient(179.27% 141.25% at -4.91% 4.48%, rgba(150, 243, 205, 0.00) 0%, rgba(89, 198, 206, 0.21) 53.13%, rgba(89, 198, 206, 0.00) 100%);
  backdrop-filter: blur(24px);
  padding:16px;
}

.blog-post-listing .blog_article .blog_image { 
  height:156px;
  width:auto;
  border-radius: 8px;
  overflow:hidden;
  margin-bottom:16px;
}

.blog-post-listing .blog_article .blog_image img { 
  height:100%;
  width:100%;
  object-fit:cover;
}

.blog-post-listing .blog_title,
.blog-post-listing .blog_title a {
  color:#0E3C5A;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom:16px;
}

.blog-post-listing .blog-post-tags {
  display:flex;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.blog-post-listing .blog-post-tags .blog-tag-link {
  color: #1C8FBF;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  text-transform:uppercase;
}

.blog-post-listing .blog-description {
  color: #0C1124;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin:bottom:16px;
}

@media (max-width:868px) {
  .blog-post-listing {
    flex-direction:column;
  }

}