/**
 * Approved Tour / Safari card — FINAL sitewide template.
 */

.eaks-tour-card {
	--eaks-tour-forest: #0b1f18;
	--eaks-tour-forest-mid: #143028;
	--eaks-tour-gold: #c99812;
	--eaks-tour-gold-deep: #a87d0e;
	--eaks-tour-ink: #1c2f28;
	--eaks-tour-muted: #5a6b64;
	--eaks-tour-line: #e4e7e5;
	--eaks-tour-sans: inherit;
	--eaks-tour-heading: inherit;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow:
		0 1px 2px rgba(17, 24, 39, 0.04),
		0 8px 16px rgba(17, 24, 39, 0.06),
		0 20px 40px rgba(17, 24, 39, 0.1);
	font-family: var(--eaks-tour-sans);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.eaks-tour-card:hover {
	transform: translateY(-5px);
	box-shadow:
		0 2px 4px rgba(17, 24, 39, 0.05),
		0 14px 28px rgba(17, 24, 39, 0.1),
		0 28px 56px rgba(17, 24, 39, 0.14);
}

.eaks-tour-card__link {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	min-height: 100%;
	color: inherit;
	text-decoration: none !important;
}

.eaks-tour-card__link:hover,
.eaks-tour-card__link:focus,
.eaks-tour-card__link:focus-visible {
	text-decoration: none !important;
	color: inherit;
}

.eaks-tour-card__link *:not(.eaks-tour-card__title),
.eaks-tour-card__link:hover *:not(.eaks-tour-card__title),
.eaks-tour-card__link:focus *:not(.eaks-tour-card__title) {
	text-decoration: none !important;
}

.eaks-tour-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 5 / 6;
	width: 100%;
	flex: 0 0 auto;
	background: var(--eaks-tour-forest);
}

.eaks-tour-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.65s ease;
}

.eaks-tour-card:hover .eaks-tour-card__media img {
	transform: scale(1.07);
}

.eaks-tour-card__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(6, 18, 14, 0.18) 0%, transparent 32%),
		linear-gradient(180deg, transparent 42%, rgba(6, 18, 14, 0.78) 78%, rgba(6, 18, 14, 0.94) 100%);
}

.eaks-tour-card__duration {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 3;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(11, 31, 24, 0.82);
	backdrop-filter: blur(6px);
	color: #fff !important;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.eaks-tour-card__level {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 2;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(201, 152, 18, 0.92);
	color: var(--eaks-tour-forest);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.2;
}

.eaks-tour-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 1.15rem 1.05rem 1.2rem;
	color: #fff;
}

.eaks-tour-card__title {
	margin: 0 0 0.45rem;
	font-family: var(--eaks-tour-heading);
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.3;
	color: #fff !important;
	text-wrap: balance;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: calc(1.3em * 2);
}

.eaks-tour-card__link .eaks-tour-card__title,
.eaks-tour-card__link:hover .eaks-tour-card__title,
.eaks-tour-card__link:focus .eaks-tour-card__title,
.eaks-tour-card__link:visited .eaks-tour-card__title,
.eaks-tour-card a:hover .eaks-tour-card__title,
.theme-button .eaks-tour-card__title,
#wrap .eaks-tour-card__title {
	color: #fff !important;
}

.eaks-tour-card__location {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	font-size: inherit;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92) !important;
	min-height: 1.45em;
}

.eaks-tour-card__location .ticon {
	color: var(--eaks-tour-gold);
	font-size: 0.95em;
}

.eaks-tour-card__footer {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	flex: 1 1 auto;
	gap: 1.1rem;
	padding: 1.15rem 1.15rem 1.25rem;
	background: #fff;
}

.eaks-tour-card__excerpt {
	margin: 0;
	padding: 0.85rem 0.95rem;
	background: #f7f8f6;
	border-radius: 0;
	font-size: inherit;
	line-height: 1.6;
	color: var(--eaks-tour-muted);
	overflow: visible;
}

.eaks-tour-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: 100%;
	margin-top: auto;
	padding: 0.85rem 1.1rem;
	border: 0;
	border-radius: 8px;
	background: #f0e0a8;
	color: var(--eaks-tour-forest);
	font-size: inherit;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: nowrap;
	box-shadow: none;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.eaks-tour-card__cta span[aria-hidden="true"] {
	transition: transform 0.25s ease;
}

.eaks-tour-card:hover .eaks-tour-card__cta {
	background: #e8d48a;
	color: var(--eaks-tour-forest);
	box-shadow: 0 2px 10px rgba(201, 152, 18, 0.22);
}

.eaks-tour-card:hover .eaks-tour-card__cta span[aria-hidden="true"] {
	transform: translateX(3px);
}

/* Grids */
.eaks-tour-card-grid,
.eaks-vc-tour-grid {
	display: grid;
	grid-template-columns: repeat(var(--eaks-tour-cols, 3), minmax(0, 1fr));
	gap: 1.35rem;
	align-items: stretch;
}

.eaks-tour-card-grid .eaks-tour-card,
.eaks-vc-tour-grid .eaks-tour-card {
	height: 100%;
}

.eaks-vc-tour-single {
	max-width: 360px;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.eaks-vc-tour-single.is-full {
	max-width: none;
	width: 100%;
}

/* Equal-height tour cards in WPBakery rows */
.vc_row:has(.eaks-tour-card) {
	display: flex !important;
	flex-wrap: wrap;
	align-items: stretch;
	column-gap: 0;
	row-gap: 1.75rem;
	margin-left: -0.75rem;
	margin-right: -0.75rem;
	margin-bottom: 1.75rem !important;
	padding-bottom: 0;
}

.vc_row:has(.eaks-tour-card)::before,
.vc_row:has(.eaks-tour-card)::after {
	display: none !important;
	content: none !important;
}

.vc_row:has(.eaks-tour-card) > .vc_column_container,
.vc_row:has(.eaks-tour-card) > .wpb_column {
	display: flex !important;
	flex-direction: column;
	align-self: stretch;
	float: none !important;
	padding-left: 0.75rem !important;
	padding-right: 0.75rem !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.vc_row:has(.eaks-tour-card) > .vc_col-sm-3,
.vc_row:has(.eaks-tour-card) > .vc_column_container.vc_col-sm-3 {
	flex: 0 0 25%;
	max-width: 25%;
	width: 25% !important;
}

.vc_row:has(.eaks-tour-card) > .vc_col-sm-4,
.vc_row:has(.eaks-tour-card) > .vc_column_container.vc_col-sm-4 {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	width: 33.333333% !important;
}

.vc_row:has(.eaks-tour-card) > .vc_col-sm-6,
.vc_row:has(.eaks-tour-card) > .vc_column_container.vc_col-sm-6 {
	flex: 0 0 50%;
	max-width: 50%;
	width: 50% !important;
}

.vc_row:has(.eaks-tour-card) .vc_column-inner,
.vc_row:has(.eaks-tour-card) .wpb_wrapper {
	display: flex !important;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	height: 100% !important;
	min-height: 100%;
}

.vc_row:has(.eaks-tour-card) .eaks-vc-tour-single.is-full,
.vc_column_container .eaks-vc-tour-single.is-full,
.wpb_column .eaks-vc-tour-single.is-full,
.vc_column-inner .eaks-vc-tour-single.is-full {
	max-width: none;
	width: 100%;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 0;
	height: 100%;
}

.vc_row:has(.eaks-tour-card) .eaks-tour-card,
.vc_column_container .eaks-tour-card,
.wpb_column .eaks-tour-card,
.vc_column-inner .eaks-tour-card {
	flex: 1 1 auto;
	height: 100%;
}

.vc_row:has(.eaks-tour-card) .eaks-tour-card__link {
	flex: 1 1 auto;
	height: 100%;
}

.vc_row:has(.eaks-tour-card) .eaks-tour-card__footer {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.vc_row:has(.eaks-tour-card) .eaks-tour-card__cta {
	margin-top: auto;
}

/* Neutralize Total card shell when using tour_1 style */
.wpex-card:has(.eaks-tour-card) {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	height: 100% !important;
	display: flex;
	flex-direction: column;
}

@media (max-width: 767px) {
	.vc_row:has(.eaks-tour-card) > .vc_col-sm-3,
	.vc_row:has(.eaks-tour-card) > .vc_column_container.vc_col-sm-3,
	.vc_row:has(.eaks-tour-card) > .vc_col-sm-4,
	.vc_row:has(.eaks-tour-card) > .vc_column_container.vc_col-sm-4,
	.vc_row:has(.eaks-tour-card) > .vc_col-sm-6,
	.vc_row:has(.eaks-tour-card) > .vc_column_container.vc_col-sm-6 {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100% !important;
	}
}

@media (max-width: 980px) {
	.eaks-tour-card-grid,
	.eaks-vc-tour-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.eaks-tour-card-grid,
	.eaks-vc-tour-grid {
		grid-template-columns: 1fr;
	}

	.eaks-tour-card__media {
		aspect-ratio: 1 / 1.1;
	}
}
