/* START TBA ROUTE INTRO */
.tba-route-intro {
	padding: 0 24px;
	text-align: left;
}

.tba-route-intro h1 {
	margin: 0 0 28px;
	text-align: center;
}

/* Route strip */
.tba-route-intro__route-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 460px;
	margin: 0 auto 32px;
}

.tba-route-intro__route-node {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	background: linear-gradient(160deg, #f5faf5, #e6f2e9);
	border: 1px solid #dbeadf;
	border-radius: 50%;
	box-shadow: 0 6px 14px rgba(31, 107, 53, .12);
	transition: transform .25s ease, box-shadow .25s ease;
}

.tba-route-intro__route-node:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(31, 107, 53, .18);
}

.tba-route-intro__route-node svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: #1f6b35;
}

.tba-route-intro__route-line {
	flex: 1 1 auto;
	height: 1px;
	margin: 0 12px;
	background: repeating-linear-gradient(
		90deg,
		#b9dfca 0,
		#b9dfca 4px,
		transparent 4px,
		transparent 8px
	);
}

/* Intro text */
.tba-route-intro p {
	max-width: none;
	margin: 0 0 16px;
	line-height: 1.65;
	text-align: left;
}

.tba-route-intro p:last-of-type {
	margin-bottom: 0;
}

.tba-route-intro__lead {
	max-width: none !important;
	margin: 0 !important;
}

/* Facts */
.tba-route-intro__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 900px;
	margin: 28px auto 0;
	padding: 0;
	background: linear-gradient(160deg, #f7fbf7, #eef6f0);
	border: 1px solid #dbeadf;
	border-radius: 14px;
	box-shadow: 0 14px 34px rgba(15, 40, 30, .08);
	overflow: hidden;
	text-align: left;
}

.tba-route-intro__fact {
	display: flex;
	box-sizing: border-box;
	align-items: center;
	gap: 9px;
	height: 72px;
	min-height: 0;
	padding: 6px 16px;
	border-right: 1px solid #dbeadf;
	transition: background-color .25s ease;
}

.tba-route-intro__fact:hover {
	background-color: rgba(17, 164, 94, .06);
}

.tba-route-intro__fact:last-child {
	border-right: 0;
}

.tba-route-intro__fact > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tba-route-intro__icon {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #1f6b35;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	filter: drop-shadow(0 2px 3px rgba(31, 107, 53, .18));
}

.tba-route-intro__icon .tba-route-intro__tag-hole {
	fill: #1f6b35;
	stroke: none;
}

.tba-route-intro__label {
	color: #4c7357;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.15;
	text-transform: uppercase;
}

.tba-route-intro__fact strong {
	color: #1f6b35;
	font-size: 15px;
	line-height: 1.2;
}

.tba-route-intro__fact small {
	color: #557060;
	font-size: 12px;
	font-weight: 500;
}

/* Mobile */
@media (max-width: 700px) {
	.tba-route-intro {
		padding: 0 18px;
	}

	.tba-route-intro__route-strip {
		max-width: 320px;
		margin-bottom: 26px;
	}

	.tba-route-intro__route-node {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.tba-route-intro__route-node svg {
		width: 19px;
		height: 19px;
	}

	.tba-route-intro__route-line {
		margin: 0 8px;
	}

	.tba-route-intro__facts {
		grid-template-columns: 1fr;
		max-width: none;
		margin-top: 22px;
	}

	.tba-route-intro__fact {
		height: auto;
		min-height: 62px;
		padding: 10px 14px;
		border-right: 0;
		border-bottom: 1px solid #dbeadf;
	}

	.tba-route-intro__fact:last-child {
		border-bottom: 0;
	}
}
/* END TBA ROUTE INTRO */


/* START ROUTE EXPERIENCE */
/* Image */
.tm24-route-experience__image .vc_single_image-wrapper {
	display: block;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 14px 34px rgba(15, 40, 30, .16);
}

.tm24-route-experience__image img {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1);
	transition: transform .6s ease;
}

.tm24-route-experience__image:hover img {
	transform: scale(1.045);
}

/* Mobile */
@media (max-width: 600px) {
	.tm24-route-experience__image .vc_single_image-wrapper {
		border-radius: 12px;
	}
}
/* END ROUTE EXPERIENCE */


/* START TBA ROUTE DETAILS */
.tba-route-details {
	position: relative;
	isolation: isolate;
	margin: 0 auto;
	box-sizing: border-box;
}

.tba-route-details::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	width: min(1320px, 132%);
	height: 560px;
	background: radial-gradient(
		ellipse at center,
		rgba(55, 145, 73, .10) 0%,
		rgba(78, 166, 92, .055) 36%,
		rgba(116, 190, 126, .025) 55%,
		rgba(255, 255, 255, 0) 78%
	);
	filter: blur(28px);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.tba-route-details h2 {
	margin: 0 0 12px;
	line-height: 1.2;
}

.tba-route-details p {
	max-width: none;
	margin: 0 0 20px;
	line-height: 1.6;
}

.tba-route-details__journey {
	margin-bottom: 28px;
}

/* Route line */
.tba-route-details__line {
	display: flex;
	align-items: center;
	margin: 0 0 18px;
}

.tba-route-details__node {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, #16c26e, #0c8a4d);
	box-shadow: 0 3px 8px rgba(17, 164, 94, .35);
}

.tba-route-details__track {
	flex: 1 1 auto;
	height: 1px;
	margin: 0 10px;
	background: repeating-linear-gradient(
		90deg,
		#b9dfca 0,
		#b9dfca 4px,
		transparent 4px,
		transparent 8px
	);
}

/* Stats */
.tba-route-details__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 32px;
}

.tba-route-details__stat {
	color: #4c7357;
}

.tba-route-details__stat strong {
	color: #0c8a4d;
	font-weight: 700;
}

/* Chips */
.tba-route-details__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tba-route-details__chips li {
	padding: 6px 14px;
	background: rgba(255, 255, 255, .82);
	border: 1px solid #dbeadf;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(15, 40, 30, .05);
	color: #0c8a4d;
	font-size: 13px;
	font-weight: 600;
	transition: background-color .2s ease, box-shadow .2s ease;
}

.tba-route-details__chips li:hover {
	background: #f5faf5;
	box-shadow: 0 4px 10px rgba(15, 40, 30, .08);
}

/* Mobile */
@media (max-width: 700px) {
	.tba-route-details {
		padding: 0 18px;
	}

	.tba-route-details::before {
		width: 138%;
		height: 500px;
	}

	.tba-route-details p {
		margin-bottom: 18px;
	}

	.tba-route-details__journey {
		margin-bottom: 24px;
	}

	.tba-route-details__line {
		margin-bottom: 16px;
	}

	.tba-route-details__stats {
		flex-direction: column;
		gap: 6px;
	}

	.tba-route-details__chips li {
		padding: 5px 12px;
		font-size: 12.5px;
	}
}
/* END TBA ROUTE DETAILS */


/* START TBA TRUST */
.tba-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	text-align: center;
}

.tba-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 22px 18px;
	background: linear-gradient(160deg, #f7fbf7, #eef6f0);
	border: 1px solid #dbeadf;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(15, 40, 30, .06);
	transition: transform .25s ease, box-shadow .25s ease;
}

.tba-trust__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(15, 40, 30, .1);
}

.tba-trust__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 14px;
	background: #fff;
	border: 1px solid #dcefe3;
	border-radius: 14px;
	box-shadow: 0 4px 10px rgba(15, 40, 30, .07);
}

.tba-trust__icon svg {
	width: 26px;
	height: 26px;
	color: #0fa15b;
}

.tba-trust__item h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.tba-trust__item p {
	margin: 0;
	line-height: 1.55;
	color: #4c7357;
}

/* Mobile */
@media (max-width: 700px) {
	.tba-trust {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 0 18px;
	}

	.tba-trust__item {
		padding: 18px;
	}
}
/* END TBA TRUST */



/* START TBA FAQ */
.tba-faq {
	max-width: 1080px;
	margin: 0 auto;
	padding: 34px 36px 38px;
	text-align: left;
	background: linear-gradient(180deg, #f8fbf9 0%, #f4f8f5 100%);
	border: 1px solid #e2ece5;
	border-radius: 24px;
	box-shadow: 0 10px 35px rgba(20, 50, 35, .045);
}

.tba-faq h2 {
	margin: 0 0 12px;
	font-size: clamp(25px, 2.2vw, 34px);
	line-height: 1.18;
	letter-spacing: -.02em;
	color: #183626;
}

.tba-faq > p {
	max-width: 900px;
	margin: 0 0 30px;
	font-size: 15px;
	line-height: 1.7;
	color: #587064;
}

/* Group headings */
.tba-faq__group {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 24px 0 14px !important;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .065em;
	text-transform: uppercase;
	color: #0b8750;
}

.tba-faq__group::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(11, 135, 80, .22),
		rgba(11, 135, 80, 0)
	);
}

.tba-faq__group:first-of-type {
	margin-top: 0 !important;
}

/* Two-column FAQ grid */
.tba-faq__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 12px;
	align-items: start;
}

/* Accordion item */
.tba-faq details {
	position: relative;
	margin: 0;
	padding: 0 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e0e9e3;
	border-radius: 13px;
	box-shadow: 0 2px 8px rgba(20, 45, 30, .025);
	transition:
		border-color .22s ease,
		box-shadow .22s ease,
		transform .22s ease,
		background-color .22s ease;
}

.tba-faq details:hover {
	border-color: #c8ddd0;
	box-shadow: 0 5px 16px rgba(20, 45, 30, .05);
}

.tba-faq details[open] {
	background: #fff;
	border-color: #bcd9c8;
	box-shadow: 0 8px 24px rgba(20, 55, 35, .07);
}

/* Question */
.tba-faq summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 50px;
	padding: 11px 42px 11px 0;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	line-height: 1.4;
	color: #20362a;
	transition: color .2s ease;
}

.tba-faq summary::-webkit-details-marker {
	display: none;
}

.tba-faq details:hover summary,
.tba-faq details[open] summary {
	color: #087847;
}

/* Plus button */
.tba-faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 0;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border: 1px solid #d5e9dc;
	border-radius: 50%;
	background: #edf7f1;
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
	color: #0b8750;
	transition:
		transform .22s ease,
		background-color .22s ease,
		color .22s ease,
		border-color .22s ease;
}

.tba-faq details:hover summary::after {
	background: #e4f3ea;
	border-color: #c5dfcf;
}

.tba-faq details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
	background: #0b8750;
	border-color: #0b8750;
	color: #fff;
}

/* Answer */
.tba-faq details p {
	margin: -1px 34px 0 0;
	padding: 0 0 14px;
	font-size: 13.4px;
	line-height: 1.6;
	color: #526359;
}

.tba-faq details p strong {
	font-weight: 700;
	color: #284536;
}

/* Keyboard accessibility */
.tba-faq summary:focus-visible {
	outline: 2px solid rgba(11, 135, 80, .45);
	outline-offset: 3px;
	border-radius: 6px;
}

/* Tablet */
@media (max-width: 900px) {
	.tba-faq {
		padding: 30px 28px 34px;
		border-radius: 20px;
	}

	.tba-faq > p {
		margin-bottom: 28px;
	}

	.tba-faq__grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile */
@media (max-width: 700px) {
	.tba-faq {
		padding: 24px 18px 26px;
		border-radius: 18px;
	}

	.tba-faq h2 {
		font-size: 24px;
		line-height: 1.22;
	}

	.tba-faq > p {
		margin-bottom: 26px;
		line-height: 1.65;
	}

	.tba-faq__group {
		gap: 10px;
		margin: 18px 0 12px !important;
		font-size: 12px;
		letter-spacing: .055em;
	}

	.tba-faq__group:first-of-type {
		margin-top: 0 !important;
	}

	.tba-faq__grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.tba-faq details {
		padding: 0 14px;
		border-radius: 12px;
	}

	.tba-faq summary {
		min-height: 48px;
		padding: 11px 38px 11px 0;
		font-size: 14px;
	}

	.tba-faq summary::after {
		width: 26px;
		height: 26px;
		font-size: 17px;
	}

	.tba-faq details p {
		margin: 0 32px 0 0;
		padding: 0 0 13px;
		font-size: 13.4px;
		line-height: 1.6;
	}
}
/* END TBA FAQ */

/* START TBA RELATED INTRO */
.tba-related-intro {
	max-width: 820px;
	margin: 25px auto 28px;
	padding: 0 24px;
	text-align: center;
}

.tba-related-intro h2 {
	margin: 0 0 10px;
	color: #183626;
	font-size: clamp(24px, 2.3vw, 31px);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -.015em;
}

.tba-related-intro p {
	margin: 0 auto;
	max-width: 760px;
	color: #587064;
	font-size: 15px;
	line-height: 1.7;
}

@media (max-width: 700px) {
	.tba-related-intro {
		margin: 32px auto 22px;
		padding: 0 18px;
	}

	.tba-related-intro h2 {
		font-size: 23px;
	}

	.tba-related-intro p {
		font-size: 14px;
		line-height: 1.65;
	}
}
/* END TBA RELATED INTRO */