/**
 * Page « Formations » – Legal Family
 * Reprend la structure des pages « Nos experts » et « Nos articles » :
 * héros chaud, bandeau teal, sidebar catégories à gauche, grille 3×3 chevauchante.
 * Brand: #105050 (primary), #E67E22 / #EB6328 (accent), Anuphan + Montserrat.
 */

.lf-formations-wrapper {
	--lf-primary: #105050;
	--lf-primary-deep: #0c3d3d;
	--lf-accent: #E67E22;
	--lf-accent-hover: #d35400;
	--lf-warm-bg: #ffffff;
	--lf-section-bg: #faf8f5;
	--lf-overlap: 140px;
	--lf-section-gap: 3.5rem;
	--lf-section-gap-compact: 2.4rem;

	/* Card tokens (mirror home.css so vignettes match the homepage). */
	--brand: #105050;
	--pill: #0d3f3f;
	--font-heading: "Anuphan", sans-serif;

	padding-top: 0 !important;
	/* clip (not hidden) so it doesn't create a scroll container that breaks
	   position: sticky on the sidebar filter nav. */
	overflow-x: clip;
}

/* ── Hero ─────────────────────────────────────────────── */
.lf-formations-hero {
	background: var(--lf-warm-bg);
	width: 100%;
	padding: 56px 20px calc(64px + var(--lf-overlap));
	position: relative;
}

.lf-formations-hero__inner {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
	animation: lfFormationsFadeUp 0.6s ease both;
}

@keyframes lfFormationsFadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

.lf-formations-breadcrumb {
	font-size: 0.8125rem;
	color: rgba(16, 80, 80, 0.7);
	margin-bottom: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
	align-items: center;
}

.lf-formations-breadcrumb a {
	color: var(--lf-primary);
	text-decoration: none;
	font-weight: 600;
}

.lf-formations-breadcrumb a:hover { text-decoration: underline; }

.lf-formations-breadcrumb span[aria-hidden] { opacity: 0.4; }

.lf-formations-breadcrumb [aria-current="page"] { color: rgba(16, 80, 80, 0.75); }

.lf-formations-hero h1.lf-formations-hero__title {
	font-family: var(--font-heading);
	color: var(--lf-primary);
	font-size: 42px;
	font-weight: 800;
	margin: 0 0 0.45rem;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.lf-formations-hero__subtitle {
	color: var(--lf-primary);
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.6;
	opacity: 0.78;
	max-width: 720px;
	margin: 0 auto 0;
	display: block;
}

.lf-formations-hero__intro {
	color: var(--lf-primary);
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.7;
	opacity: 0.85;
}

.lf-formations-hero__intro p { margin: 0 0 0.5rem; }
.lf-formations-hero__intro p:last-child { margin-bottom: 0; }

/* ── Hero « Lire la suite » (details/summary — SEO/GEO) ─── */
.lf-formations-hero__more {
	margin: 0.85rem auto 0;
	text-align: center;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.lf-formations-hero__more-summary {
	color: var(--lf-accent);
	font-weight: 700;
	font-size: 0.78rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	list-style: none;
	transition: opacity 0.2s ease;
}

.lf-formations-hero__more-summary::-webkit-details-marker { display: none; }

.lf-formations-hero__more-summary:hover { opacity: 0.8; }

.lf-formations-hero__more-summary::before,
.lf-formations-hero__more-summary::after {
	content: "∨";
	display: inline-block;
	color: var(--lf-accent);
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
}

.lf-formations-hero__more[open] .lf-formations-hero__more-summary::before,
.lf-formations-hero__more[open] .lf-formations-hero__more-summary::after {
	content: "∧";
}

.lf-formations-hero__more-body {
	max-width: 720px;
	margin: 0.75rem auto 0;
	text-align: center;
	font-style: italic;
	color: var(--lf-primary);
	font-size: 0.78rem;
	line-height: 1.62;
	opacity: 0.82;
	animation: lfFormationsFadeUp 0.35s ease both;
}

.lf-formations-hero__more-body p { margin: 0 0 0.72rem; }
.lf-formations-hero__more-body p:last-child { margin-bottom: 0; }

.lf-formations-hero__more-body h2,
.lf-formations-hero__more-body h3 {
	font-family: var(--font-heading);
	color: var(--lf-primary);
	margin: 1.25rem 0 0.5rem;
	opacity: 1;
}
.lf-formations-hero__more-body h2:first-child,
.lf-formations-hero__more-body h3:first-child { margin-top: 0; }
.lf-formations-hero__more-body h2 { font-size: 1rem; font-weight: 800; }
.lf-formations-hero__more-body h3 { font-size: 0.95rem; font-weight: 700; }

.lf-formations-hero__inner::after {
	content: "";
	display: block;
	width: 42px;
	height: 2px;
	background: var(--lf-accent);
	margin: 0.55rem auto 0;
	border-radius: 2px;
	animation: lfFormationsAccent 0.5s 0.4s ease both;
}

@keyframes lfFormationsAccent {
	from { width: 0; }
	to { width: 42px; }
}

.lf-formations-hero__line {
	width: 100%;
	margin-top: 28px;
	height: 2px;
	background: var(--lf-primary);
	opacity: 0.15;
	flex-shrink: 0;
}

/* ── Main content ─────────────────────────────────────── */
.lf-formations-layout {
	background: var(--lf-section-bg);
	width: 100%;
}

.lf-formations-layout__inner {
	display: grid;
	grid-template-columns: 200px 1fr;
	column-gap: 32px;
	align-items: stretch;
	max-width: 1400px;
	min-height: 600px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Sidebar (left, 10 categories) ────────────────────── */
.lf-formations-sidebar {
	width: 100%;
	padding: 0.5rem 0 2.5rem 0;
	align-self: stretch;
}

@media (min-width: 1024px) {
	.lf-formations-sidebar__nav {
		position: sticky;
		top: 100px;
	}
}

.lf-formations-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lf-formations-sidebar__list li { margin-bottom: 0.1rem; }

.lf-formations-sidebar__link {
	display: block;
	padding: 0.45rem 0 0.45rem 0.85rem;
	color: rgba(16, 80, 80, 0.72);
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 1.5;
	border-left: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}

.lf-formations-sidebar__link:hover {
	color: var(--lf-primary);
	border-left-color: rgba(16, 80, 80, 0.35);
	padding-left: 1rem;
}

.lf-formations-sidebar__link.is-active {
	color: var(--lf-primary);
	font-weight: 700;
	border-left-color: var(--lf-accent);
	padding-left: 1rem;
}

/* ── Main content ─────────────────────────────────────── */
.lf-formations-main {
	width: 100%;
	min-width: 0;
	padding: 0 2rem 3.5rem 0;
	margin-top: calc(-1 * var(--lf-overlap));
	position: relative;
	z-index: 2;
}

.lf-formations-section + .lf-formations-section {
	margin-top: var(--lf-section-gap);
}

.lf-formations-section--compact {
	margin-top: var(--lf-section-gap-compact) !important;
}

.lf-formations-section:first-child {
	margin-top: 0;
}

.lf-formations-catalog + .lf-formations-reasons {
	margin-top: 2.5rem;
}

/* ── Catalogue head (titre dynamique + compteur + fraîcheur) ── */
.lf-formations-catalog__intro {
	margin-bottom: 0.55rem;
	max-width: 720px;
}

.lf-formations-catalog__title {
	font-family: var(--font-heading);
	color: var(--lf-primary);
	font-size: 1.55rem;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

/* ── Méta fraîcheur sous le catalogue — compteur + dernière MàJ ── */
.lf-formations-catalog__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 820px;
	margin: 1.6rem auto 0;
	color: rgba(16, 80, 80, 0.72);
	font-size: 0.8125rem;
	font-weight: 600;
	animation: lfFormationsFadeUp 0.5s 0.3s ease both;
}

.lf-formations-count {
	display: inline-flex;
	align-items: center;
}

.lf-formations-count::before {
	content: "";
	width: 7px;
	height: 7px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--lf-accent);
	box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.22);
}

.lf-formations-catalog__meta-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(16, 80, 80, 0.35);
}

.lf-formations-freshness {
	font-style: normal;
	color: rgba(16, 80, 80, 0.58);
	font-weight: 500;
}

/* ── Grille 3×3 ───────────────────────────────────────── */
.lf-formations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: auto;
	align-items: stretch;
	gap: 28px;
	margin-bottom: 0;
}

.lf-formations-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem 2rem;
	color: rgba(16, 80, 80, 0.78);
	font-size: 1rem;
}

/* ── Vignette formation (alignée sur la home) ─────────── */
.lf-formations-grid .formation-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .05);
	transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s ease;
	height: 100%;
	cursor: pointer;
	animation: lfFormationsCardReveal 0.5s ease both;
}

@keyframes lfFormationsCardReveal {
	from { opacity: 0; transform: translateY(22px); }
	to { opacity: 1; transform: translateY(0); }
}

.lf-formations-grid .formation-card:nth-child(1) { animation-delay: 0s; }
.lf-formations-grid .formation-card:nth-child(2) { animation-delay: 0.05s; }
.lf-formations-grid .formation-card:nth-child(3) { animation-delay: 0.1s; }
.lf-formations-grid .formation-card:nth-child(4) { animation-delay: 0.14s; }
.lf-formations-grid .formation-card:nth-child(5) { animation-delay: 0.18s; }
.lf-formations-grid .formation-card:nth-child(6) { animation-delay: 0.22s; }

.lf-formations-grid .formation-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
}

.lf-formations-grid .figure {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #f4f7f7;
}

.lf-formations-grid .formation-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform .25s ease;
}

.lf-formations-grid .formation-card:hover .formation-image { transform: scale(1.03); }

.lf-formations-grid .card-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px 16px 18px;
	flex: 1;
}

.lf-formations-grid .formation-card__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.lf-formations-grid .badge-avocat,
.lf-formations-grid .formation-card__category {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .02em;
	padding: 6px 12px;
	white-space: nowrap;
	line-height: 1.2;
}

.lf-formations-grid .badge-avocat {
	background: rgba(16, 80, 80, 0.08);
	color: var(--brand);
}

.lf-formations-grid .badge-avocat .cam { width: 14px; height: 14px; color: var(--brand); flex-shrink: 0; }

.lf-formations-grid .title {
	font-size: 16px;
	font-weight: 800;
	color: #222;
	line-height: 1.34;
	margin: 0;
	text-decoration: none;
	display: block;
}

.lf-formations-grid .title:hover { color: var(--lf-accent); }

.lf-formations-grid .trainer {
	display: inline-block;
	font-weight: 600;
	font-size: 12px;
	color: #6b7280;
	margin-left: 4px;
}

.lf-formations-grid .meta-short {
	font-size: 12.5px;
	color: var(--brand);
	font-weight: 600;
	margin: 0;
}

.lf-formations-grid .meta-short .emoji {
	width: 1em;
	height: 1em;
	vertical-align: -0.15em;
}

.lf-formations-grid .lf-home-price-pair,
.lf-formations-grid .meta-short .lf-price-pair { display: inline; font-weight: inherit; }

.lf-formations-grid .lf-home-price-pair__sep,
.lf-formations-grid .meta-short .lf-price-pair__sep { opacity: 0.55; font-weight: 500; }

.lf-formations-grid .lf-home-price-pair abbr,
.lf-formations-grid .meta-short .lf-price-pair .lf-price-pair__suffix {
	text-decoration: none;
	border-bottom: 0;
	cursor: help;
	font-size: 0.85em;
	font-weight: 700;
	opacity: 0.88;
}

.lf-formations-grid .cta-visible {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--brand);
	color: #fff !important;
	text-decoration: none;
	padding: 11px 14px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 3px 0 rgba(0, 0, 0, .06);
	transition: .18s ease;
}

.lf-formations-grid .cta-visible:hover { background: var(--lf-accent); }

/* ── Category pill on card (spécialité — mise en avant) ─ */
.lf-formations-grid .formation-card__category {
	background: var(--pill);
	color: #fff;
	text-decoration: none;
	transition: background .18s ease, color .18s ease;
}

.lf-formations-grid .formation-card__category:hover {
	background: var(--lf-accent);
	color: #fff;
}

/* ── Section « Pourquoi se former » (cartes atouts) ────── */
.lf-formations-reasons { margin: 0; }

.lf-formations-reasons__title {
	font-family: var(--font-heading);
	color: var(--lf-primary);
	font-size: 2rem !important;
	line-height: 1.15;
	font-weight: 800;
	margin: 0 0 1.5rem;
}

.lf-formations-reasons__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.lf-formations-reason {
	background: #fff;
	border: 1px solid rgba(16, 80, 80, 0.12);
	border-radius: 14px;
	padding: 1.5rem 1.35rem;
	box-shadow: 0 2px 8px rgba(16, 80, 80, 0.05);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lf-formations-reason:hover {
	background: #fff;
	box-shadow: 0 6px 18px rgba(16, 80, 80, 0.1);
	transform: translateY(-2px);
}

.lf-formations-reason__title {
	font-family: var(--font-heading);
	color: var(--lf-primary);
	font-size: 1.05rem;
	font-weight: 800;
	margin: 0 0 0.65rem;
	letter-spacing: -0.01em;
}

.lf-formations-reason__text {
	color: rgba(16, 80, 80, 0.82);
	font-size: 0.9375rem;
	line-height: 1.65;
	margin: 0;
}

.lf-formations-reason__title::before {
	content: "";
	display: block;
	width: 32px;
	height: 3px;
	background: var(--lf-accent);
	border-radius: 2px;
	margin-bottom: 0.75rem;
}

/* ── Maillage interne (cross-links) ───────────────────── */
.lf-formations-crosslinks {
	margin: 0;
	padding: 2rem 0 0;
	border-top: 1px solid rgba(16, 80, 80, 0.14);
}

.lf-formations-crosslinks__title,
.lf-formations-faq__title {
	font-family: var(--font-heading);
	color: var(--lf-primary);
	font-weight: 800;
	margin: 0 0 1.1rem;
}

.lf-formations-crosslinks__title {
	font-size: 2rem !important;
	line-height: 1.15;
}

.lf-formations-faq__title {
	font-size: 2rem !important;
	line-height: 1.15;
}

.lf-formations-crosslinks__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-bottom: 1.5rem;
}

.lf-formations-crosslink {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid rgba(16, 80, 80, 0.12);
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(16, 80, 80, 0.05);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lf-formations-crosslink:hover {
	background: #fff;
	border-color: var(--lf-accent);
	box-shadow: 0 6px 18px rgba(16, 80, 80, 0.1);
	transform: translateY(-2px);
}

.lf-formations-crosslink__label {
	color: var(--lf-primary);
	font-weight: 700;
	font-size: 1.05rem;
}

.lf-formations-crosslink__label::after {
	content: " →";
	color: var(--lf-accent);
}

.lf-formations-crosslink__desc {
	color: rgba(16, 80, 80, 0.75);
	font-size: 0.875rem;
	line-height: 1.5;
}

.lf-formations-crosslinks__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.lf-formations-crosslinks__tags-label {
	color: rgba(16, 80, 80, 0.7);
	font-size: 0.875rem;
	font-weight: 600;
	margin-right: 4px;
}

.lf-formations-tag {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(16, 80, 80, 0.06);
	border: 1px solid rgba(16, 80, 80, 0.14);
	color: var(--lf-primary);
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lf-formations-tag:hover {
	background: var(--lf-accent);
	border-color: var(--lf-accent);
	color: #fff;
}

/* ── FAQ (GEO) — format retravaillé ───────────────────── */
.lf-formations-faq { margin: 0; }

.lf-formations-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lf-formations-faq__item {
	position: relative;
	background: #fff;
	border: 1px solid rgba(16, 80, 80, 0.12);
	border-radius: 14px;
	padding: 2px 20px 2px 22px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(16, 80, 80, 0.05);
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

/* Rail d'accent à gauche, révélé à l'ouverture. */
.lf-formations-faq__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--lf-accent);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.25s ease;
}

.lf-formations-faq__item:hover { border-color: rgba(16, 80, 80, 0.22); }

.lf-formations-faq__item[open] {
	background: #fff;
	border-color: rgba(230, 126, 34, 0.45);
	box-shadow: 0 4px 14px rgba(16, 80, 80, 0.08);
}

.lf-formations-faq__item[open]::before { transform: scaleY(1); }

.lf-formations-faq__q {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--lf-primary);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
	padding: 16px 0;
	cursor: pointer;
	list-style: none;
}

.lf-formations-faq__q::-webkit-details-marker { display: none; }

/* Bouton circulaire +/− à droite. */
.lf-formations-faq__q::after {
	content: "";
	margin-left: auto;
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1.5px solid rgba(230, 126, 34, 0.55);
	background:
		linear-gradient(var(--lf-accent), var(--lf-accent)) center / 11px 1.5px no-repeat,
		linear-gradient(var(--lf-accent), var(--lf-accent)) center / 1.5px 11px no-repeat;
	transition: transform 0.3s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.lf-formations-faq__item[open] .lf-formations-faq__q::after {
	transform: rotate(135deg);
	background:
		linear-gradient(#fff, #fff) center / 11px 1.5px no-repeat;
	background-color: var(--lf-accent);
	border-color: var(--lf-accent);
}

.lf-formations-faq__a {
	color: rgba(16, 80, 80, 0.84);
	font-size: 0.9375rem;
	line-height: 1.65;
	padding: 0 38px 16px 0;
	animation: lfFormationsFadeUp 0.35s ease both;
}

.lf-formations-faq__a p { margin: 0; }

/* ── Tablet ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.lf-formations-wrapper {
		--lf-overlap: 110px;
	}

	.lf-formations-layout__inner {
		grid-template-columns: 200px 1fr;
		column-gap: 24px;
	}

	.lf-formations-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.lf-formations-reasons__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
	.lf-formations-wrapper {
		--lf-section-gap: 3.5rem;
		--lf-section-gap-compact: 2.25rem;
	}

	.lf-formations-layout__inner {
		display: block;
		padding: 0 16px;
	}

	.lf-formations-sidebar {
		width: 100%;
		padding: 1.25rem 0;
		position: static;
	}

	.lf-formations-sidebar__list {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 0;
		padding-bottom: 0.25rem;
		-webkit-overflow-scrolling: touch;
	}

	.lf-formations-sidebar__list li { flex: 0 0 auto; margin-bottom: 0; }

	.lf-formations-sidebar__link {
		white-space: nowrap;
		padding: 0.35rem 0.75rem;
		border-left: none;
		border-bottom: 2px solid transparent;
		font-size: 0.875rem;
	}

	.lf-formations-sidebar__link:hover {
		padding-left: 0.75rem;
		border-left: none;
		border-bottom-color: rgba(16, 80, 80, 0.35);
	}

	.lf-formations-sidebar__link.is-active {
		padding-left: 0.75rem;
		border-left: none;
		border-bottom-color: var(--lf-accent);
	}

	.lf-formations-main {
		margin-top: 0;
		padding: 1.25rem 0 2rem;
	}

	.lf-formations-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.lf-formations-hero { padding: 2rem 1rem 1.5rem; }

	.lf-formations-hero h1.lf-formations-hero__title { font-size: 1.7rem; }

	.lf-formations-hero__subtitle,
	.lf-formations-hero__intro { font-size: 0.95rem; }

	.lf-formations-hero__more {
		max-width: 100%;
	}

	.lf-formations-hero__more-body {
		font-size: 0.75rem;
	}

	.lf-formations-crosslinks__grid { grid-template-columns: 1fr; }

	.lf-formations-crosslinks__title,
	.lf-formations-reasons__title,
	.lf-formations-faq__title {
		font-size: 1.65rem !important;
	}

	.lf-formations-grid .formation-card { animation-delay: 0s !important; }

	.lf-formations-catalog__title {
		font-size: 1.2rem;
	}

	.lf-formations-reasons__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.lf-formations-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* ── Accessibilité : mouvement réduit ─────────────────── */
@media (prefers-reduced-motion: reduce) {
	.lf-formations-hero__inner,
	.lf-formations-hero__inner::after,
	.lf-formations-grid .formation-card,
	.lf-formations-hero__more-body,
	.lf-formations-faq__a {
		animation: none !important;
	}

	.lf-formations-reason,
	.lf-formations-crosslink,
	.lf-formations-faq__item,
	.lf-formations-faq__item::before,
	.lf-formations-faq__q::after,
	.lf-formations-hero__more-summary::before,
	.lf-formations-hero__more-summary::after {
		transition: none !important;
	}
}
