/* ==========================================================================
   Iconic Travel — Tour CSS (Navy + Gold dashboard style)
   Cards, archive, single, itinerary, includes/excludes, sidebar
   ========================================================================== */

/* ---------- Shared section wrap ---------- */
.tour-archive__inner,
.tour-single__inner,
.related-tours__inner,
.tour-hero__inner,
.tour-archive-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* =====================================================================
   TOUR CARD (dashboard density)
   ===================================================================== */
.tour-card {
	background: var(--bg, #fff);
	border: 1px solid var(--border, #E6E0D0);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	position: relative;
}
.tour-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px -10px rgba(10, 37, 64, 0.18);
	border-color: var(--primary-light, #1E3A5F);
}

.tour-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--bg-soft, #F7F4ED);
	margin: 6px 6px 0;
	border-radius: 8px;
}
.tour-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}
.tour-card:hover .tour-card__img {
	transform: scale(1.04);
}
.tour-card__img--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary, #0A2540);
	font-size: 54px;
	opacity: .35;
}
.tour-card__img--placeholder .dashicons {
	font-size: 54px;
	width: 54px;
	height: 54px;
}

.tour-card__badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--accent, #D4A24C);
	color: #0A1929;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: .3px;
	box-shadow: 0 4px 10px -3px rgba(212, 162, 76, 0.45);
}

.tour-card__body {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.tour-card__type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: var(--primary, #0A2540);
}

.tour-card__title {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.3;
	font-weight: 700;
	color: var(--text, #0A1929);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tour-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}
.tour-card__title a:hover {
	color: var(--primary, #0A2540);
}

.tour-card__excerpt {
	margin: 0;
	color: var(--text-muted, #5A6B7A);
	font-size: 13px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tour-card__dest {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: var(--text-muted, #5A6B7A);
}
.tour-card__dest .dashicons {
	color: var(--primary, #0A2540);
	font-size: 15px;
	width: 15px;
	height: 15px;
}

.tour-card__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px dashed var(--border, #E6E0D0);
}

.tour-card__price {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.tour-card__price-currency {
	font-size: 10px;
	font-weight: 600;
	color: var(--text-muted, #5A6B7A);
	letter-spacing: 1px;
	text-transform: uppercase;
}
.tour-card__price-amount {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--accent, #D4A24C);
}

.tour-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1.5px solid var(--primary, #0A2540);
	color: var(--primary, #0A2540);
	border-radius: 8px;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.tour-card__btn:hover {
	background: var(--primary, #0A2540);
	color: #fff;
	transform: translateX(2px);
}

/* =====================================================================
   TOUR GRID
   ===================================================================== */
.tour-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 980px) {
	.tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.tour-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* =====================================================================
   ARCHIVE HERO + FILTER CHIPS
   ===================================================================== */
.tour-archive-hero {
	background: linear-gradient(135deg, var(--primary, #0A2540) 0%, var(--primary-dark, #061A30) 100%);
	color: #fff;
	padding: 60px 0 50px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tour-archive-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 30%, rgba(255,255,255,.06), transparent 50%),
	            radial-gradient(circle at 15% 80%, rgba(212,162,76,.18), transparent 55%);
	pointer-events: none;
}
.tour-archive-hero__title {
	margin: 0 0 10px;
	font-size: clamp(28px, 4.5vw, 40px);
	font-weight: 800;
	letter-spacing: -0.5px;
}
.tour-archive-hero__sub {
	margin: 0 auto;
	max-width: 600px;
	font-size: 16px;
	opacity: .9;
	line-height: 1.55;
}

.tour-archive {
	padding: 44px 0 72px;
	background: var(--bg, #fff);
}

.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
	justify-content: center;
}
.filter-chip {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	background: #fff;
	color: var(--text, #0A1929);
	border: 1.5px solid var(--border, #E6E0D0);
	transition: all .2s ease;
}
.filter-chip:hover {
	background: #fff;
	border-color: var(--primary, #0A2540);
	color: var(--primary, #0A2540);
	transform: translateY(-1px);
}
.filter-chip.is-active {
	background: var(--primary, #0A2540);
	color: #fff;
	border-color: var(--primary, #0A2540);
	box-shadow: 0 6px 16px -8px rgba(10, 37, 64, 0.5);
}

/* Pagination */
.tour-pagination {
	margin-top: 44px;
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}
.tour-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1.5px solid var(--border, #E6E0D0);
	color: var(--text, #0A1929);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	transition: all .2s ease;
}
.tour-pagination .page-numbers:hover {
	border-color: var(--primary, #0A2540);
	color: var(--primary, #0A2540);
}
.tour-pagination .page-numbers.current {
	background: var(--primary, #0A2540);
	color: #fff;
	border-color: var(--primary, #0A2540);
}

.tour-empty {
	text-align: center;
	padding: 56px 20px;
	background: var(--bg-soft, #F7F4ED);
	border-radius: 12px;
	color: var(--text-muted, #5A6B7A);
}
.tour-empty .btn-link {
	display: inline-block;
	margin-top: 12px;
	color: var(--primary, #0A2540);
	font-weight: 600;
	text-decoration: none;
}
.tour-empty .btn-link:hover { text-decoration: underline; }

/* =====================================================================
   SINGLE TOUR HERO
   ===================================================================== */
.tour-hero {
	position: relative;
	min-height: 380px;
	background-color: var(--primary-dark, #061A30);
	background-size: cover;
	background-position: center;
	color: #fff;
	display: flex;
	align-items: flex-end;
	padding: 80px 0 44px;
}
.tour-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,37,64,.35) 0%, rgba(6,26,48,.85) 100%);
}
.tour-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.tour-hero__type {
	display: inline-block;
	padding: 4px 12px;
	background: var(--accent, #D4A24C);
	color: #0A1929;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.tour-hero__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 4.8vw, 46px);
	font-weight: 800;
	letter-spacing: -.5px;
	line-height: 1.15;
	text-shadow: 0 2px 18px rgba(0,0,0,.3);
	color: #fff;
}
.tour-hero h1,
.tour-hero h2,
.tour-hero h3 { color: #fff; }
.tour-hero__sub {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	opacity: .9;
	margin-bottom: 24px;
}
.tour-hero__sub .dashicons {
	color: var(--accent, #D4A24C);
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.tour-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 8px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
}
@media (max-width: 760px) {
	.tour-hero__stats { grid-template-columns: repeat(2, 1fr); }
}
.tour-hero__stats .stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.tour-hero__stats .stat__label {
	font-size: 10.5px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	opacity: .8;
	font-weight: 600;
}
.tour-hero__stats .stat__value {
	font-size: 16px;
	font-weight: 700;
}
.tour-hero__stats .stat--price .stat__value {
	color: var(--accent, #D4A24C);
	font-family: 'Fraunces', Georgia, serif;
}

/* =====================================================================
   SINGLE TOUR LAYOUT
   ===================================================================== */
.tour-single {
	padding: 56px 0;
	background: var(--bg, #fff);
}
.tour-single__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 36px;
	align-items: start;
}
@media (max-width: 980px) {
	.tour-single__inner {
		grid-template-columns: 1fr;
	}
}

.tour-single__main { min-width: 0; }

.tour-content {
	font-size: 16px;
	line-height: 1.75;
	color: var(--text, #0A1929);
}
.tour-content > * + * { margin-top: 16px; }

.tour-section {
	margin-top: 44px;
}
.tour-section__title {
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 800;
	color: var(--primary, #0A2540);
	position: relative;
	padding-bottom: 10px;
}
.tour-section__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44px;
	height: 3px;
	border-radius: 3px;
	background: var(--accent, #D4A24C);
}

/* =====================================================================
   ITINERARY TIMELINE
   ===================================================================== */
.itinerary-timeline {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}
.itinerary-timeline::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: linear-gradient(180deg, var(--primary, #0A2540), transparent);
}
.itinerary-timeline__item {
	position: relative;
	padding-left: 56px;
	margin-bottom: 20px;
}
.itinerary-timeline__item:last-child {
	margin-bottom: 0;
}
.itinerary-timeline__dot {
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary, #0A2540);
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	box-shadow: 0 6px 16px -6px rgba(10, 37, 64, 0.5);
	border: 3px solid #fff;
	z-index: 1;
	transition: box-shadow .25s ease, transform .25s ease;
}
.itinerary-timeline__item:hover .itinerary-timeline__dot {
	box-shadow: 0 0 0 6px rgba(212, 162, 76, 0.22), 0 6px 16px -6px rgba(10, 37, 64, 0.5);
	transform: scale(1.05);
}
.itinerary-timeline__content {
	background: var(--bg-soft, #F7F4ED);
	border: 1px solid var(--border, #E6E0D0);
	padding: 14px 18px;
	border-radius: 10px;
	transition: border-color .2s ease, transform .2s ease;
}
.itinerary-timeline__content:hover {
	border-color: var(--primary, #0A2540);
	transform: translateX(3px);
}
.itinerary-timeline__day {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary, #0A2540);
	letter-spacing: .4px;
}
.itinerary-timeline__content p {
	margin: 0;
	color: var(--text, #0A1929);
	line-height: 1.6;
	font-size: 14.5px;
}

/* =====================================================================
   INCLUDES / EXCLUDES
   ===================================================================== */
.includes-excludes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 680px) {
	.includes-excludes { grid-template-columns: 1fr; }
}
.includes-excludes__col {
	background: var(--bg-soft, #F7F4ED);
	border: 1px solid var(--border, #E6E0D0);
	border-radius: 10px;
	padding: 20px 22px;
}
.includes-excludes__col h3 {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
}
.includes-excludes__col--in h3 { color: var(--success, #2D7D5F); }
.includes-excludes__col--ex h3 { color: var(--primary, #0A2540); }

.includes-excludes ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.includes-excludes li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 5px 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text, #0A1929);
}
.ie-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	margin-top: 1px;
}
.ie-icon--ok {
	background: rgba(45, 125, 95, 0.14);
	color: var(--success, #2D7D5F);
}
.ie-icon--no {
	background: rgba(10, 37, 64, 0.08);
	color: var(--primary, #0A2540);
}

/* =====================================================================
   DESTINATION BADGES
   ===================================================================== */
.destination-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.destination-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 13px;
	background: var(--bg-soft, #F7F4ED);
	border: 1px solid var(--border, #E6E0D0);
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text, #0A1929);
	transition: all .2s ease;
}
.destination-badge:hover {
	background: var(--primary, #0A2540);
	color: #fff;
	border-color: var(--primary, #0A2540);
}
.destination-badge:hover .dashicons { color: #fff; }
.destination-badge .dashicons {
	color: var(--primary, #0A2540);
	font-size: 15px;
	width: 15px;
	height: 15px;
}

/* =====================================================================
   SIDEBAR (tighter padding 20px, navy heading)
   ===================================================================== */
.tour-sidebar {
	position: relative;
}
@media (min-width: 981px) {
	.tour-sidebar {
		position: sticky;
		top: 24px;
	}
}
.tour-sidebar__card {
	background: var(--bg, #fff);
	border: 1px solid var(--border, #E6E0D0);
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 14px 32px -22px rgba(10, 37, 64, 0.2);
}
.tour-sidebar__price {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--border, #E6E0D0);
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.tour-sidebar__price .muted {
	font-size: 11px;
	color: var(--text-muted, #5A6B7A);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.tour-sidebar__price strong {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 26px;
	color: var(--accent, #D4A24C);
	font-weight: 700;
}
.tour-sidebar__title {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 800;
	color: var(--primary, #0A2540);
}
.tour-sidebar__lead {
	margin: 0 0 16px;
	font-size: 13px;
	color: var(--text-muted, #5A6B7A);
	line-height: 1.5;
}

.tour-sidebar .trust-badges {
	list-style: none;
	padding: 14px 0 0;
	margin: 14px 0 0;
	border-top: 1px dashed var(--border, #E6E0D0);
}
.tour-sidebar .trust-badges li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
	font-size: 12.5px;
	color: var(--text-muted, #5A6B7A);
}
.tour-sidebar .trust-badges .dashicons {
	color: var(--accent, #D4A24C);
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.tour-sidebar__contact {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--border, #E6E0D0);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tour-sidebar__contact strong {
	font-size: 12.5px;
	color: var(--primary, #0A2540);
	margin-bottom: 2px;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--primary, #0A2540);
	font-weight: 600;
	text-decoration: none;
	transition: color .2s ease;
}
.contact-link:hover { color: var(--accent, #D4A24C); }
.contact-link .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

/* =====================================================================
   RELATED TOURS
   ===================================================================== */
.related-tours {
	background: var(--bg-soft, #F7F4ED);
	padding: 60px 0;
	border-top: 1px solid var(--border, #E6E0D0);
}
.related-tours__title {
	margin: 0 0 28px;
	font-size: 26px;
	font-weight: 800;
	color: var(--primary, #0A2540);
	text-align: center;
}
.related-tours .tour-grid {
	grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
	.related-tours .tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.related-tours .tour-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
 * Tour Spotlight Slider — "This Month's Featured Tours"
 *
 * A premium auto-rotating carousel rendered between the archive hero and
 * the tour grid. Uses CSS custom properties for the brand palette so it
 * inherits nicely into dark mode if/when overridden upstream.
 * ====================================================================== */
.tour-spotlight {
	--ts-navy: #0A2540;
	--ts-gold: #D4A24C;
	--ts-gold-dark: #B8862E;
	--ts-ease: cubic-bezier(.22, .61, .36, 1);

	position: relative;
	padding: 64px 0 56px;
	background: linear-gradient(180deg, #FBFAF7 0%, #FFFFFF 100%);
	overflow: hidden;
}
.tour-spotlight::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 360px at 12% -10%, rgba(212, 162, 76, 0.10), transparent 60%),
		radial-gradient(700px 320px at 95% 110%, rgba(10, 37, 64, 0.06), transparent 60%);
	pointer-events: none;
	z-index: 0;
}
.tour-spotlight__inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	z-index: 1;
}

/* ---- Header ---- */
.tour-spotlight__header {
	text-align: center;
	margin-bottom: 36px;
}
.tour-spotlight__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: linear-gradient(135deg, var(--ts-gold) 0%, var(--ts-gold-dark) 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(212, 162, 76, 0.30);
}
.tour-spotlight__eyebrow-icon {
	font-size: 13px;
	line-height: 1;
}
.tour-spotlight__title {
	margin: 14px 0 8px;
	color: var(--ts-navy);
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
.tour-spotlight__subtitle {
	margin: 0 auto;
	max-width: 620px;
	color: #4A5A6E;
	font-size: 16px;
	line-height: 1.55;
}

/* ---- Viewport / window / track ---- */
.tour-spotlight__viewport {
	position: relative;
}
.tour-spotlight__window {
	overflow: hidden;
	border-radius: 18px;
	margin: 0 56px;
	touch-action: pan-y;
}
.tour-spotlight__track {
	display: flex;
	transition: transform 700ms var(--ts-ease);
	will-change: transform;
}
.tour-spotlight__slide {
	flex: 0 0 calc(100% / 3);
	padding: 18px 12px;
	box-sizing: border-box;
}

/* ---- Card ---- */
.tour-spotlight__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(10, 37, 64, 0.06);
	border: 1px solid rgba(10, 37, 64, 0.06);
	transition: transform 380ms var(--ts-ease), box-shadow 380ms var(--ts-ease), border-color 380ms var(--ts-ease);
	height: 100%;
}
.tour-spotlight__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(10, 37, 64, 0.10);
	border-color: rgba(212, 162, 76, 0.55);
}
.tour-spotlight__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f3efe6;
}
.tour-spotlight__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 800ms var(--ts-ease);
}
.tour-spotlight__card:hover .tour-spotlight__img {
	transform: scale(1.06);
}
.tour-spotlight__gradient {
	position: absolute;
	inset: auto 0 0 0;
	height: 55%;
	background: linear-gradient(180deg, rgba(10, 37, 64, 0) 0%, rgba(10, 37, 64, 0.55) 100%);
	pointer-events: none;
}
.tour-spotlight__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-block;
	padding: 5px 11px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--ts-navy);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 999px;
	backdrop-filter: blur(6px);
	box-shadow: 0 4px 12px rgba(10, 37, 64, 0.12);
}

/* ---- Body ---- */
.tour-spotlight__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 20px 20px;
	gap: 10px;
}
.tour-spotlight__card-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.30;
	color: var(--ts-navy);
}
.tour-spotlight__card-title a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(var(--ts-gold), var(--ts-gold));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 2px;
	transition: background-size 320ms var(--ts-ease);
}
.tour-spotlight__card-title a:hover {
	background-size: 100% 2px;
}
.tour-spotlight__excerpt {
	margin: 0;
	color: #5A6B7F;
	font-size: 14px;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tour-spotlight__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 8px;
	gap: 12px;
}
.tour-spotlight__price {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.tour-spotlight__price-label {
	font-size: 11px;
	color: #8194A8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.tour-spotlight__price-value {
	font-size: 17px;
	font-weight: 800;
	color: var(--ts-navy);
	margin-top: 2px;
}
.tour-spotlight__price--ask {
	font-size: 13px;
	font-weight: 600;
	color: #8194A8;
}
.tour-spotlight__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--ts-gold-dark);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: color 220ms var(--ts-ease), gap 220ms var(--ts-ease);
}
.tour-spotlight__cta:hover {
	color: var(--ts-navy);
	gap: 8px;
}

/* ---- Arrows ---- */
.tour-spotlight__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	color: var(--ts-navy);
	border: 1px solid rgba(10, 37, 64, 0.08);
	box-shadow: 0 6px 18px rgba(10, 37, 64, 0.10);
	cursor: pointer;
	z-index: 3;
	transition: transform 280ms var(--ts-ease), background 280ms var(--ts-ease), color 280ms var(--ts-ease), box-shadow 280ms var(--ts-ease), border-color 280ms var(--ts-ease);
}
.tour-spotlight__arrow:hover {
	background: linear-gradient(135deg, var(--ts-gold) 0%, var(--ts-gold-dark) 100%);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 10px 24px rgba(212, 162, 76, 0.40);
	transform: translateY(-50%) scale(1.06);
}
.tour-spotlight__arrow:focus-visible {
	outline: 2px solid var(--ts-gold);
	outline-offset: 3px;
}
.tour-spotlight__arrow--prev { left: 4px; }
.tour-spotlight__arrow--next { right: 4px; }

/* ---- Dots ---- */
.tour-spotlight__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}
.tour-spotlight__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: 0;
	background: rgba(10, 37, 64, 0.18);
	cursor: pointer;
	padding: 0;
	transition: background 260ms var(--ts-ease), transform 260ms var(--ts-ease), width 260ms var(--ts-ease);
}
.tour-spotlight__dot:hover {
	background: rgba(10, 37, 64, 0.40);
}
.tour-spotlight__dot.is-active {
	background: linear-gradient(135deg, var(--ts-gold) 0%, var(--ts-gold-dark) 100%);
	width: 26px;
	box-shadow: 0 3px 10px rgba(212, 162, 76, 0.40);
}
.tour-spotlight__dot:focus-visible {
	outline: 2px solid var(--ts-gold);
	outline-offset: 3px;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
	.tour-spotlight__slide { flex-basis: calc(100% / 2); }
}
@media (max-width: 767px) {
	.tour-spotlight { padding: 48px 0 44px; }
	.tour-spotlight__inner { padding: 0 16px; }
	.tour-spotlight__window { margin: 0 8px; }
	.tour-spotlight__slide { flex-basis: 100%; padding: 14px 8px; }
	.tour-spotlight__arrow {
		width: 40px;
		height: 40px;
		top: auto;
		bottom: -56px;
		transform: none;
	}
	.tour-spotlight__arrow:hover { transform: scale(1.06); }
	.tour-spotlight__arrow--prev { left: calc(50% - 52px); }
	.tour-spotlight__arrow--next { right: calc(50% - 52px); }
	.tour-spotlight__dots { margin-top: 68px; }
}

/* ---- Dark mode (when theme-level dark mode is active) ---- */
body.is-dark .tour-spotlight,
[data-theme="dark"] .tour-spotlight {
	background: linear-gradient(180deg, #0E1A2B 0%, #0A1422 100%);
}
body.is-dark .tour-spotlight__title,
[data-theme="dark"] .tour-spotlight__title {
	color: #F4ECD9;
}
body.is-dark .tour-spotlight__subtitle,
[data-theme="dark"] .tour-spotlight__subtitle {
	color: #A7B6C9;
}
body.is-dark .tour-spotlight__card,
[data-theme="dark"] .tour-spotlight__card {
	background: #15233A;
	border-color: rgba(255, 255, 255, 0.06);
}
body.is-dark .tour-spotlight__card-title,
[data-theme="dark"] .tour-spotlight__card-title { color: #F4ECD9; }
body.is-dark .tour-spotlight__excerpt,
[data-theme="dark"] .tour-spotlight__excerpt { color: #B6C2D2; }
body.is-dark .tour-spotlight__price-value,
[data-theme="dark"] .tour-spotlight__price-value { color: #F4ECD9; }
body.is-dark .tour-spotlight__arrow,
[data-theme="dark"] .tour-spotlight__arrow {
	background: #15233A;
	color: #F4ECD9;
	border-color: rgba(255, 255, 255, 0.10);
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
	.tour-spotlight__track,
	.tour-spotlight__card,
	.tour-spotlight__img,
	.tour-spotlight__arrow,
	.tour-spotlight__dot,
	.tour-spotlight__cta {
		transition: none !important;
	}
	.tour-spotlight__card:hover { transform: none; }
	.tour-spotlight__card:hover .tour-spotlight__img { transform: none; }
}
