/*
 * Neutralises the colour Hello Elementor's reset.css imposes on bare elements.
 *
 * The parent reset paints every plain link #c36 (a pink), link hover #336, and
 * every <button> / [type="submit"] with a pink border that fills pink on hover
 * and focus - the magenta disc behind the menu chevrons on the live site came
 * from exactly that rule. The brand is monochrome, so this sheet re-declares
 * the same selectors at the same specificity in grey.
 *
 * It is enqueued AFTER the parent reset and BEFORE housess.css on purpose. It
 * has to follow the reset to win against it, and it has to precede the theme
 * so an equal-specificity theme rule (`.hsx-btn` at 0,1,0 against
 * `[type="submit"]` at 0,1,0) keeps winning by source order exactly as it
 * did against the parent. Do not merge this into housess-chrome.css.
 */
a{color:inherit;}
a:active,a:hover{color:inherit;}
[type="button"],[type="submit"],button{border-color:var(--line);border-radius:var(--r-sm);color:inherit;}
[type="button"]:focus,[type="button"]:hover,[type="submit"]:focus,[type="submit"]:hover,button:focus,button:hover{
background-color:var(--surface);color:var(--ink);}
