.ybtl-wrapper {
	padding: 60px 40px;
	overflow-x: auto;
}

.ybtl-heading {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0 0 50px 0;
}

.ybtl-track {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	min-width: 700px;
	padding-top: 10px;
}

.ybtl-line {
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #C9A24B;
	z-index: 1;
}

.ybtl-item {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: 2;
	padding: 0 10px;
}

.ybtl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #C9A24B;
	border: 2px solid #C9A24B;
	margin-bottom: 18px;
}

.ybtl-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: transform 0.25s ease;
}

.ybtl-content:hover {
	transform: translateY(-4px);
}

.ybtl-year {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	color: #C9A24B;
	margin-bottom: 8px;
	white-space: nowrap;
}

.ybtl-item-title {
	font-size: 14px;
	font-weight: 600;
	color: #F5F5F5;
	margin-bottom: 4px;
}

.ybtl-item-desc {
	font-size: 13px;
	color: #B8B8B8;
	line-height: 1.4;
}

/* Responsive : timeline verticale sur mobile */
@media (max-width: 767px) {
	.ybtl-track {
		flex-direction: column;
		align-items: flex-start;
		min-width: unset;
		padding-left: 20px;
	}

	.ybtl-line {
		top: 0;
		bottom: 0;
		left: 5px;
		right: auto;
		width: 1px;
		height: auto;
	}

	.ybtl-item {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		margin-bottom: 30px;
		padding: 0;
	}

	.ybtl-dot {
		margin-right: 20px;
		margin-bottom: 0;
		margin-top: 6px;
		flex-shrink: 0;
	}

	.ybtl-content {
		align-items: flex-start;
		text-align: left;
	}
}
