/*
--------------------------------------
item
--------------------------------------
*/

.list__container {
	font-family: var(--e-global-typography-secondary-font-family), sans-serif;
}

/*
--------------------------------------
item avec des puces
--------------------------------------
*/

.list__container--bullets {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.list__container--bullets .list__item {
	position: relative;
}

.list__container--bullets .list__item:not(:last-of-type):after {
	position: absolute;
	content: url(/wp-content/uploads/2025/06/bullet.png);
	right: calc(-10px + (-20 - -10) * ((100vw - 320px) / (1920 - 320)));
}

.list__container--bullets span {
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	line-height: 150%;
	letter-spacing: 0.413px;
}

/*
-------------------------------------------------------
style commun -- item avec des icônes ou des boutons
-------------------------------------------------------
*/

.list__container.list__container--common-style {
	display: flex;
	row-gap: 20px;
}

/*
--------------------------------------
item avec des icônes
--------------------------------------
*/

.list__container.list__container--icons {
	flex-direction: column;
}

.list__container--icons .list__item {
	display: flex;
	align-items: center;
	gap: 30px;
}

.list__container--icons .list__item-content-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	color: #fff;
	letter-spacing: 0.32px;
}

/*
--------------------------------------
item avec des "boutons"
--------------------------------------
*/

.list__container.list__container--buttons {
	justify-content: center;
	gap: 16px;
}

.list__container.list__container--buttons .list__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #261E1C;
	border: 1px solid rgba(255, 255, 255, 0.55);
	width: 290px;
	height: 105px;
}

.list__container.list__container--buttons .list__item .list__item-content-text {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	line-height: 150%;
	letter-spacing: 0.4px;
}

/*Secondary style */

.list__container--buttons.list__container--secondary {
	display: flex;
	flex-wrap: wrap;
}

.list__container--buttons.list__container--secondary .list__item {
	width: 285px;
	max-width: 285px;
}