/**
 * Custom Steps Widget Styles
 */

.cs-steps-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	width: 100%;
}

.cs-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

.cs-step-image-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}

.cs-step-number {
	position: absolute;
	top: 0;
	left: -35px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	min-width: 30px;
	border-radius: 50%;
	background-color: #fbe5e7;
	color: #d4a5a5;
	font-size: 14px;
	font-weight: 500;
	font-style: italic;
}

.cs-step-image img {
	width: 80px;
	height: auto;
	object-fit: contain;
}

.cs-step-title {
	margin: 0 0 10px 0;
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	line-height: 1.4;
}

.cs-step-description {
	margin: 0;
	font-size: 12px;
	color: #666666;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
	.cs-steps-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 640px) {
	.cs-steps-container {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.cs-step-item {
		padding: 0 20px;
	}
}
