.tour-schedule-wrap {
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
}

.tour-day-item {
	position: relative;
	padding: 20px 10px 0 60px;
}

.tour-day-item::before {
	content: '';
	position: absolute;
	left: 18px;
	top: 0;
	bottom: -20px;
	border-left: 2px dashed #c7d8ee;
}

.tour-day-item:last-child::before {
	bottom: 40px;
}

.tour-day-item::after {
	content: '';
	position: absolute;
	left: 1.2%;
	top: 28px;
	width: 20px;
	height: 20px;
	background: var(--color-white);
	border: 2px solid #1f5fae;
	border-radius: 50%;
	box-shadow:
		inset 0 0 0 4px var(--color-white),
		inset 0 0 0 8px #1f5fae;
}

.tour-day-badge {
	display: inline-block;
	background: var(--color-main);
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 8px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.tour-day-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.4;
	color: var(--color-main);
	font-weight: 600;
}

/* Hover khung */
.tour-day-item:hover .tour-day-title {
	color: var(--color-phu);
}

.tour-day-content {
	color: var(--color-black);
	line-height: 1.8;
	font-size: 14px;
}

.tour-schedule-footer {
	border-top: 1px solid #e5e7eb;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.tour-schedule-note {
	flex: 1;
	color: #94a3b8;
	font-style: italic;
	font-weight: 600;
	font-size: 14px;
}

.tour-book-btn {
	background: var(--color-phu);
	color: var(--color-white) !important;
	text-decoration: none;
	padding: 12px 10px;
	border-radius: 14px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	transition: .3s;
}

.tour-book-btn:hover {
	transform: translateY(-2px);
}

@media(max-width:768px) {
	.tour-day-item {
		padding: 20px 10px 0 40px;
	}

	.tour-day-title {
		font-size: 18px;
	}

	.tour-day-content {
		font-size: 13px;
		line-height: 1.7;
	}

	.tour-schedule-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.tour-book-btn {
		width: 100%;
		text-align: center;
	}
}