/* ============================================================
 * AS Classement Investisseurs — Outil d'évaluation des plateformes
 * (page /evaluation-plateforme-crowdfunding/, préfixe .as-ceval-).
 *
 * Dépend des tokens as-core-css (charte sombre AS). Layout pleine
 * largeur : explorateur (rail sticky) + panneau d'évaluation.
 * ============================================================ */

.as-ceval-wrap {
	font-family: var(--as-font-body);
	color: var(--as-ink);
	background: var(--as-bg);
	line-height: 1.55;
	max-width: 1260px;
	margin: 0 auto;
	padding: 26px 18px 60px;
	border-radius: var(--as-radius, 18px);
}
.as-ceval-wrap a { color: var(--as-accent); text-decoration: none; }
.as-ceval-wrap a:hover { color: var(--as-accent-2); }
.as-ceval-wrap p { line-height: 1.7; }

/* ---------- HERO ---------- */
.as-ceval-hero { padding: 6px 4px 0; }
.as-ceval-kicker {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--as-accent);
}
.as-ceval-h1 {
	margin: 0 0 14px;
	font-family: var(--as-font-head);
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1.2;
	color: var(--as-ink);
}
.as-ceval-lead {
	max-width: 900px;
	margin: 0 0 18px;
	font-size: 15.5px;
	color: var(--as-ink-2);
}
.as-ceval-kpis {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 18px;
}
.as-ceval-kpi {
	min-width: 150px;
	padding: 12px 16px;
	background: var(--as-card);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-sm);
}
.as-ceval-kpi-hero { border-color: var(--as-accent); background: var(--as-accent-bg); }
.as-ceval-kpi-perso { border-color: rgba(95, 217, 160, 0.55); background: rgba(95, 217, 160, 0.08); }
.as-ceval-kpi-val {
	display: block;
	font-family: var(--as-font-head);
	font-size: 21px;
	color: var(--as-ink);
}
.as-ceval-kpi-lbl {
	display: block;
	margin-top: 3px;
	font-size: 12.5px;
	color: var(--as-muted);
}
.as-ceval-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 8px; }
.as-ceval-chip {
	display: inline-block;
	padding: 7px 15px;
	font-size: 13px;
	font-weight: 600;
	color: var(--as-ink-2) !important;
	background: var(--as-card);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-pill);
	transition: all .15s ease;
}
.as-ceval-chip:hover { border-color: var(--as-accent); color: var(--as-ink) !important; }

/* ---------- PORTAIL VISITEUR ---------- */
.as-ceval-gate { margin: 26px 0 10px; }
.as-ceval-gate-card {
	max-width: 720px;
	margin: 0 auto;
	padding: 28px;
	background: var(--as-card);
	border: 1px solid var(--as-accent);
	border-radius: var(--as-radius);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.as-ceval-gate-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.as-ceval-gate-logo {
	flex: 0 0 auto;
	width: 84px;
	height: 56px;
	object-fit: contain;
	background: #fff;
	border-radius: var(--as-radius-sm);
	padding: 6px;
}
span.as-ceval-gate-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--as-font-head);
	font-size: 20px;
	color: var(--as-bg);
}
.as-ceval-gate-title { margin: 0 0 6px; font-size: 21px; line-height: 1.3; color: var(--as-ink); }
.as-ceval-gate-sub { margin: 0; font-size: 14.5px; color: var(--as-ink-2); }
.as-ceval-gate-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin: 0 0 16px;
}
.as-ceval-gate-login { font-size: 14px; font-weight: 600; }
.as-ceval-gate-proof {
	margin: 0;
	padding-top: 14px;
	border-top: 1px solid var(--as-line);
	font-size: 13.5px;
	color: var(--as-muted);
}

/* ---------- OUTIL : LAYOUT DEUX VOLETS ---------- */
.as-ceval-tool { margin: 26px 0 10px; scroll-margin-top: 90px; }
.as-ceval-layout {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

/* ---------- EXPLORATEUR ---------- */
.as-ceval-explorer {
	position: sticky;
	top: var(--as-sticky-top, 90px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-height: calc(100vh - 110px);
	padding: 16px;
	background: var(--as-card);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
}
.as-ceval-progress-txt { font-size: 13px; color: var(--as-ink-2); margin-bottom: 6px; }
.as-ceval-progress-txt strong { color: var(--as-ink); font-size: 14px; }
.as-ceval-progress-track {
	height: 7px;
	background: var(--as-bg-2);
	border-radius: var(--as-radius-pill);
	overflow: hidden;
}
.as-ceval-progress-fill {
	height: 100%;
	border-radius: var(--as-radius-pill);
	background: linear-gradient(90deg, var(--as-accent), #5fd9a0);
	transition: width .4s ease;
}

.as-ceval-search { position: relative; }
.as-ceval-search-ico {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	opacity: 0.7;
	pointer-events: none;
}
.as-ceval-wrap .as-ceval-search-input {
	width: 100%;
	padding: 10px 12px 10px 34px;
	font-family: var(--as-font-body);
	font-size: 14px;
	color: var(--as-ink);
	background: var(--as-bg-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-pill);
	outline: none;
	transition: border-color .15s ease;
}
.as-ceval-wrap .as-ceval-search-input:focus { border-color: var(--as-accent); }
.as-ceval-wrap .as-ceval-search-input::placeholder { color: var(--as-muted); }

.as-ceval-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.as-ceval-filter,
.as-ceval-state {
	padding: 5px 12px;
	font-family: var(--as-font-body);
	font-size: 12px;
	font-weight: 600;
	color: var(--as-muted);
	background: var(--as-card-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-pill);
	cursor: pointer;
	transition: all .15s ease;
}
.as-ceval-filter:hover,
.as-ceval-state:hover { color: var(--as-ink); }
.as-ceval-filter.is-active,
.as-ceval-state.is-active {
	color: var(--as-ink);
	border-color: var(--as-accent);
	background: var(--as-accent-bg);
}
.as-ceval-filter-archive { border-style: dashed; }
.as-ceval-states { display: flex; gap: 6px; }
.as-ceval-state { flex: 1 1 auto; text-align: center; }

.as-ceval-list {
	flex: 1 1 auto;
	min-height: 200px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-right: 4px;
	scrollbar-width: thin;
	scrollbar-color: var(--as-line-2) transparent;
}
.as-ceval-item {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 10px;
	text-align: left;
	background: var(--as-bg-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-sm);
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
}
.as-ceval-item:hover { border-color: var(--as-line-2); background: var(--as-card-2); }
.as-ceval-item.is-active {
	border-color: var(--as-accent);
	background: var(--as-accent-bg);
}
.as-ceval-item[data-statut="termine"] { opacity: 0.75; }
.as-ceval-item-logo {
	flex: 0 0 auto;
	width: 38px;
	height: 26px;
	object-fit: contain;
	background: #fff;
	border-radius: 6px;
	padding: 2px;
}
span.as-ceval-item-logo,
.as-ceval-logo-fb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--as-font-head);
	font-size: 11px;
	font-weight: 700;
	color: var(--as-bg);
	background: linear-gradient(120deg, var(--as-accent), var(--as-accent-2));
}
.as-ceval-item-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.as-ceval-item-nom {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--as-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.as-ceval-item-cats {
	font-size: 11px;
	color: var(--as-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.as-ceval-item-badge { flex: 0 0 auto; }
.as-ceval-badge {
	display: inline-block;
	padding: 3px 8px;
	font-size: 10.5px;
	font-weight: 700;
	border-radius: var(--as-radius-pill);
	white-space: nowrap;
}
.as-ceval-badge-ok { background: rgba(95, 217, 160, 0.15); color: #5fd9a0; }
.as-ceval-badge-stale { background: rgba(240, 196, 106, 0.15); color: #f0c46a; }
.as-ceval-badge-todo { background: var(--as-card-2); color: var(--as-muted); border: 1px dashed var(--as-line-2); }
.as-ceval-list-vide { margin: 10px 4px; font-size: 13px; color: var(--as-muted); }

/* ---------- PANNEAU ---------- */
.as-ceval-panel { min-width: 0; }
.as-ceval-panel.is-loading { opacity: 0.45; pointer-events: none; transition: opacity .15s ease; }
.as-ceval-panel-in {
	background: var(--as-card);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	padding: 22px;
}

.as-ceval-phead {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--as-line);
}
.as-ceval-phead-logo {
	flex: 0 0 auto;
	width: 110px;
	height: 62px;
	object-fit: contain;
	background: #fff;
	border-radius: var(--as-radius-sm);
	padding: 6px;
}
span.as-ceval-phead-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--as-font-head);
	font-size: 22px;
	color: var(--as-bg);
}
.as-ceval-phead-main { flex: 1 1 auto; min-width: 0; }
.as-ceval-phead-nom {
	margin: 0 0 8px;
	font-family: var(--as-font-head);
	font-size: 22px;
	color: var(--as-ink);
}
.as-ceval-phead-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 8px; }
.as-ceval-pcat {
	display: inline-block;
	padding: 3px 10px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--as-ink-2);
	background: var(--as-card-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-pill);
}
.as-ceval-phead-links {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 18px;
	font-size: 13px;
}
.as-ceval-phead-count { color: var(--as-muted); }
.as-ceval-phead-avis { font-weight: 600; white-space: nowrap; }

.as-ceval-offre {
	margin: 14px 0 0;
	padding: 10px 14px;
	font-size: 13.5px;
	color: var(--as-ink-2);
	background: var(--as-bg-2);
	border: 1px dashed var(--as-line-2);
	border-radius: var(--as-radius-sm);
}

/* ---------- FORMULAIRE ---------- */
.as-ceval-form { margin-top: 8px; }
.as-ceval-step { margin-top: 20px; }
.as-ceval-step-titre {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	font-size: 16.5px;
	font-weight: 700;
	color: var(--as-ink);
}
.as-ceval-step-num {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	font-family: var(--as-font-head);
	font-size: 13px;
	color: var(--as-bg);
	background: linear-gradient(120deg, var(--as-accent), var(--as-accent-2));
	border-radius: 50%;
}
.as-ceval-hint { margin: 10px 0 0; font-size: 12.5px; color: var(--as-muted); }

.as-ceval-choices {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 10px;
}
.as-ceval-choice {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	text-align: left;
	font-family: var(--as-font-body);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--as-ink-2);
	background: var(--as-bg-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-sm);
	cursor: pointer;
	transition: all .15s ease;
}
.as-ceval-choice:hover { border-color: var(--as-line-2); color: var(--as-ink); }
.as-ceval-choice-ico { font-size: 16px; }
.as-ceval-choice.is-active { color: var(--as-ink); }
.as-ceval-choice-1.is-active { border-color: #5fd9a0; background: rgba(95, 217, 160, 0.12); }
.as-ceval-choice-2.is-active { border-color: #f0c46a; background: rgba(240, 196, 106, 0.12); }
.as-ceval-choice-3.is-active { border-color: #7fb2e5; background: rgba(127, 178, 229, 0.12); }
.as-ceval-choice-4.is-active { border-color: #f0809a; background: rgba(240, 128, 154, 0.12); }

.as-ceval-stale {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	margin-top: 16px;
	padding: 12px 14px;
	font-size: 13.5px;
	color: var(--as-ink-2);
	background: rgba(240, 196, 106, 0.08);
	border: 1px solid rgba(240, 196, 106, 0.45);
	border-radius: var(--as-radius-sm);
}
.as-ceval-touch {
	padding: 7px 14px;
	font-family: var(--as-font-body);
	font-size: 12.5px;
	font-weight: 700;
	color: var(--as-bg);
	background: #f0c46a;
	border: none;
	border-radius: var(--as-radius-pill);
	cursor: pointer;
	transition: opacity .15s ease;
}
.as-ceval-touch:hover { opacity: 0.85; }
.as-ceval-touch.is-done { background: #5fd9a0; cursor: default; }
.as-ceval-touch:disabled { opacity: 0.6; cursor: default; }
.as-ceval-fresh-note { margin: 14px 0 0; font-size: 13px; color: var(--as-muted); }

.as-ceval-wrap .as-ceval-textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--as-font-body);
	font-size: 14px;
	line-height: 1.6;
	color: var(--as-ink);
	background: var(--as-bg-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-sm);
	outline: none;
	resize: vertical;
	transition: border-color .15s ease;
}
.as-ceval-wrap .as-ceval-textarea:focus { border-color: var(--as-accent); }
.as-ceval-wrap .as-ceval-textarea::placeholder { color: var(--as-muted); }
.as-ceval-comment-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
}
.as-ceval-save {
	padding: 8px 18px;
	font-family: var(--as-font-body);
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(100deg, var(--as-accent), var(--as-accent-2));
	border: none;
	border-radius: var(--as-radius-pill);
	cursor: pointer;
	transition: opacity .15s ease;
}
.as-ceval-save:hover { opacity: 0.88; }
.as-ceval-cstatus { font-size: 12.5px; color: var(--as-muted); }
.as-ceval-cstatus.is-ok { color: #5fd9a0; }
.as-ceval-cstatus.is-err { color: #f0809a; }

.as-ceval-scale-hint { margin: -4px 0 14px; font-size: 12.5px; color: var(--as-muted); }
.as-ceval-critere {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 18px;
	padding: 12px 0;
	border-bottom: 1px solid var(--as-line);
}
.as-ceval-critere:last-child { border-bottom: none; }
.as-ceval-critere-txt { flex: 1 1 320px; min-width: 0; }
.as-ceval-critere-lbl { display: block; font-size: 14px; font-weight: 700; color: var(--as-ink); }
.as-ceval-critere-help { display: block; margin-top: 2px; font-size: 12px; color: var(--as-muted); }

.as-ceval-stars { display: inline-flex; align-items: center; gap: 2px; }
.as-ceval-star {
	padding: 2px 3px;
	font-size: 24px;
	line-height: 1;
	color: var(--as-line-2);
	background: none;
	border: none;
	cursor: pointer;
	transition: color .1s ease, transform .1s ease;
}
.as-ceval-star:hover { transform: scale(1.15); }
.as-ceval-star.is-on { color: #f0c46a; }
.as-ceval-star.is-preview { color: rgba(240, 196, 106, 0.55); }
.as-ceval-stars-val {
	min-width: 32px;
	margin-left: 6px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--as-muted);
}

.as-ceval-support-step { margin-top: 22px; padding-top: 6px; }
.as-ceval-yesno { display: flex; gap: 10px; }
.as-ceval-recours {
	min-width: 90px;
	padding: 9px 22px;
	font-family: var(--as-font-body);
	font-size: 14px;
	font-weight: 700;
	color: var(--as-ink-2);
	background: var(--as-bg-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-pill);
	cursor: pointer;
	transition: all .15s ease;
}
.as-ceval-recours:hover { color: var(--as-ink); border-color: var(--as-line-2); }
.as-ceval-recours.is-active {
	color: var(--as-ink);
	border-color: var(--as-accent);
	background: var(--as-accent-bg);
}
.as-ceval-support { margin-top: 16px; }
.as-ceval-support .as-ceval-textarea { margin-top: 12px; }

.as-ceval-status { margin: 14px 0 0; min-height: 18px; font-size: 13px; color: var(--as-muted); }
.as-ceval-status.is-ok { color: #5fd9a0; }
.as-ceval-status.is-err { color: #f0809a; }

/* ---------- RÉSULTATS DE LA COMMUNAUTÉ ---------- */
.as-ceval-communaute {
	margin-top: 24px;
	padding: 18px;
	background: var(--as-bg-2);
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius-sm);
}
.as-ceval-com-titre { margin: 0 0 14px; font-size: 16.5px; font-weight: 700; color: var(--as-ink); }
.as-ceval-lock {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: var(--as-card);
	border: 1px dashed var(--as-line-2);
	border-radius: var(--as-radius-sm);
}
.as-ceval-lock-ico { font-size: 22px; }
.as-ceval-lock p { margin: 0; font-size: 13.5px; color: var(--as-ink-2); }
.as-ceval-com-bloc { margin-top: 16px; }
.as-ceval-com-bloc:first-of-type { margin-top: 0; }
.as-ceval-com-sous { margin: 0 0 10px; font-size: 14px; font-weight: 700; color: var(--as-ink); }
.as-ceval-com-n { font-size: 12px; font-weight: 400; color: var(--as-muted); }
.as-ceval-com-note { margin: 8px 0 0; font-size: 13px; color: var(--as-muted); }

.as-ceval-bars { display: flex; flex-direction: column; gap: 8px; }
.as-ceval-bar-row { display: flex; align-items: center; gap: 10px; }
.as-ceval-bar-lbl {
	flex: 0 0 190px;
	font-size: 12.5px;
	color: var(--as-ink-2);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.as-ceval-bar-track {
	flex: 1 1 auto;
	height: 10px;
	background: var(--as-card);
	border-radius: var(--as-radius-pill);
	overflow: hidden;
}
.as-ceval-bar-fill {
	display: block;
	height: 100%;
	border-radius: var(--as-radius-pill);
	transition: width .4s ease;
}
.as-ceval-bar-pct {
	flex: 0 0 46px;
	text-align: right;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--as-ink);
}

.as-ceval-moyennes { display: flex; flex-direction: column; gap: 10px; }
.as-ceval-moy-row { display: flex; align-items: center; gap: 12px; }
.as-ceval-moy-note {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 34px;
	font-family: var(--as-font-head);
	font-size: 14px;
	color: var(--as-bg);
	background: var(--ceval-note-color, var(--as-muted));
	border-radius: var(--as-radius-sm);
}
.as-ceval-moy-main { flex: 1 1 auto; min-width: 0; }
.as-ceval-moy-lbl { display: block; margin-bottom: 4px; font-size: 12.5px; color: var(--as-ink-2); }
.as-ceval-moy-track {
	position: relative;
	display: block;
	height: 8px;
	background: var(--as-card);
	border-radius: var(--as-radius-pill);
}
.as-ceval-moy-fill {
	display: block;
	height: 100%;
	border-radius: var(--as-radius-pill);
	opacity: 0.85;
}
.as-ceval-moy-vous {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 4px;
	height: 14px;
	background: var(--as-ink);
	border-radius: 2px;
	box-shadow: 0 0 0 2px var(--as-bg-2);
}
.as-ceval-moy-nb { flex: 0 0 66px; text-align: right; font-size: 11.5px; color: var(--as-muted); }

.as-ceval-com-legende {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin: 14px 0 0;
	font-size: 11.5px;
	color: var(--as-muted);
}
.as-ceval-leg { display: inline-flex; align-items: center; gap: 5px; }
.as-ceval-leg-dot { width: 10px; height: 10px; border-radius: 50%; }
.as-ceval-leg-vous {
	width: 4px;
	height: 12px;
	background: var(--as-ink);
	border-radius: 2px;
}

/* ---------- ÉDITORIAL / BLOCS BAS DE PAGE ---------- */
.as-ceval-block { margin-top: 34px; }
.as-ceval-h2 {
	margin: 28px 0 12px;
	font-family: var(--as-font-head);
	font-size: clamp(19px, 3vw, 24px);
	line-height: 1.25;
	color: var(--as-ink);
}
.as-ceval-editorial p { max-width: 940px; font-size: 15px; color: var(--as-ink-2); }
.as-ceval-criteres-liste {
	max-width: 940px;
	margin: 0 0 14px;
	padding-left: 22px;
	font-size: 15px;
	color: var(--as-ink-2);
}
.as-ceval-criteres-liste li { margin-bottom: 7px; line-height: 1.6; }
.as-ceval-criteres-liste strong { color: var(--as-ink); }
.as-ceval-vide { padding: 20px; font-size: 14px; color: var(--as-muted); }
.as-ceval-risques,
.as-ceval-src { margin-top: 20px; font-size: 12.5px; color: var(--as-muted); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
	.as-ceval-layout { grid-template-columns: 1fr; }
	.as-ceval-explorer {
		position: static;
		max-height: none;
	}
	.as-ceval-list { max-height: 320px; }
	.as-ceval-bar-lbl { flex-basis: 130px; }
	.as-ceval-phead { flex-direction: column; }
	.as-ceval-phead-logo { width: 96px; height: 54px; }
}
@media (max-width: 560px) {
	.as-ceval-wrap { padding: 18px 12px 44px; }
	.as-ceval-panel-in { padding: 16px; }
	.as-ceval-choices { grid-template-columns: 1fr; }
	.as-ceval-critere { flex-direction: column; align-items: flex-start; }
	.as-ceval-star { font-size: 28px; padding: 4px 5px; }
	.as-ceval-moy-nb { display: none; }
}
