/* Blog Filters */
.blog-filters {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.filters-title {
  font-size: 1.5rem;
  color: var(--primary-color, #003087);
  margin-bottom: 1.5rem;
  text-align: center;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-tab {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-tab:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.filter-tab.active {
  background: #DC143C;
  color: white;
  border-color: #DC143C;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.filter-tab i {
  font-size: 0.9rem;
}

/* Blog card filtering */
.blog-card.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .blog-filters {
    padding: 1.5rem;
  }
  
  .filter-tabs {
    flex-direction: column;
  }
  
  .filter-tab {
    width: 100%;
    justify-content: center;
  }
}


