.breadcrumb a {
  color: #007bff;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
}
.blog-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
}