/* Пиксельный курсор HOWEMINE. Вынесен в отдельный файл, чтобы SVG не переписывался компилятором шаблона.
   !important нужен: у кнопок и карточек курсор задан инлайново (cursor: pointer). */
html, body, * { cursor: url('assets/cursor-pixel.svg') 2 2, auto; }

a, button, label, summary, [role="button"],
[style*="cursor:pointer"], [style*="cursor: pointer"],
input[type="checkbox"], input[type="radio"], input[type="range"], input[type="file"], input[type="submit"] {
  cursor: url('assets/cursor-pixel.svg') 2 2, pointer !important;
}

input[type="text"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], textarea,
[style*="cursor:text"], [style*="cursor: text"] {
  cursor: url('assets/cursor-pixel.svg') 2 2, text !important;
}
