/* Grid Layout */
.ps-2895718c-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	width: 100%;
}

/* Item Base */
.ps-2895718c-item {
	display: flex;
	flex-direction: column;
	position: relative;
}

/* Number */
.ps-2895718c-number {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 15px;
}

/* Title */
.ps-2895718c-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 0;
}

/* Description */
.ps-2895718c-description {
	font-size: 16px;
	line-height: 1.6;
}
.ps-2895718c-description p:last-child {
	margin-bottom: 0;
}

/* Divider specific styles are handled dynamically via Elementor controls in the main class */
.ps-2895718c-grid.has-divider .ps-2895718c-item:not(:first-child) {
	padding-left: 40px;
}

/* Responsive adjustments for dividers */
@media (max-width: 1024px) {
	.ps-2895718c-grid.has-divider .ps-2895718c-item:not(:first-child) {
		border-left: none !important;
		padding-left: 0;
	}
	.ps-2895718c-grid.has-divider .ps-2895718c-item:nth-child(even) {
		border-left: 1px solid #e0e0e0;
		padding-left: 30px;
	}
}

@media (max-width: 767px) {
	.ps-2895718c-grid.has-divider .ps-2895718c-item {
		border-left: none !important;
		padding-left: 0 !important;
		border-top: 1px solid #e0e0e0;
		padding-top: 30px;
	}
	.ps-2895718c-grid.has-divider .ps-2895718c-item:first-child {
		border-top: none;
		padding-top: 0;
	}
}