.insights {
  padding: 64px 0;
  background-color: #f9f9f9;
}

.insights .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 48px;
}

.insights .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.blog-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 1rem;
  color: #555;
}
/* Space below the “View All Articles” button in blog section on homepage */
.blog.container .btn-primary {
  margin-top: 3rem;   /* you can adjust 3rem to your preferred spacing */
  margin-bottom: 3rem; /* ensures space before the footer */
}
