/* Active la carte cliquable */
.has-stretched-link {
	position: relative;
}

/* Overlay cliquable qui couvre toute la carte */
.has-stretched-link > .stretched-link {
	position: absolute;
	z-index: 1;

	text-decoration: none;

	color: inherit;

	inset: 0; /* top/right/bottom/left:0 */
}

.has-stretched-link > .stretched-link:after {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	content: "";
	cursor: pointer;
}

/* Focus visible et hover sur la carte */
.has-stretched-link > .stretched-link:focus {
	outline: 2px solid var(--wp--preset--color--contrast, #0a66ff);
	outline-offset: 2px;
}

/* Conserve la clicabilité des éléments interactifs internes */
.has-stretched-link :is(a, button, input, select, textarea) {
	position: relative;
	z-index: 2; /* au-dessus de l'overlay */
}

.has-stretched-link :is(a, button) {
	cursor: initial;
} /* excepté les éléments interactifs */
