/*------- CARDS -------*/

/** 
 * https://kittygiraudel.com/2022/04/02/accessible-cards/
*/
.uex-accesibility-card {
	position: relative; /* 2 */
  }
  
.uex-accesibility-card .card-body{
	position: static; /* 2 */
  }
/** 
 * https://kittygiraudel.com/2022/04/02/accessible-cards/
 * 1. Use a pseudo-element to expand the hitbox of the link over
 *    the whole card.
 * 2. Expand the hitbox over the whole card.
 * 3. Show that the card is interactive.
 */

.uex-accesibility-card-title>a::before {

	content: ""; /* 1 */
	position: absolute; /* 2 */
	top: 0; /* 2 */
	left: 0; /* 2 */
	right: 0; /* 2 */
	bottom: 0; /* 2 */
	z-index: 1;
}

.uex-accesibility-card-text {
	position: relative; /* 2 */
	z-index: 2; /* 2 */
}

.uex-accesibility-card-title>a {
	color: #212529;
}
.uex-accesibility-card-title>a:not(.btn):hover {
	color: #0B8068;
	text-decoration-color: #00B28C;
}