/* ══════════════════════════════════════════════════════════════
   COMPONENT: Category Filter Tabs
   Used on: blog.html, blog-category.html
   ══════════════════════════════════════════════════════════════ */

.category-filter-section {
  padding: 40px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--gray-600);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  color: var(--navy);
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.filter-btn.active {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

@media (max-width: 640px) {
  .category-filter-section { padding: 28px 20px; }
  .category-filter { gap: 8px; }
  .filter-btn { font-size: 13px; padding: 8px 16px; }
}
