.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

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

.blog-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blog-card .card-body {
  padding: 20px;
}

.blog-card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.blog-card .card-text {
  color: #555;
}

@media (max-width: 767px) {
  .blog-card img {
    height: 180px;
  }
}
