.exp-edu-timeline-wrap {
	--accent: #ff5a1f;
	--accent-light: #fff1ea;
	--text-dark: #1a1a1a;
	--text-gray: #8b8b8b;
	--card-bg: #ffffff;
	--line-color: #e2e2e2;
	padding: 50px 30px;
	box-sizing: border-box;
}

.exp-edu-timeline-wrap * {
	box-sizing: border-box;
}

.exp-edu-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1300px;
	margin: 0 auto;
}

.exp-edu-col-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 30px 0;
}

.exp-edu-col-title i,
.exp-edu-col-title svg {
	color: var(--accent);
	font-size: 22px;
	width: 22px;
	height: 22px;
}

.exp-edu-timeline {
	position: relative;
	padding-left: 45px;
}

.exp-edu-timeline::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 12px;
	bottom: 12px;
	width: 1px;
	background: var(--line-color);
}

.exp-edu-item {
	position: relative;
	margin-bottom: 20px;
}

.exp-edu-item:last-child {
	margin-bottom: 0;
}

.exp-edu-dot {
	position: absolute;
	left: -45px;
	top: 28px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--accent);
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px var(--accent);
}

.exp-edu-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--card-bg);
	border-radius: 16px;
	padding: 18px 22px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	transition: all 0.28s ease;
}

.exp-edu-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--text-dark);
	transition: all 0.28s ease;
}

.exp-edu-icon i,
.exp-edu-icon svg {
	width: 16px;
	height: 16px;
}

.exp-edu-info {
	flex: 1;
	min-width: 0;
}

.exp-edu-info h4 {
	margin: 0 0 3px 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.exp-edu-info p {
	margin: 0;
	font-size: 13.5px;
	color: var(--text-gray);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.exp-edu-year {
	flex-shrink: 0;
	background: var(--accent-light);
	color: var(--accent);
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	white-space: nowrap;
}

.exp-edu-license-locked {
	padding: 16px 18px;
	border-radius: 10px;
	background: #fff8e5;
	border: 1px solid #f0d48a;
	color: #6b4e00;
	font-size: 14px;
}

@media (max-width: 900px) {
	.exp-edu-grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}
}

@media (max-width: 480px) {
	.exp-edu-timeline-wrap {
		padding: 32px 14px;
	}

	.exp-edu-grid {
		gap: 34px;
	}

	.exp-edu-col-title {
		font-size: 17px;
		gap: 8px;
		margin-bottom: 20px;
	}

	.exp-edu-col-title i,
	.exp-edu-col-title svg {
		font-size: 15px;
		width: 15px;
		height: 15px;
	}

	.exp-edu-timeline {
		padding-left: 26px;
	}

	.exp-edu-dot {
		left: -26px;
		top: 24px;
		width: 9px;
		height: 9px;
		border-width: 2px;
	}

	.exp-edu-item {
		margin-bottom: 12px;
	}

	.exp-edu-card {
		padding: 10px 12px;
		gap: 10px;
		border-radius: 12px;
	}

	.exp-edu-icon {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.exp-edu-icon i,
	.exp-edu-icon svg {
		width: 12px;
		height: 12px;
	}

	.exp-edu-info h4 {
		font-size: 12.5px;
		margin-bottom: 1px;
	}

	.exp-edu-info p {
		font-size: 10.5px;
	}

	.exp-edu-year {
		font-size: 10px;
		padding: 3px 9px;
		border-radius: 14px;
	}
}

@media (max-width: 360px) {
	.exp-edu-info h4 {
		font-size: 11.5px;
	}

	.exp-edu-info p {
		font-size: 10px;
	}

	.exp-edu-year {
		font-size: 9px;
		padding: 3px 7px;
	}

	.exp-edu-icon {
		width: 28px;
		height: 28px;
		font-size: 11px;
	}

	.exp-edu-icon i,
	.exp-edu-icon svg {
		width: 11px;
		height: 11px;
	}

	.exp-edu-card {
		padding: 9px 10px;
		gap: 8px;
	}
}
