/*
 * Treatment Process
 * ----------------------------------------------------------------------- */

.treatment-process__timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-md);
	counter-reset: none;
	position: relative;
}

.treatment-process__timeline::before {
	content: '';
	position: absolute;
	top: 32px;
	left: 5%;
	right: 5%;
	height: 2px;
	background: repeating-linear-gradient(to right, rgba(var(--color-primary-rgb), 0.3) 0 8px, transparent 8px 16px);
	z-index: 0;
}

.treatment-process__step {
	position: relative;
	z-index: 1;
	text-align: center;
	background: var(--color-bg);
	padding: var(--space-sm);
}

.treatment-process__step-number {
	width: 32px;
	height: 32px;
	margin-inline: auto;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: var(--color-white);
	font-family: var(--font-heading);
	font-weight: var(--fw-bold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-sm);
}

.treatment-process__step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
	color: var(--color-primary);
	margin-bottom: var(--space-sm);
}

.treatment-process__step h3 {
	font-size: 1rem;
	margin-bottom: 0.3rem;
}

.treatment-process__step p {
	font-size: var(--fs-small);
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.treatment-process__timeline {
		grid-template-columns: repeat(2, 1fr);
	}
	.treatment-process__timeline::before { display: none; }
}

@media (max-width: 560px) {
	.treatment-process__timeline {
		grid-template-columns: 1fr;
	}
}
