/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}


/* Blog Card Overrides */
.blog-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

/* Blog Image */
.blog-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Blog Article Styling */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-article img.blog-banner {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.blog-article h1, .blog-article h2, .blog-article h3 {
  margin-top: 1.5rem;
}

.blog-article p {
  line-height: 1.7;
  margin: 1rem 0;
}

.blog-article ul {
  list-style: disc;
  padding-left: 2rem;
}

.blog-article .note {
  background: #fff9e6;
  border-left: 4px solid #f3c623;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 5px;
}
.blog-card a {
      text-decoration: none;
      color: inherit;
      display: block;
      height: 100%;
    }

    .blog-card {
      transition: box-shadow 0.3s ease;
    }

    .blog-card:hover {
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    .blog-image {
  width: 100%;
  height: 300px !important; /* Or any fixed height you prefer */
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.short_intro{font-size:0.9rem;color:#444}
