/* ==========================================================
   NEWATOURS – REISEROUTE & HIGHLIGHTS
   ========================================================== */

.newatours-route-highlights {
	--newa-navy: #0d2d4a;
	--newa-gold: #b08d57;
	--newa-text: #2e2e2e;
	--newa-route-arrow-color: #ffffff;
	--newa-route-arrow-bg: rgba(13, 45, 74, 0.58);
	--newa-route-dot-color: rgba(13, 45, 74, 0.25);
	--newa-route-dot-active: #b08d57;

	display: grid;

	grid-template-columns:
		0.92fr 1.08fr;

	gap: 44px;

	width: 100%;
}


.newatours-route-highlights-column {
	min-width: 0;
}


/* ==========================================================
   ROUTE / SLIDER
   ========================================================== */

.newatours-route-slider {
	position: relative;

	width: 100%;
}


.newatours-route-slider-viewport {
	position: relative;

	width: 100%;

	overflow: hidden;

	border-radius: 12px;

	background: #ffffff;

	box-shadow:
		0 6px 22px
		rgba(13, 45, 74, 0.07);
}


.newatours-route-slider-track {
	display: flex;

	width: 100%;

	transition:
		transform 0.35s ease;
}


.newatours-route-slide {
	position: relative;

	flex: 0 0 100%;

	width: 100%;

	margin: 0;
	padding: 0;

	cursor: zoom-in;
}


.newatours-route-slide img {
	display: block;

	width: 100%;

	aspect-ratio: 1 / 1;

	margin: 0;
	padding: 0;

	border: 0;

	object-fit: cover;
	object-position: center;
}


/* ==========================================================
   CAPTION AUF KARTE
   ========================================================== */

.newatours-route-slide-caption {
	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	padding: 10px 14px;

	background:
		linear-gradient(
			to top,
			rgba(13, 45, 74, 0.78),
			rgba(13, 45, 74, 0)
		);

	color: #ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;

	text-align: center;

	pointer-events: none;
}


/* ==========================================================
   SLIDER-PFEILE
   ========================================================== */

.newatours-route-arrow {
	position: absolute;

	top: 50%;

	z-index: 5;

	display: flex !important;
	align-items: center;
	justify-content: center;

	width: 38px !important;
	height: 38px !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;
	border-radius: 50% !important;

	background:
		var(--newa-route-arrow-bg) !important;

	box-shadow: none !important;
	outline: none !important;

	color:
		var(--newa-route-arrow-color) !important;

	font-family:
		Arial,
		sans-serif !important;

	font-size: 30px !important;
	font-weight: 300 !important;
	line-height: 1 !important;

	cursor: pointer;

	transform:
		translateY(-50%);

	transition:
		background-color 0.2s ease,
		opacity 0.2s ease;
}


.newatours-route-arrow:hover,
.newatours-route-arrow:focus {
	background:
		rgba(13, 45, 74, 0.82) !important;
}


.newatours-route-prev {
	left: 14px;
}


.newatours-route-next {
	right: 14px;
}


/* ==========================================================
   DOTS
   ========================================================== */

.newatours-route-dots {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 8px;

	margin-top: 14px;
}


.newatours-route-dot {
	width: 8px !important;
	height: 8px !important;

	min-width: 8px !important;
	min-height: 8px !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;
	border-radius: 50% !important;

	background:
		var(--newa-route-dot-color) !important;

	box-shadow: none !important;

	cursor: pointer;
}


.newatours-route-dot.is-active {
	background:
		var(--newa-route-dot-active) !important;
}


/* ==========================================================
   HIGHLIGHTS
   ========================================================== */

.newatours-route-highlights-list-column {
	display: flex;
	flex-direction: column;

	min-width: 0;
	min-height: 0;
}


.newatours-route-highlights-eyebrow {
	margin: 0 0 16px;

	color: var(--newa-gold);

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;

	letter-spacing: 1.4px;

	text-transform: uppercase;
}


.newatours-route-highlights-list-wrap {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}


.newatours-route-highlights-list {
	position: relative;

	overflow: hidden;

	transition:
		max-height 0.3s ease;
}


.newatours-route-highlights-list ul {
	list-style: none;

	margin: 0;
	padding: 0;
}


.newatours-route-highlights-list li {
	position: relative;

	margin: 0;

	padding:
		13px
		0
		13px
		26px;

	border-bottom:
		1px solid
		rgba(13, 45, 74, 0.08);

	color: var(--newa-text);

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}


.newatours-route-highlights-list li:first-child {
	padding-top: 4px;
}


.newatours-route-highlights-list li:last-child {
	border-bottom: 0;
}


/* Goldener Stern */

.newatours-route-highlights-list li::before {
	content: "✦";

	position: absolute;

	top: 14px;
	left: 2px;

	color: var(--newa-gold);

	font-size: 11px;
	line-height: 1.4;
}


.newatours-route-highlights-list li:first-child::before {
	top: 5px;
}


/* Richtext */

.newatours-route-highlights-list strong {
	font-weight: 700;
}


.newatours-route-highlights-list em {
	font-style: italic;
}


.newatours-route-highlights-list a {
	color: var(--newa-gold);

	text-decoration: none;

	border-bottom:
		1px solid
		rgba(176, 141, 87, 0.45);
}


.newatours-route-highlights-list a:hover {
	color: var(--newa-gold);

	text-decoration: none;

	border-color:
		var(--newa-gold);
}


/* ==========================================================
   COLLAPSED
   ========================================================== */

.newatours-route-highlights-list.is-collapsed::after {
	content: "";

	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	height: 42px;

	background:
		linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0),
			#ffffff 90%
		);

	pointer-events: none;
}


.newatours-route-highlights-list.is-expanded {
	max-height: none !important;
}


/* ==========================================================
   MEHR ERFAHREN
   ========================================================== */

.newatours-route-highlights-more {
	align-self: flex-start;

	display: inline-flex !important;
	align-items: center;

	gap: 6px;

	margin: auto 0 0 !important;
	padding: 0 !important;

	border: 0 !important;
	border-radius: 0 !important;

	background: transparent !important;

	box-shadow: none !important;
	outline: none !important;


	font-family: "Source Sans 3", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;

	cursor: pointer;
}

.newatours-route-highlights
.newatours-route-highlights-more {
	color: var(--newa-gold);
}


.newatours-route-highlights-more:hover,
.newatours-route-highlights-more:focus,
.newatours-route-highlights-more:active {
	background: transparent !important;

	text-decoration: none !important;

	box-shadow: none !important;
}

.newatours-route-highlights
.newatours-route-highlights-more:hover,
.newatours-route-highlights
.newatours-route-highlights-more:focus,
.newatours-route-highlights
.newatours-route-highlights-more:active {
	color: var(--newa-gold);
}

.newatours-route-highlights-more[hidden] {
	display: none !important;
}


.newatours-route-highlights-more-icon {
	display: inline-block;

	font-size: 17px;
	line-height: 1;

	transition:
		transform 0.2s ease;
}


.newatours-route-highlights-more.is-open
.newatours-route-highlights-more-icon {
	transform:
		rotate(180deg);
}


/* ==========================================================
   LIGHTBOX
   ========================================================== */

.newatours-route-lightbox[hidden] {
	display: none !important;
}


.newatours-route-lightbox {
	position: fixed;

	inset: 0;

	z-index: 99999;

	display: flex;
	align-items: center;
	justify-content: center;

	background:
		rgba(0, 0, 0, 0.88);
}


.newatours-route-lightbox-backdrop {
	position: absolute;

	inset: 0;

	background:
		rgba(0, 0, 0, 0.12);

	cursor: default;
}


.newatours-route-lightbox-inner {
	position: relative;

	z-index: 2;

	width: 100vw;
	height: 100vh;

	display: flex;
	align-items: center;
	justify-content: center;

	pointer-events: none;
}


.newatours-route-lightbox-stage {
	position: absolute;

	top: 55px;
	right: 80px;
	bottom: 70px;
	left: 80px;

	display: flex;
	align-items: center;
	justify-content: center;

	pointer-events: none;
}


.newatours-route-lightbox-image {
	display: block;

	width: auto;
	height: auto;

	max-width: 100%;
	max-height: 100%;

	object-fit: contain;

	box-shadow:
		0 4px 30px
		rgba(0, 0, 0, 0.30);

	pointer-events: auto;
}


/* ==========================================================
   LIGHTBOX COUNTER
   ========================================================== */

.newatours-route-lightbox-counter {
	position: absolute;

	top: 18px;
	left: 20px;

	z-index: 10;

	color: #ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 600;
	line-height: 1;

	pointer-events: auto;
}


/* ==========================================================
   LIGHTBOX CLOSE
   ========================================================== */

.newatours-route-lightbox-close {
	position: absolute;

	top: 12px;
	right: 18px;

	z-index: 10;

	display: flex !important;
	align-items: center;
	justify-content: center;

	width: 40px !important;
	height: 40px !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;
	border-radius: 0 !important;

	background: transparent !important;

	box-shadow: none !important;
	outline: none !important;

	color: #ffffff !important;

	font-family:
		Arial,
		sans-serif !important;

	font-size: 34px !important;
	font-weight: 300 !important;
	line-height: 1 !important;

	cursor: pointer;

	opacity: 0.9;

	pointer-events: auto;
}


.newatours-route-lightbox-close:hover,
.newatours-route-lightbox-close:focus {
	background: transparent !important;

	opacity: 1;
}


/* ==========================================================
   LIGHTBOX PFEILE
   ========================================================== */

.newatours-route-lightbox-prev,
.newatours-route-lightbox-next {
	position: absolute;

	top: 50%;

	z-index: 10;

	display: flex !important;
	align-items: center;
	justify-content: center;

	width: 54px !important;
	height: 70px !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;
	border-radius: 0 !important;

	background: transparent !important;

	box-shadow: none !important;
	outline: none !important;

	color: #ffffff !important;

	font-family:
		Arial,
		sans-serif !important;

	font-size: 58px !important;
	font-weight: 200 !important;
	line-height: 1 !important;

	cursor: pointer;

	transform:
		translateY(-50%);

	opacity: 0.85;

	pointer-events: auto;
}


.newatours-route-lightbox-prev {
	left: 42px;
}


.newatours-route-lightbox-next {
	right: 42px;
}


.newatours-route-lightbox-prev:hover,
.newatours-route-lightbox-next:hover,
.newatours-route-lightbox-prev:focus,
.newatours-route-lightbox-next:focus {
	background: transparent !important;

	opacity: 1;
}


.newatours-route-lightbox-prev[hidden],
.newatours-route-lightbox-next[hidden] {
	display: none !important;
}


/* ==========================================================
   LIGHTBOX CAPTION
   ========================================================== */

.newatours-route-lightbox-caption {
	position: absolute;

	left: 50%;
	bottom: -42px;

	transform:
		translateX(-50%);

	width: max-content;

	max-width:
		min(
			900px,
			80vw
		);

	padding: 0 12px;

	color: #ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;

	text-align: center;

	text-shadow:
		0 1px 3px
		rgba(0, 0, 0, 0.65);

	pointer-events: none;
}


.newatours-route-lightbox-caption[hidden] {
	display: none !important;
}


html.newatours-lightbox-open,
body.newatours-lightbox-open {
	overflow: hidden !important;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.newatours-route-highlights {
		grid-template-columns:
			0.95fr
			1.05fr;

		gap: 28px;
	}


	.newatours-route-highlights-list li {
		padding-left: 23px;

		font-size: 15px;
	}


	.newatours-route-highlights-eyebrow {
		font-size: 13px;
	}


	.newatours-route-arrow {
		width: 34px !important;
		height: 34px !important;

		font-size: 27px !important;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.newatours-route-highlights {
		grid-template-columns: 1fr;

		gap: 30px;
	}


	.newatours-route-slide img {
		aspect-ratio: 1 / 1;
	}


	.newatours-route-slide-caption {
		padding: 9px 12px;

		font-size: 14px;
	}


	.newatours-route-arrow {
		width: 34px !important;
		height: 34px !important;

		font-size: 26px !important;
	}


	.newatours-route-prev {
		left: 10px;
	}


	.newatours-route-next {
		right: 10px;
	}


	.newatours-route-dots {
		margin-top: 12px;
	}


	.newatours-route-highlights-eyebrow {
		margin-bottom: 12px;

		font-size: 13px;
	}


	.newatours-route-highlights-list li {
		padding:
			11px
			0
			11px
			22px;

		font-size: 14px;
		line-height: 1.5;
	}


	.newatours-route-highlights-list li::before {
		top: 12px;

		font-size: 10px;
	}


	.newatours-route-highlights-list li:first-child::before {
		top: 4px;
	}


	.newatours-route-highlights-more {
		margin-top: 8px;

		font-size: 13px;
	}


	/* Lightbox mobile */

	.newatours-route-lightbox-stage {
		top: 55px;
		right: 15px;
		bottom: 65px;
		left: 15px;
	}


	.newatours-route-lightbox-prev {
		left: 8px;
	}


	.newatours-route-lightbox-next {
		right: 8px;
	}


	.newatours-route-lightbox-prev,
	.newatours-route-lightbox-next {
		width: 40px !important;
		height: 60px !important;

		font-size: 46px !important;
	}


	.newatours-route-lightbox-close {
		font-size: 28px !important;
	}


	.newatours-route-lightbox-caption {
		bottom: -43px;

		max-width: 88vw;

		font-size: 15px;
		line-height: 1.4;
	}

}