
.dl-route-map {
	--dl-route-gold: #c58d48;
	--dl-route-map-height: 440px;


	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: var(--dl-route-map-height);
	overflow: hidden;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}



.dl-route-map__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;

}

.dl-route-map__route {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.dl-route-map__route path {
	fill: none;
	stroke: var(--dl-route-gold);
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 11 12;
	vector-effect: non-scaling-stroke;
	filter: drop-shadow(0 0 5px rgba(197, 141, 72, 0.34));
}

/* anchor points */
.dl-route-map__location {
	position: absolute;
	z-index: 3;
	width: 0;
	height: 0;
	color: #fff;
}

/* tuned to the reference composition */
.dl-route-map__location--from {
	top: 25.6%;
	left: 16.8%;
}

.dl-route-map__location--to {
	top: 89.2%;
	left: 72.8%;
}

.dl-route-map__label {
	position: absolute;
	margin: 0;
	font-family: inherit;
	font-size: clamp(16px, 1.55vw, 23px);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: #fff;
	white-space: nowrap;
	text-shadow: 0 2px 9px rgba(0, 0, 0, 0.72);
}

/* top point label above the marker, centered like the reference */
.dl-route-map__location--from .dl-route-map__label {
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	text-align: center;
}

/* bottom point label to the right of the marker */
.dl-route-map__location--to .dl-route-map__label {
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
}

/* marker similar to the reference */
.dl-route-map__pin {
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	background: #ffffff;
	border-radius: 50% 50% 50% 0;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.34);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.dl-route-map__pin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--dl-route-gold);
	transform: translate(-50%, -50%);
}

.dl-route-map__pin span {
	display: none;
}

@media (max-width: 1024px) {
	.dl-route-map {
		min-height: min(var(--dl-route-map-height), 390px);
	}

	.dl-route-map__location--from {
		left: 17%;
	}

	.dl-route-map__location--to {
		left: 73%;
	}
}

@media (max-width: 767px) {
	.dl-route-map {
		min-height: 300px;
	}

	.dl-route-map__route path {
		stroke-width: 4;
		stroke-dasharray: 9 10;
	}

	.dl-route-map__location--from {
		top: 25.8%;
		left: 16.8%;
	}

	.dl-route-map__location--to {
		top: 89%;
		left: 72.8%;
	}

	.dl-route-map__label {
		font-size: 15px;
	}

	.dl-route-map__location--from .dl-route-map__label {
		bottom: 19px;
	}

	.dl-route-map__location--to .dl-route-map__label {
		left: 21px;
	}

	.dl-route-map__pin {
		width: 23px;
		height: 23px;
	}

	.dl-route-map__pin::after {
		width: 6px;
		height: 6px;
	}
}
