.tl-5c-container {
	position: relative;
	padding: 20px 0;
	display: flex;
}

.tl-5c-line {
	position: absolute;
	left: 30px;
	top: 50px;
	bottom: 50px;
	width: 2px;
	background-color: #334155;
	z-index: 1;
}

.tl-5c-items-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.tl-5c-item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.tl-5c-icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #1e293b;
	border: 2px solid #334155; /* Default border matching line */
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.tl-5c-icon {
	color: #38bdf8;
	font-size: 24px;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tl-5c-icon svg {
	width: 24px;
	height: 24px;
	fill: #38bdf8;
}

.tl-5c-content {
	flex-grow: 1;
	background-color: #1e293b;
	padding: 25px;
	border-radius: 12px;
	border: 1px solid #1e293b;
	box-shadow: none; /* Removed default inset shadow */
	transition: all 0.3s ease;
}

.tl-5c-title {
	margin: 0 0 10px;
	color: #fff;
	font-size: 1.25rem;
}

.tl-5c-desc {
	margin: 0 0 15px;
	color: #94a3b8;
}

/* New custom list structure */
.tl-5c-custom-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tl-5c-list-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.tl-5c-list-icon {
	color: #38bdf8;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px; /* align with text */
	flex-shrink: 0;
}
.tl-5c-list-icon svg {
	width: 12px;
	height: 12px;
	fill: #38bdf8;
}

.tl-5c-list-text {
	color: #e2e8f0;
	margin: 0;
}