/**
 * fd-overrides.css — small theme fixes that must NOT live in the legacy
 * base/extend/mobile.css (those load via an unversioned @import behind a
 * 1-year Kinsta edge cache). Enqueued with a filemtime() version so changes
 * actually ship. Keep additions small and well-commented.
 */

/* Button hover fix.
 * The legacy rule (extend.css ~L326) sets `color:#FB6654 !important` (orange)
 * and `background:#fff` (no !important) on a.wp-block-button__link:hover. But
 * WordPress preset color classes (.has-*-background-color) carry !important,
 * so the CONTACT US button (white text on icon-orange) kept its orange
 * background on hover -> orange text on orange = the label vanished.
 * Force the intended invert: orange text on a real white background. */
a.wp-block-button__link:hover {
	background-color: #ffffff !important;
	color: #FB6654 !important;
	border: 1px solid #FB6654 !important;
}
