/**
 * Bloc de réassurance du hero de la page d'accueil.
 *
 * La note vient de Genius Reviews ([genius_reviews_summary]), les trois repères
 * reprennent les engagements réels du site : livraison offerte dès 65 €
 * (zones France, Belgique, Luxembourg), expédition annoncée par le plugin
 * d'entrepôt, rétractation de 14 jours (politique de remboursement).
 *
 * Charte : anthracite #1e1e1e, beige #f0ede8, pastilles au rayon 30 px,
 * interface en « greycliff-cf ».
 */

.hero-reassurance {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 22px;
}

/* Note du site : on garde le composant du plugin, on ajuste seulement l'échelle. */
.hero-reassurance .gr-summary-rating {
	font-family: greycliff-cf, sans-serif;
	font-size: 14px;
	color: #1e1e1e;
}

.hero-reassurance .gr-summary-rating-average {
	font-weight: 700;
}

/* Repères : les listes du thème portent une marge gauche, on la remet à zéro. */
.hero-reassurance ul.hero-reassurance__points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-reassurance ul.hero-reassurance__points li {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 6px 14px;
	border-radius: 30px;
	background-color: #f0ede8;
	color: #1e1e1e;
	font-family: greycliff-cf, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.35;
	white-space: nowrap;
}

@media (max-width: 767px) {

	.hero-reassurance {
		gap: 10px;
		margin-top: 18px;
	}

	.hero-reassurance ul.hero-reassurance__points li {
		padding: 5px 12px;
		font-size: 11px;
		white-space: normal;
	}
}
