/* ICT Steps — bloc étapes / processus
   Variables : --ict-st-badge, --ict-st-badge-text (par étape) */

.ict-st {
	display: flex;
	width: 100%;
	box-sizing: border-box;
}

.ict-st-step {
	flex: 1 1 0;
	min-width: 0;
	box-sizing: border-box;
}

/* Ligne badge + connecteur */
.ict-st-head {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.ict-st-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--ict-st-badge, #183763);
	color: var(--ict-st-badge-text, #ffffff);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.ict-st-line {
	flex: 1 1 auto;
	height: 0;
	border-top: 2px dashed #cfd6df;
}

/* Texte */
.ict-st-body {
	padding-right: 26px;
}

.ict-st-title {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
	color: #183763;
}

.ict-st-desc {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: #5b6573;
}

/* Responsive : empilement vertical */
@media (max-width: 768px) {
	.ict-st {
		flex-direction: column;
	}
	.ict-st-step {
		width: 100%;
		margin-bottom: 26px;
	}
	.ict-st-step:last-child {
		margin-bottom: 0;
	}
	.ict-st-line {
		display: none;
	}
	.ict-st-head {
		margin-bottom: 12px;
	}
	.ict-st-body {
		padding-right: 0;
	}
}
