/**
 * GRO-472 — link styling inside paragraph/WYSIWYG/body content.
 *
 * `.hp-wysiwyg` is added by the `hp_wysiwyg_block()` helper in functions.php
 * to every rich-text render output site-wide, so this single scoped rule
 * covers all paragraph/subtext/body/copy WYSIWYG fields without touching
 * button/CTA links (which are separate markup and never carry this class).
 */
.hp-wysiwyg a {
    color: #b87636;
    text-decoration: underline;
}

.hp-wysiwyg a:hover,
.hp-wysiwyg a:focus-visible {
    color: #b87636;
    text-decoration: underline;
}
