/* Identité FPA360 v3 — alignée sur la maquette de référence "thématiques
   v3" fournie par Philippe : palette cyan/teal/indigo/violet/plum, police
   Poppins unique, cadres uniformes avec ombre légère et rayon généreux
   (14px), pour une lisibilité et un alignement cohérents sur tout le
   site. Les anciennes variables (--fpa-navy, --fpa-terracotta...) sont
   conservées telles quelles pour ne pas avoir à modifier chaque fichier
   PHP qui les référence déjà en ligne — seules leurs VALEURS changent. */
:root {
	/* Palette de référence (thématiques v3) */
	--fpa-cyan: #007E9E; --fpa-cyan-deep: #045C74; --fpa-cyan-tint: #E3F2F6;
	--fpa-teal: #157F72; --fpa-teal-deep: #0F5A50; --fpa-teal-tint: #E1F2EF;
	--fpa-indigo: #3E5C99; --fpa-indigo-deep: #2C4270; --fpa-indigo-tint: #E8EBF5;
	--fpa-violet: #6E5AA8; --fpa-violet-deep: #4F3F7A; --fpa-violet-tint: #F0EBF7;
	--fpa-plum: #8C5A82; --fpa-plum-deep: #6B4363; --fpa-plum-tint: #F5EAF1;

	/* Anciennes variables, réalignées sur la nouvelle identité — la
	   rotation à 4 couleurs (menthe/lavande/ciel/pêche) devient la
	   rotation à 5 couleurs de la référence (cyan/teal/indigo/violet/
	   plum), réutilisée en 4n pour rester compatible avec le CSS existant
	   qui boucle sur nth-of-type(4n+X). */
	--fpa-ciel: var(--fpa-cyan-tint); --fpa-ciel-deep: var(--fpa-cyan);
	--fpa-menthe: var(--fpa-teal-tint); --fpa-menthe-deep: var(--fpa-teal);
	--fpa-lavande: var(--fpa-indigo-tint); --fpa-lavande-deep: var(--fpa-indigo);
	--fpa-peche: var(--fpa-violet-tint); --fpa-peche-deep: var(--fpa-violet);

	--fpa-navy: #12232A;         /* encre — "ink" de la référence */
	--fpa-navy-soft: #52646D;    /* "ink-soft" de la référence */
	--fpa-terracotta: #007E9E;   /* cyan — couleur d'action principale */
	--fpa-terracotta-soft: #E3F2F6;
	--fpa-text: #12232A;
	--fpa-muted: #52646D;
	--fpa-bg-soft: #F6F8F9;
	--fpa-line: #DCE3E4;
	--fpa-card-line: #E9ECED;
	--fpa-radius: 14px;
	--fpa-shadow: 0 1px 2px rgba(18,35,42,0.03), 0 8px 20px -14px rgba(18,35,42,0.14);
	--fpa-shadow-hover: 0 14px 28px -14px rgba(18,35,42,0.22);
}

/* Police unique (Poppins) sur tout le site — remplace Be Vietnam Pro +
   IBM Plex Mono, pour une identité plus resserrée comme dans la
   référence, qui n'emploie qu'une seule famille du début à la fin. */
body {
	font-family: 'Poppins', "Segoe UI", sans-serif;
}
h1, h2, h3 { font-weight: 600; letter-spacing: -0.01em; }
.fpa-mono { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: .06em; }
.fpa-formation-carte:hover { box-shadow: var(--fpa-shadow-hover); transform: translateY(-3px); }

/* ---- Zones de glisser-déposer, générées automatiquement autour de
   chaque champ fichier par fpa-drag-drop.js ---- */
.fpa-dropzone {
	position: relative;
	display: block;
	border: 1.5px dashed var(--fpa-line, #DCE3E4);
	border-radius: 10px;
	padding: 14px 16px;
	background: var(--fpa-bg-soft, #F6F8F9);
	text-align: center;
	transition: border-color .15s ease, background .15s ease;
	max-width: 420px;
}
.fpa-dropzone.survol {
	border-color: var(--fpa-cyan, #007E9E);
	background: var(--fpa-cyan-tint, #E3F2F6);
}
.fpa-dropzone.a-un-fichier {
	border-style: solid;
	border-color: var(--fpa-teal, #157F72);
	background: var(--fpa-teal-tint, #E1F2EF);
}
.fpa-dropzone-texte {
	display: block;
	font-size: 12.5px;
	color: var(--fpa-navy-soft, #52646D);
	margin-bottom: 8px;
	pointer-events: none;
}
.fpa-dropzone.a-un-fichier .fpa-dropzone-texte {
	color: var(--fpa-teal-deep, #0F5A50);
	font-weight: 600;
}
.fpa-dropzone-input {
	display: block;
	width: 100%;
	font-size: 12.5px;
	cursor: pointer;
}
/* Variante "lien" (soumission d'exercice DropNow) — même cadre en
   pointillés que le dépôt de fichier, mais le champ reste un texte normal
   (curseur texte, pas "cliquer pour parcourir"). */
.fpa-dropzone-lien .fpa-dropzone-input {
	cursor: text;
	border: 1px solid var(--fpa-line);
	border-radius: 8px;
	padding: 8px 10px;
	background: #fff;
}

.fpa-form { max-width: 480px; margin: 1em 0; font-family: inherit; }
.fpa-form label { display: block; font-weight: 600; margin: 0.6em 0 0.3em; color: var(--fpa-navy); }
.fpa-form input[type="text"],
.fpa-form input[type="date"],
.fpa-form input[type="url"],
.fpa-form select,
.fpa-form textarea { width: 100%; padding: 9px 11px; border: 1px solid var(--fpa-line); border-radius: 8px; font-family: inherit; }
.fpa-btn {
	background: var(--fpa-cyan);
	color: #fff;
	border: none;
	padding: 11px 22px;
	border-radius: 100px;
	cursor: pointer;
	margin-top: 0.8em;
	font-weight: 700;
	font-family: inherit;
	transition: background .16s ease, transform .16s ease;
}
.fpa-btn:hover { background: var(--fpa-cyan-deep); transform: translateY(-1px); }
.fpa-btn-ghost {
	background: transparent;
	color: var(--fpa-navy);
	border: 1.5px solid var(--fpa-line);
}
.fpa-btn-ghost:hover { background: transparent; transform: none; border-color: var(--fpa-cyan); color: var(--fpa-cyan); }
.fpa-notice {
	padding: 12px 16px;
	background: var(--fpa-bg-soft);
	border-radius: 10px;
	margin: 1em 0;
	color: var(--fpa-text);
}
.fpa-notice-success {
	background: var(--fpa-teal-tint);
	color: var(--fpa-teal-deep);
}

/* ---- En-tête de formation — cadre net, ombre légère comme les cartes
   de la référence, plus de dégradé décoratif ---- */
.fpa-hero {
	background-color: #fff;
	border: 1px solid var(--fpa-card-line);
	box-shadow: var(--fpa-shadow);
	color: var(--fpa-text);
	padding: 48px 40px;
	border-radius: var(--fpa-radius);
	margin-bottom: 28px;
}
.fpa-hero-eyebrow { font-weight: 700; color: var(--fpa-cyan); font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.fpa-hero-eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--fpa-cyan); display: inline-block; }
.fpa-hero h1 { color: var(--fpa-text); margin: 0 0 16px; font-size: 32px; line-height: 1.2; font-weight: 700; }
.fpa-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.fpa-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1.5px solid var(--fpa-line);
	color: var(--fpa-text);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}
.fpa-badge svg { width: 14px; height: 14px; }
.fpa-badge:nth-of-type(5n+1) { border-color: var(--fpa-cyan); color: var(--fpa-cyan); }
.fpa-badge:nth-of-type(5n+2) { border-color: var(--fpa-teal); color: var(--fpa-teal); }
.fpa-badge:nth-of-type(5n+3) { border-color: var(--fpa-indigo); color: var(--fpa-indigo); }
.fpa-badge:nth-of-type(5n+4) { border-color: var(--fpa-violet); color: var(--fpa-violet); }
.fpa-badge:nth-of-type(5n+5) { border-color: var(--fpa-plum); color: var(--fpa-plum); }

/* ---- Objectifs pédagogiques — même cadre net que le reste ---- */
.fpa-objectifs {
	background: #fff;
	border: 1px solid var(--fpa-card-line);
	box-shadow: var(--fpa-shadow);
	border-radius: var(--fpa-radius);
	padding: 22px 26px;
	margin: 24px 0;
}
.fpa-objectifs h2 { margin-top: 0; font-size: 17px; color: var(--fpa-text); display: flex; align-items: center; gap: 9px; }
.fpa-objectifs h2::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--fpa-indigo); flex-shrink: 0; }
.fpa-objectifs ul { margin: 0; padding-left: 20px; }
.fpa-objectifs li { margin-bottom: 6px; }

/* ---- Programme (table des matières) — icônes en rotation de teintes
   sur 5 couleurs, cadre net et aligné ---- */
.fpa-programme { list-style: none; margin: 0; padding: 0; }
.fpa-etape-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--fpa-card-line);
	border-radius: var(--fpa-radius);
	margin-bottom: 10px;
	background: #fff;
	box-shadow: var(--fpa-shadow);
}
.fpa-etape-item.is-locked { opacity: .5; box-shadow: none; }
.fpa-etape-icon {
	width: 36px; height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--fpa-bg-soft);
	display: flex; align-items: center; justify-content: center;
	color: var(--fpa-navy-soft);
}
.fpa-etape-icon svg { width: 18px; height: 18px; }
.fpa-etape-item:not(.is-locked):nth-of-type(5n+1) .fpa-etape-icon { background: var(--fpa-cyan-tint); color: var(--fpa-cyan); }
.fpa-etape-item:not(.is-locked):nth-of-type(5n+2) .fpa-etape-icon { background: var(--fpa-teal-tint); color: var(--fpa-teal); }
.fpa-etape-item:not(.is-locked):nth-of-type(5n+3) .fpa-etape-icon { background: var(--fpa-indigo-tint); color: var(--fpa-indigo); }
.fpa-etape-item:not(.is-locked):nth-of-type(5n+4) .fpa-etape-icon { background: var(--fpa-violet-tint); color: var(--fpa-violet); }
.fpa-etape-item:not(.is-locked):nth-of-type(5n+5) .fpa-etape-icon { background: var(--fpa-plum-tint); color: var(--fpa-plum); }
.fpa-etape-titre { font-weight: 600; color: var(--fpa-text); flex: 1; }
.fpa-etape-titre a { color: inherit; text-decoration: none; }
.fpa-etape-titre a:hover { color: var(--fpa-cyan); }
.fpa-etape-statut { font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--fpa-muted); white-space: nowrap; }
.fpa-etape-statut.done { color: var(--fpa-teal); }

/* ---- Colonne latérale de progression — frise verticale ---- */
.fpa-course-sidebar { width: 300px; flex-shrink: 0; position: sticky; top: 28px; }
.fpa-tracker { background: #fff; border: 1px solid var(--fpa-card-line); box-shadow: var(--fpa-shadow); border-radius: var(--fpa-radius); padding: 24px; }
.fpa-tracker-pct { font-weight: 700; font-size: 22px; color: var(--fpa-cyan); }
.fpa-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.fpa-timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: var(--fpa-line); }
.fpa-t-item { position: relative; padding-left: 34px; padding-bottom: 18px; font-size: 13.5px; }
.fpa-t-item:last-child { padding-bottom: 0; }
.fpa-t-dot {
	position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700;
	border: 2px solid var(--fpa-line); background: #fff; color: var(--fpa-muted);
	z-index: 1;
}
.fpa-t-item.done:nth-of-type(5n+1) .fpa-t-dot { background: var(--fpa-cyan-tint); border-color: var(--fpa-cyan); color: var(--fpa-cyan); }
.fpa-t-item.done:nth-of-type(5n+2) .fpa-t-dot { background: var(--fpa-teal-tint); border-color: var(--fpa-teal); color: var(--fpa-teal); }
.fpa-t-item.done:nth-of-type(5n+3) .fpa-t-dot { background: var(--fpa-indigo-tint); border-color: var(--fpa-indigo); color: var(--fpa-indigo); }
.fpa-t-item.done:nth-of-type(5n+4) .fpa-t-dot { background: var(--fpa-violet-tint); border-color: var(--fpa-violet); color: var(--fpa-violet); }
.fpa-t-item.done:nth-of-type(5n+5) .fpa-t-dot { background: var(--fpa-plum-tint); border-color: var(--fpa-plum); color: var(--fpa-plum); }
.fpa-t-item.locked .fpa-t-dot { opacity: .55; }
.fpa-t-item a { color: inherit; text-decoration: none; }
.fpa-t-item a:hover { color: var(--fpa-cyan); }
.fpa-t-item.locked { color: var(--fpa-muted); }
.fpa-seal { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--fpa-line); display: flex; align-items: center; gap: 12px; }
.fpa-seal-badge {
	width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--fpa-plum);
	background: var(--fpa-plum-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fpa-seal-badge svg { width: 16px; height: 16px; color: var(--fpa-plum-deep); }
.fpa-seal-text { font-size: 12px; color: var(--fpa-muted); line-height: 1.4; }
.fpa-seal-text strong { display: block; color: var(--fpa-text); font-size: 13px; }

/* ---- Étapes affichées intégralement sur la page de formation ---- */
.fpa-etape-page { margin-bottom: 12px; border-radius: var(--fpa-radius); overflow: hidden; border: 1px solid var(--fpa-card-line); box-shadow: var(--fpa-shadow); }
.fpa-etape-page.is-locked { box-shadow: none; }
.fpa-etape-entete-page {
	display: flex; align-items: center; gap: 12px; padding: 14px 16px;
	background: var(--fpa-bg-soft); cursor: pointer;
}
.fpa-etape-page.is-locked .fpa-etape-entete-page { cursor: default; opacity: .55; }
.fpa-etape-entete-page .fpa-etape-titre { flex: 1; font-weight: 600; }
.fpa-toggle-etape-page { background: none; border: none; cursor: pointer; color: var(--fpa-muted); font-size: 16px; }
.fpa-etape-page.is-open .fpa-toggle-etape-page { transform: rotate(180deg); }
.fpa-etape-corps { padding: 20px 22px; display: none; border-top: 1px solid var(--fpa-card-line); background: #fff; }
.fpa-etape-page.is-open .fpa-etape-corps { display: block; }
.fpa-etape-verrou-note { padding: 12px 16px; font-size: 13px; color: var(--fpa-muted); font-style: italic; margin: 0; background: #fff; }
.fpa-etape-page:not(.is-locked):nth-of-type(5n+1) .fpa-etape-icon { background: var(--fpa-cyan-tint); color: var(--fpa-cyan); }
.fpa-etape-page:not(.is-locked):nth-of-type(5n+2) .fpa-etape-icon { background: var(--fpa-teal-tint); color: var(--fpa-teal); }
.fpa-etape-page:not(.is-locked):nth-of-type(5n+3) .fpa-etape-icon { background: var(--fpa-indigo-tint); color: var(--fpa-indigo); }
.fpa-etape-page:not(.is-locked):nth-of-type(5n+4) .fpa-etape-icon { background: var(--fpa-violet-tint); color: var(--fpa-violet); }
.fpa-etape-page:not(.is-locked):nth-of-type(5n+5) .fpa-etape-icon { background: var(--fpa-plum-tint); color: var(--fpa-plum); }

@media (max-width: 900px) {
	.fpa-course-layout { flex-direction: column; }
	.fpa-course-sidebar { width: 100% !important; position: static !important; }
}

/* ---- Constructeur formateur : blocs d'étapes repliables ---- */
.fpa-etape-bloc {
	border: 1px solid var(--fpa-card-line);
	border-radius: var(--fpa-radius);
	margin-bottom: 10px;
	background: #fff;
	overflow: hidden;
	box-shadow: var(--fpa-shadow);
}
.fpa-etape-bloc.dragging { opacity: .4; }
.fpa-etape-bloc.drag-over { border-color: var(--fpa-cyan); }
.fpa-etape-entete {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	cursor: pointer;
	background: var(--fpa-bg-soft);
}
.fpa-etape-poignee { cursor: grab; color: var(--fpa-muted); letter-spacing: -2px; }
.fpa-etape-numero-badge {
	background: var(--fpa-navy); color: #fff; font-size: 12px; font-weight: 700;
	width: 22px; height: 22px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fpa-etape-resume { flex: 1; font-weight: 600; color: var(--fpa-text); }
.fpa-etape-type-badge {
	font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
	color: var(--fpa-muted); background: #fff; border: 1px solid var(--fpa-line);
	padding: 3px 10px; border-radius: 999px;
}
.fpa-supprimer-etape, .fpa-toggle-etape {
	background: none; border: none; cursor: pointer; color: var(--fpa-muted);
	font-size: 16px; padding: 2px 6px;
}
.fpa-supprimer-etape:hover { color: var(--fpa-plum); }
.fpa-etape-contenu { padding: 4px 16px 16px; display: none; }
.fpa-etape-bloc.is-open .fpa-etape-contenu { display: block; }
.fpa-etape-bloc.is-open .fpa-toggle-etape { transform: rotate(180deg); }

/* ---- Barre utilisateur — visible sur tout le site ---- */
.fpa-barre-utilisateur {
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--fpa-line);
	color: var(--fpa-text);
	font-size: 13px;
}
.fpa-barre-inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 8px 20px;
	display: flex;
	align-items: center;
	gap: 18px;
}
.fpa-barre-utilisateur a { color: var(--fpa-cyan); text-decoration: none; font-weight: 600; }
.fpa-barre-utilisateur a:hover { color: var(--fpa-cyan-deep); }
.fpa-barre-salutation { color: var(--fpa-muted); margin-right: auto; font-weight: 400; }
.fpa-pastille {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--fpa-plum);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

/* ---- Coquille de tableau de bord ---- */
.fpa-dashboard-shell {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	max-width: 1300px;
	margin: 0 auto;
	padding: 40px 20px;
}
.fpa-dashboard-nav { width: 220px; flex-shrink: 0; }
.fpa-dash-profil { margin-bottom: 20px; }
.fpa-dash-nom { font-weight: 700; color: var(--fpa-text); margin: 0; }
.fpa-dash-role { font-size: 13px; color: var(--fpa-muted); margin: 0; }
.fpa-dash-nav-groupe {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--fpa-muted);
	margin: 18px 0 6px;
}
.fpa-dash-nav-groupe-repliable {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
	border-radius: 6px;
	padding: 4px 6px;
	margin-left: -6px;
	margin-right: -6px;
}
.fpa-dash-nav-groupe-repliable:hover,
.fpa-dash-nav-groupe-repliable:focus-visible {
	background: var(--fpa-bg-soft, #F6F8F9);
}
.fpa-dash-nav-chevron {
	display: inline-block;
	font-size: 9px;
	color: var(--fpa-muted);
	transition: transform .15s ease;
	flex-shrink: 0;
}
.fpa-dash-nav-item {
	display: block;
	padding: 8px 12px;
	border-radius: 10px;
	color: var(--fpa-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}
.fpa-dash-nav-item:hover { background: var(--fpa-bg-soft); }
.fpa-dash-nav-item.is-active { background: var(--fpa-cyan-tint); color: var(--fpa-cyan); font-weight: 700; }
.fpa-dashboard-main { flex: 1; min-width: 0; }

@media (max-width: 900px) {
	.fpa-dashboard-shell { flex-direction: column; }
	.fpa-dashboard-nav { width: 100%; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
	.fpa-dash-profil, .fpa-dash-nav-groupe { display: none; }
}

/* ---- Contenu de leçon "guide de révision" (ex. module DropNow) — badge
   de durée, variante "entreprise" du cadre objectifs, mini-écrans
   reproduisant une capture d'interface, tableaux de données et notices
   secondaires (erreurs/astuces/vidéos) réutilisant les couleurs de la
   palette existante plutôt que d'en introduire de nouvelles. ---- */
.fpa-duree-badge {
	display: inline-block;
	background: var(--fpa-bg-soft);
	color: var(--fpa-muted);
	font-weight: 700;
	font-size: 12.5px;
	padding: 6px 14px;
	border-radius: 999px;
	margin: 0 0 20px;
}
.fpa-objectifs-entreprise h2::before { background: var(--fpa-plum); }
.fpa-lecon-content table.fpa-table-donnees {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0;
	font-size: 14px;
}
.fpa-lecon-content table.fpa-table-donnees th,
.fpa-lecon-content table.fpa-table-donnees td {
	text-align: left;
	padding: 8px 12px;
	border: 1px solid var(--fpa-card-line);
	vertical-align: top;
}
.fpa-lecon-content table.fpa-table-donnees th { background: var(--fpa-bg-soft); font-weight: 600; width: 32%; }
.fpa-lecon-content table.fpa-table-multi th { width: auto; background: var(--fpa-indigo-tint); }
.fpa-ecran-mockup {
	background: var(--fpa-bg-soft);
	border: 1px dashed var(--fpa-line);
	border-radius: var(--fpa-radius);
	padding: 16px 18px;
	margin: 16px 0;
}
.fpa-ecran-caption {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--fpa-cyan-deep);
	margin: 0 0 10px;
}
.fpa-ecran-mockup table.fpa-table-donnees { background: #fff; }

/* ---- Distinction information (à lire) vs action (à réaliser) — retour de
   Philippe : les étapes à exécuter se noyaient dans le contenu informatif
   (rappels de cours, données du cas, repères d'écran). Les actions
   (ol.fpa-steps) reçoivent un traitement à part entière — cadre teal plein,
   marqueurs numérotés en médaillon, étiquette dédiée — pendant que les
   repères d'écran (.fpa-ecran-mockup, ci-dessus) restent en pointillés
   neutres : clairement "à consulter", pas "à cliquer". ---- */
ol.fpa-steps {
	list-style: none;
	counter-reset: fpa-step;
	margin: 16px 0 20px;
	padding: 20px 20px 4px;
	background: var(--fpa-teal-tint);
	border-left: 4px solid var(--fpa-teal);
	border-radius: 0 var(--fpa-radius) var(--fpa-radius) 0;
}
ol.fpa-steps::before {
	content: "Actions à réaliser";
	display: block;
	font-weight: 700;
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--fpa-teal-deep);
	margin: 0 0 14px;
}
ol.fpa-steps li {
	counter-increment: fpa-step;
	position: relative;
	margin: 0 0 16px 34px;
	line-height: 1.5;
}
ol.fpa-steps li::before {
	content: counter(fpa-step);
	position: absolute;
	left: -34px;
	top: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--fpa-teal);
	color: #fff;
	font-weight: 700;
	font-size: 12.5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fpa-notice-liste { padding: 18px 20px; }
.fpa-notice-titre { font-weight: 700; margin: 0 0 8px; color: var(--fpa-text); }
.fpa-notice-liste ul { margin: 0; padding-left: 20px; }
.fpa-notice-liste li { margin-bottom: 6px; }
.fpa-notice-erreurs { background: var(--fpa-peche-tint, #F7E9E3); }
.fpa-notice-astuces { background: var(--fpa-teal-tint); }
.fpa-notice-videos { background: var(--fpa-violet-tint, var(--fpa-bg-soft)); }
.fpa-icon-inline {
	width: 20px;
	height: 20px;
	vertical-align: -5px;
	margin-right: 4px;
	display: inline-block;
}
.fpa-duree-badge .fpa-icon-inline,
.fpa-ecran-caption .fpa-icon-inline { vertical-align: -4px; }
