.tb-c408e8e8-wrapper {
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.tb-c408e8e8-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.tb-c408e8e8-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 10px 20px;
	border-right: 1px solid var(--e-global-color-text, #e5e7eb); /* Updated via widget controls */
}

.tb-c408e8e8-item:last-child {
	border-right: none;
}

.tb-c408e8e8-icon {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tb-c408e8e8-title {
	margin: 0 0 8px 0;
	font-weight: 600;
	font-size: 1.1rem;
}

.tb-c408e8e8-desc {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
	.tb-c408e8e8-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	.tb-c408e8e8-item {
		border-right: none;
		border-bottom: 1px solid #e5e7eb;
		padding-bottom: 20px;
	}
	/* Fix borders for 2-col layout */
	.tb-c408e8e8-item:nth-child(even) {
		border-right: none;
	}
	.tb-c408e8e8-item:nth-child(odd) {
		border-right: 1px solid #e5e7eb;
	}
	.tb-c408e8e8-item:nth-child(3),
	.tb-c408e8e8-item:nth-child(4) {
		border-bottom: none;
		padding-bottom: 0;
	}
}

@media (max-width: 767px) {
	.tb-c408e8e8-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.tb-c408e8e8-item,
	.tb-c408e8e8-item:nth-child(odd) {
		border-right: none;
		border-bottom: 1px solid #e5e7eb;
		padding-bottom: 20px;
	}
	.tb-c408e8e8-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
}