/* Smooth slide-up/slide-down effect */
@media (min-width:768px) {
    /* .blog-section {
        height: 500px;
        overflow-y: auto;
    } */
 .blog-section::scroll-marker{
    display: none;
 }
    .blog-image {
        flex: 0 0 250px;
        max-width: 350px;
        height: 196px;
    }
 
    section.blog-section .col-12 {
        position: sticky !important;
        top: 100px;
        left: 0;
        margin-top: 0px;
    }
.blog-left {
        position: sticky !important;
    top: 100px;
    left: 0;
    margin-bottom: 80px;
 }
    #blog-posts-container {
        row-gap: 40px;
    }
    .overflow-md-visible{
      overflow: visible !important;
    }
 
}

        .blog-card {
  border: 2px solid #d6d6f5;
  border-radius: 1rem;
  background: #fff;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.blog-image {
  flex: 0 0 250px;
  max-width: 350px;
}

.blog-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

.blog-content {
  flex: 1;
}
.blog-content .btn-black-outline{
	width: fit-content;
}

.blog-meta {
  font-size: 0.9rem;
  color: #777;
}

.blogs-layout-1 .blog-title{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-title {
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

.btn-outline-dark {
  border-radius: 8px;
  font-weight: 500;
  padding: 6px 16px;
}

@media (max-width: 767px) {
  #blog-posts-container .col-12 {
    position: sticky;
    top: 110px;
}
  .blog-image {
    max-width: 100%;
  }
  .blog-card {
    flex-direction: column;
    text-align: left;
  }
      .overflow-md-visible{
      overflow: visible !important;
    }
      /* .blog-section {
        height: 400px;
        overflow-y: auto;
    } */
}
