/*
 * Custom cursor (frontend only)
 * Hotspot 0 0 = top-left, gedraagt zich als standaard muispijl.
 * Fallback: 'auto' / 'pointer' voor browsers die SVG-cursors niet ondersteunen.
 */

html,
body {
    cursor: url("../img/cursor.svg") 0 0, auto;
}

a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"],
label[for],
summary,
.fusion-button,
.fusion-read-more {
    cursor: url("../img/cursor-hover.svg") 0 0, pointer;
}
