/* KSWX — Working Process section (homepage "Onze Werkwijze") link/hover tweaks.
   Pairs with inc/kswx-process.php. Linked steps wrap their card in <a>;
   non-linked steps get .process-box--static and have the parent hover colour
   change suppressed so they don't look clickable. */

/* Make the whole card clickable without changing its look. */
.process-box--link .process-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

/* Static (no-link) card: freeze the hover state back to the resting state.
   Values mirror the parent defaults; gold = theme primaryclr (#e8b130),
   navy = secondaryclr (#1b2232). */
.process-box--static:hover .process-icon i {
	background-color: #ffffff !important;
	color: #191919 !important;
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
}
.process-box--static:hover .process-icon {
	border-color: #ffad2b !important;
}
.process-box--static:hover .process-icon:before,
.process-box--static:hover .process-icon:after {
	background-color: #ffffff !important;
}
.process-box--static:hover .process-number {
	background-color: #e8b130 !important;
	color: #1b2232 !important;
}
