/* Blog Page Specific Styles */


#recent-blogs .row {
  display: flex;
  flex-wrap: wrap;
}

#recent-blogs .col-lg-4,
#recent-blogs .col-md-6 {
  display: flex;
}
/* Recent Blogs Section */
#recent-blogs h2 {
  font-size: 2rem;
  color: #4c2576;
  font-weight: bold;
}

.blog-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  text-decoration: none;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;

}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 15px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-content h5 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
}

.blog-card-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: #999;
}

.load-more-btn {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
}

/* Fonts (matching homepage assumption: system sans-serif) */
body, h1, h2, h3, h4, h5, p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }

  .featured-img, .featured-content {
    width: 100%;
  }

  .featured-img {
    height: 300px;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .featured-desc {
    font-size: 1rem;
  }
}