/*========================
* 
* 				HOME PAGE
* 
* ======================*/
/*---------------
 * Hero
 * -------------*/
/*---------------
 * Mise en avant
 * -------------*/
.cs3-rangee-apercu-categories .fl-col-group-equal-height {
	gap: 8px !important;
	flex-wrap: nowrap;
	padding-top: 8px;
    padding-bottom: 8px;
}

/* ==========================================================
CARTE CATÉGORIE CLIQUABLE
Zoom background + overlay
========================================================== */

.cs3-rangee-apercu-categories .item-click {
	cursor: pointer;
}


/* ----------------------------------------------------------
CONTENEUR PRINCIPAL
---------------------------------------------------------- */

.cs3-rangee-apercu-categories .item-click > .fl-col-content {
	position: relative;
	z-index: 0;
	overflow: hidden;
	isolation: isolate;
}


/* ----------------------------------------------------------
BACKGROUND
---------------------------------------------------------- */

.cs3-rangee-apercu-categories .item-click > .fl-col-content::before {
	content: "";

	position: absolute;
	inset: -4px;
	z-index: 0;

	background: inherit;

	transform: scale(1);
	transform-origin: center center;

	transition:
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

	will-change: transform;
	pointer-events: none;
}


/* Zoom */
.cs3-rangee-apercu-categories .item-click:hover > .fl-col-content::before,
.cs3-rangee-apercu-categories .item-click:focus-within > .fl-col-content::before {
	transform: scale(1.03);
}


/* ----------------------------------------------------------
OVERLAY SOMBRE
---------------------------------------------------------- */

.cs3-rangee-apercu-categories .item-click > .fl-col-content::after {
	content: "";

	position: absolute;
	inset: 0;
	z-index: 1;

	background-color: transparent;

	transition:
		background-color 0.8s cubic-bezier(0.22, 1, 0.36, 1);

	pointer-events: none;
}


.cs3-rangee-apercu-categories .item-click:hover > .fl-col-content::after,
.cs3-rangee-apercu-categories .item-click:focus-within > .fl-col-content::after {
	background-color: rgba(28, 28, 28, 0.30);
}


/* ----------------------------------------------------------
CONTENU
---------------------------------------------------------- */

.cs3-rangee-apercu-categories .item-click > .fl-col-content > * {
	position: relative;
	z-index: 2;
}


/* ----------------------------------------------------------
CARTE ENTIÈRE CLIQUABLE
---------------------------------------------------------- */

.cs3-rangee-apercu-categories .item-click .intertitre a {
	position: static;
}


.cs3-rangee-apercu-categories .item-click .intertitre a::after {
	content: "";

	position: absolute;
	inset: 0;
	z-index: 10;
}


/* ----------------------------------------------------------
FOCUS CLAVIER
---------------------------------------------------------- */

.cs3-rangee-apercu-categories .item-click .intertitre a:focus-visible::after {
	outline: 2px solid currentColor;
	outline-offset: -5px;
}
/* Respect des préférences d’accessibilité */
@media (prefers-reduced-motion: reduce) {
	.cs3-rangee-apercu-categories .item-click > .fl-col-content::before {
		transition: none;
	}

	.cs3-rangee-apercu-categories .item-click:hover > .fl-col-content::before,
	.cs3-rangee-apercu-categories .item-click:focus-within > .fl-col-content::before {
		transform: none;
	}
}
/*========== Responsive ==========*/
@media (max-width: 767px) {}