/* CS Timeline Widget Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

.cs-tl-container {
	position: relative;
	display: flex;
	padding-left: 55px;
	background: transparent;
	box-sizing: border-box;
}

.cs-tl-track {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 30px;
	width: 6px;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	z-index: 1;
	overflow: hidden;
}

.cs-tl-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: linear-gradient(to bottom, #EC9333 0%, #B9358B 100%);
	border-radius: 10px;
	transition: height 0.12s cubic-bezier(0.25, 1, 0.5, 1);
}

.cs-tl-stack {
	display: flex;
	flex-direction: column;
	gap: 56px;
	width: 100%;
}

.cs-tl-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.cs-tl-circle {
	width: 34px;
	height: 34px;
	background: linear-gradient(135deg, #EC9333 0%, #B9358B 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 14px;
	flex-shrink: 0;
}

.cs-tl-title {
	color: #ffffff;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 32px;
	font-style: italic;
	font-weight: 500;
	margin: 0 0 8px 0;
	letter-spacing: -0.4px;
	line-height: 1.2;
}

.cs-tl-desc {
	color: #A4A4A8;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
	max-width: 440px;
}

/* Responsive */
@media (max-width: 1024px) {
	.cs-tl-title { font-size: 28px; }
	.cs-tl-desc  { font-size: 17px; }
}

@media (max-width: 767px) {
	.cs-tl-container { padding-left: 40px; }
	.cs-tl-track     { width: 6px; }
	.cs-tl-title     { font-size: 24px; }
	.cs-tl-desc      { font-size: 15px; }
	.cs-tl-stack     { gap: 44px; }
}
