/* Blog Posts Container */
.blog-posts__container {
  display: flex;
  flex-direction: column;
}
/* Blog Post */
.blog-posts__post {
  display: flex;
  align-items: center;
  column-gap: 16px;
  background: #FFFFFF;
  border-radius: 14.4px;
  padding: 30px;
}
.blog-posts__post:last-child {
  margin-bottom: 0px;
}
/* Blog Post Image */
.blog-posts__image {
  display: block;
  min-width: 110px;
  line-height: 0;
}

.blog-posts__image img {
  width: 110px;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Blog Post Content */
.blog-posts__post-content {
  display: flex;
  flex-direction: column;
  position: relative;
  gap:20px;
}
.blog-posts__post-content a:hover {
  text-decoration: none;
}

/* Blog Post Title */
.blog-post__title {
  display: -webkit-box;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-style: normal;
  line-height: 150%;
  text-decoration: none;
       width: 75%;
  
}
.blog-post__title h5 {
  color: var(--primary)
}
/* Blog Post Meta */
.blog-posts__meta {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}



/* Media Queries */
@media (min-width: 1024px) {
  .blog-posts__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}


  .blog-posts__post {
    width: 100%;
  }

  .blog-posts__image {
    width: 110px;
  }
}

.blog-post__title-section {
  text-align: center;
}
.blog-post__title h4, .blog-post__title h5, .blog-post__title h6 {
  color: var(--primary);
  font-weight: bold;
  margin: 0;
} 

.blog-index__post-time {
  display: flex;
  gap: 10px;
  font-size: 16.8px;
  font-family: Mohave;
  position: absolute;
  right: 10px;

}

.blog-index__tag-link {
    background: #E5E7EB;
    border-radius: 4.8px;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 5px 15px;
    font-family: Mohave;
    text-decoration: none;
     color: #374151;
}
.blog-index__tag-link:hover {
  color: #374151;
} 
.blog-post__title-section {
  text-align: center;
  margin-bottom: 1.5rem;
  }
.blog_card--header .type_content {
  padding: 12px 10px 12px;
    font-size: 16px;
    font-family: Mohave;
    background: #E5E7EB;
    color: #2528EC;
    border-radius: 19px;
    text-transform: capitalize;
}
.type_content.type_content--blog {
  background: #DCFCE7;
  color: #15803D;
}
.blog_card--footer .button--small {
  font-size: 15px;
}
.blog_card--footer, .blog_card--header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  }
@media (max-width: 767px) {
  .blog_card--footer { 
  flex-direction: column;
  }
  .blog-posts__container {
    gap: 20px;
  }
} 