.category-description {
  color: var(--muted);
  margin-top: -0.4rem;
  margin-bottom: 1.2rem;
  max-width: 720px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.tag-chip {
  border: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #ecf2f0;
  color: #1c5b56;
  cursor: pointer;
}

.tag-chip.is-muted {
  background: #f0ebe4;
  color: #7a5a47;
}

.tag-chip.is-active {
  background: #1c5b56;
  color: #fff;
}

.tag-filter {
  margin-top: 1.2rem;
}

.tag-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.tag-filter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0;
}

.tag-filter-toggle {
  border: 1px solid rgba(19, 33, 43, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: none;
}

.tag-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .tag-filter-toggle {
    display: inline-flex;
  }

  .tag-filter.is-collapsed .tag-filter-list {
    display: none;
  }
}

.bookmarks-section {
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
}

.bookmarks-section.is-hidden {
  display: none;
}

.bookmarks-empty {
  margin-top: 1rem;
}
