/* used for the toggles of the title */
#title_toggle {
  display: none;
}

/* === ENHANCED MODE (:has() supported) === */
@supports selector(body:has(input:checked)) {
  /* Show the toggle */
  #title_toggle {
    display: inline-block;
  }
  /* Hide titles by default */
  #grid .title {
    display: none;
  }
  /* Show titles when checked */
  body:has(#toggleTitleShow:checked) #grid .title {
    display: block;
  }
}

/*# sourceMappingURL=category.css.map */
