/* Prevent text cursor on non-editable elements */
*, *:before, *:after {
    caret-color: transparent;
}

input, textarea, [contenteditable], [contenteditable="true"] {
    caret-color: auto !important;
}

/* Specifically target the hero title */
.hero-title, #heroTitle {
    caret-color: transparent !important;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
    border: none;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}
