/*
--------------------------------------
Container
--------------------------------------
*/

.bloc-info__container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	background-color: #fff;
	width: calc(280px + (435 - 280) * ((100vw - 320px) / (1920 - 320)));
	padding: 24px 32px;
}

/*
--------------------------------------
Title
--------------------------------------
*/

.bloc-info__title {
	font-family: var(--e-global-typography-primary-font-family);
	font-size: 28px;
	font-weight: 400;
	color: #1E1E1E;
	line-height: 110%;
	margin-bottom: 16px;
}

/*
--------------------------------------
Content
--------------------------------------
*/

.bloc-info__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bloc-info__icon {
	font-family: var(--e-global-typography-secondary-font-family);
}

/*Price*/

.bloc-info__icon-price-container:has(.bloc-info__price) {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 20px;
}

.bloc-info__price {
	font-size: 36px;
	font-weight: 400;
	color: var(--e-global-color-secondary);
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

/*Subhead*/

.bloc-info__subhead-container {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	line-height: 1.2;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	max-width: 125px;
}

/*Details*/

.bloc-info__details-container {
	font-size: 16px;
	font-weight: 400;
	color: rgba(26, 18, 10, 0.40);
	line-height: 24px;
	letter-spacing: 0.32px;
	max-width: 220px;
}