
/* G6M_DASH_REACTIONS_LINK_V544 */
html body .g6m-dash__card--link {
	display: flex !important;
	flex-direction: column !important;
	text-decoration: none !important;
	color: inherit !important;
	cursor: pointer !important;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}
html body .g6m-dash__card--link:hover {
	transform: translateY(-2px) !important;
	border-color: rgba(255, 92, 168, 0.55) !important;
	box-shadow: 0 8px 22px rgba(255, 92, 168, 0.18) !important;
}
html body .g6m-dash__card--link .g6m-dash__card-value,
html body .g6m-dash__card--link .g6m-dash__card-label {
	color: inherit !important;
	-webkit-text-fill-color: currentColor !important;
}
/* END G6M_DASH_REACTIONS_LINK_V544 */


/* G6M_DASH_HEART_RED_V2 — la carte Reactions n'avait aucun accent : elle
   heritait du blanc impose par .g6m-dash__card--link, qui pose
   color:inherit + -webkit-text-fill-color:currentColor en !important.
   A specificite egale (0,2,2) cette regle gagnait par l'ordre source ;
   on chaine donc les deux modificateurs pour passer a (0,3,2). */
html body .g6m-dash__card--heart {
	--g6m-dash-heart: #ff2d55;
	border-left-color: var(--g6m-dash-heart) !important;
	border-color: rgba(255, 45, 85, 0.38) !important;
}
html body .g6m-dash__card--heart.g6m-dash__card--link .g6m-dash__card-label,
html body .g6m-dash__card--heart.g6m-dash__card--link .g6m-dash__card-value,
html body .g6m-dash__card--heart.g6m-dash__card--link .g6m-dash__card-icon,
html body .g6m-dash__card--heart.g6m-dash__card--link .g6m-dash__card-icon i,
html body .g6m-dash__card--heart .g6m-dash__card-label,
html body .g6m-dash__card--heart .g6m-dash__card-value,
html body .g6m-dash__card--heart .g6m-dash__card-icon,
html body .g6m-dash__card--heart .g6m-dash__card-icon i {
	color: var(--g6m-dash-heart) !important;
	-webkit-text-fill-color: var(--g6m-dash-heart) !important;
}
html body .g6m-dash__card--heart:hover {
	border-color: rgba(255, 45, 85, 0.65) !important;
	box-shadow: 0 8px 22px rgba(255, 45, 85, 0.20) !important;
}
/* G6M_DASH_HEART_BAR — le liseré vertical est un ::before de 3px, pas la
   bordure. Sans regle, --heart heritait du blanc par defaut ; les autres
   cartes colorent ce meme pseudo-element (ex. --dl : rgb(94,234,212)). */
html body .g6m-dash__card--heart::before {
	background: var(--g6m-dash-heart, #ff2d55) !important;
	background-color: var(--g6m-dash-heart, #ff2d55) !important;
}