/* Styles for the "En savoir plus" quick links */
.en-savoir-plus {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
    align-items: flex-start; /* don't stretch children — allow minimal width */
}

.en-savoir-plus > div {
	display: inline-flex; /* shrink-wrap to contents */
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.375rem;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
	width: -moz-fit-content;
	width: fit-content; /* minimal width based on content */
	white-space: nowrap; /* keep inner text on one line */
}

.en-savoir-plus > div:hover,
.en-savoir-plus > div:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.06);
	background-color: rgba(255, 215, 0, 0.04); /* subtle gold tint */
}

.en-savoir-plus i {
	min-width: 1.1em;
	text-align: center;
}

.en-savoir-plus a {
    color: inherit;
    text-decoration: none; /* no underline */
    display: inline-block; /* don't force the link to expand the row */
}

.en-savoir-plus a:focus {
	outline: 3px solid rgba(255, 215, 0, 0.25);
	outline-offset: 3px;
}

