/* =========================================================================
   Viator Collector — front-end design system
   Namespaced under .vc-* so it stays isolated from the active theme.
   ========================================================================= */

:root {
	--vc-primary: #2f6fed;
	--vc-primary-dark: #2052c0;
	--vc-accent: #ff9e1b;
	--vc-accent-dark: #f08600;
	--vc-ink: #14223f;
	--vc-text: #3a4660;
	--vc-muted: #76829c;
	--vc-bg: #ffffff;
	--vc-bg-soft: #f4f6fb;
	--vc-line: #e6eaf2;
	--vc-star: #ff9e1b;
	--vc-radius: 16px;
	--vc-radius-sm: 10px;
	--vc-shadow: 0 10px 30px rgba(20, 34, 68, 0.08);
	--vc-shadow-hover: 0 20px 46px rgba(20, 34, 68, 0.18);
	--vc-container: 1200px;
	--vc-ease: cubic-bezier(0.22, 0.7, 0.24, 1);
}

[class^="vc-"],
[class*=" vc-"] {
	box-sizing: border-box;
}

/* ---- Layout primitives -------------------------------------------------- */
.vc-container {
	width: 100%;
	max-width: var(--vc-container);
	margin: 0 auto;
	padding: 0 20px;
}

.vc-section {
	padding: 64px 0;
}
.vc-section--destinations,
.vc-section--activities {
	background: var(--vc-bg-soft);
}

.vc-section__head {
	text-align: center;
	margin-bottom: 38px;
}

.vc-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vc-primary);
	margin-bottom: 8px;
}

.vc-section__title {
	font-size: clamp(24px, 3.2vw, 34px);
	line-height: 1.15;
	font-weight: 800;
	color: var(--vc-ink);
	margin: 0;
}
.vc-section__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 4px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, var(--vc-primary), var(--vc-accent));
}

.vc-view-all {
	display: inline-block;
	margin-top: 12px;
	font-weight: 600;
	font-size: 14px;
	color: var(--vc-primary);
	text-decoration: none;
}
.vc-view-all span {
	display: inline-block;
	transition: transform 0.25s var(--vc-ease);
}
.vc-view-all:hover span {
	transform: translateX(4px);
}

/* ---- Buttons ------------------------------------------------------------ */
.vc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform 0.2s var(--vc-ease), box-shadow 0.2s var(--vc-ease),
		background-color 0.2s var(--vc-ease), color 0.2s var(--vc-ease);
}
.vc-btn--primary {
	background: var(--vc-primary);
	color: #fff;
	box-shadow: 0 8px 18px rgba(47, 111, 237, 0.32);
}
.vc-btn--primary:hover {
	background: var(--vc-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(47, 111, 237, 0.42);
	color: #fff;
}
.vc-btn--ghost {
	background: transparent;
	color: var(--vc-primary);
	border-color: var(--vc-line);
	padding: 9px 16px;
}
.vc-btn--ghost:hover {
	border-color: var(--vc-primary);
	background: rgba(47, 111, 237, 0.06);
	color: var(--vc-primary-dark);
}
.vc-btn--block {
	width: 100%;
}

/* ---- Chips & stars ------------------------------------------------------ */
.vc-chip {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	color: var(--vc-muted);
	background: var(--vc-bg-soft);
	border-radius: 999px;
	padding: 4px 10px;
}
.vc-chip--place {
	color: var(--vc-primary);
	background: rgba(47, 111, 237, 0.09);
}

.vc-stars {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	font-family: Arial, sans-serif;
	color: #d9dee9;
	letter-spacing: 1px;
}
.vc-stars::before {
	content: "\2605\2605\2605\2605\2605";
}
.vc-stars-fill {
	position: absolute;
	inset: 0;
	overflow: hidden;
	white-space: nowrap;
	color: var(--vc-star);
}
.vc-stars-fill::before {
	content: "\2605\2605\2605\2605\2605";
}

/* ---- Tour grid + card --------------------------------------------------- */
.vc-tour-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.vc-card {
	display: flex;
	flex-direction: column;
	background: var(--vc-bg);
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-radius);
	overflow: hidden;
	box-shadow: var(--vc-shadow);
	transition: transform 0.32s var(--vc-ease), box-shadow 0.32s var(--vc-ease);
}
.vc-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--vc-shadow-hover);
}
.vc-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--vc-bg-soft);
}
.vc-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--vc-ease);
}
.vc-card:hover .vc-card__img {
	transform: scale(1.08);
}
.vc-card__price {
	position: absolute;
	left: 12px;
	bottom: 12px;
	background: rgba(20, 34, 63, 0.86);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 6px 12px;
	border-radius: 999px;
	backdrop-filter: blur(3px);
}
.vc-card__price span {
	font-weight: 500;
	opacity: 0.8;
	font-size: 12px;
}
.vc-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px 16px 18px;
	flex: 1;
}
.vc-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.vc-card__title {
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--vc-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.vc-card__title a {
	color: inherit;
	text-decoration: none;
}
.vc-card__title a:hover {
	color: var(--vc-primary);
}
.vc-card__rating {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: var(--vc-muted);
}
.vc-card__rating strong {
	color: var(--vc-ink);
}
.vc-card__foot {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--vc-line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.vc-card__foot-price {
	font-weight: 800;
	color: var(--vc-ink);
	font-size: 16px;
}

/* ---- Destination grid + card ------------------------------------------- */
.vc-destination-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.vc-dest-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: var(--vc-radius);
	overflow: hidden;
	text-decoration: none;
	box-shadow: var(--vc-shadow);
	transition: transform 0.32s var(--vc-ease), box-shadow 0.32s var(--vc-ease);
}
.vc-dest-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--vc-shadow-hover);
}
.vc-dest-card__media,
.vc-dest-card__img,
.vc-dest-card__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.vc-dest-card__img {
	object-fit: cover;
	transition: transform 0.6s var(--vc-ease);
}
.vc-dest-card__placeholder {
	background: linear-gradient(135deg, #cdd7ec, #aebbd6);
}
.vc-dest-card:hover .vc-dest-card__img {
	transform: scale(1.09);
}
.vc-dest-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 23, 45, 0) 38%, rgba(13, 23, 45, 0.78) 100%);
}
.vc-dest-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 16px;
	color: #fff;
}
.vc-dest-card__name {
	display: block;
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.vc-dest-card__count {
	display: block;
	font-size: 13px;
	opacity: 0.9;
	margin-top: 2px;
}

/* ---- Attractions (large feature cards) --------------------------------- */
.vc-attraction-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.vc-attraction {
	position: relative;
	display: block;
	aspect-ratio: 3 / 3.4;
	max-height: 420px;
	border-radius: var(--vc-radius);
	overflow: hidden;
	text-decoration: none;
	box-shadow: var(--vc-shadow);
	transition: transform 0.32s var(--vc-ease), box-shadow 0.32s var(--vc-ease);
}
.vc-attraction:hover {
	transform: translateY(-5px);
	box-shadow: var(--vc-shadow-hover);
}
.vc-attraction__media,
.vc-attraction__img,
.vc-attraction__scrim {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.vc-attraction__img {
	object-fit: cover;
	transition: transform 0.6s var(--vc-ease);
}
.vc-attraction:hover .vc-attraction__img {
	transform: scale(1.07);
}
.vc-attraction__scrim {
	background: linear-gradient(180deg, rgba(13, 23, 45, 0) 40%, rgba(13, 23, 45, 0.82) 100%);
}
.vc-attraction__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	background: var(--vc-accent);
	color: #1a1300;
	font-weight: 800;
	font-size: 14px;
	padding: 7px 13px;
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(255, 158, 27, 0.45);
}
.vc-attraction__badge span {
	font-weight: 600;
	opacity: 0.75;
	font-size: 12px;
}
.vc-attraction__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 20px;
	color: #fff;
}
.vc-attraction__place {
	display: block;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.85;
	margin-bottom: 4px;
}
.vc-attraction__title {
	display: block;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.vc-attraction__rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	font-size: 13px;
}

/* ---- Browse by activity ------------------------------------------------- */
.vc-activity-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.vc-activity {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 14px;
	background: var(--vc-bg);
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-radius-sm);
	text-decoration: none;
	transition: transform 0.22s var(--vc-ease), box-shadow 0.22s var(--vc-ease),
		border-color 0.22s var(--vc-ease);
}
.vc-activity:hover {
	transform: translateX(4px);
	border-color: rgba(47, 111, 237, 0.4);
	box-shadow: var(--vc-shadow);
}
.vc-activity__thumb {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--vc-bg-soft);
}
.vc-activity__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.vc-activity__thumb-ph {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d3ddf1, #b9c6e1);
}
.vc-activity__name {
	flex: 1;
	font-weight: 600;
	color: var(--vc-ink);
	font-size: 15px;
}
.vc-activity__count {
	font-size: 13px;
	font-weight: 700;
	color: var(--vc-primary);
	background: rgba(47, 111, 237, 0.1);
	border-radius: 999px;
	padding: 4px 11px;
}
.vc-activity__arrow {
	color: var(--vc-muted);
	font-size: 22px;
	line-height: 1;
}

/* ---- Single tour -------------------------------------------------------- */
.vc-single {
	color: var(--vc-text);
}
.vc-hero {
	position: relative;
	background: var(--vc-ink);
	color: #fff;
	padding: 56px 0;
	overflow: hidden;
}
.vc-hero.has-image {
	padding: 96px 0 40px;
}
.vc-hero__media,
.vc-hero__img,
.vc-hero__scrim {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.vc-hero__img {
	object-fit: cover;
}
.vc-hero__scrim {
	background: linear-gradient(180deg, rgba(10, 18, 38, 0.5) 0%, rgba(10, 18, 38, 0.86) 100%);
}
.vc-hero__inner {
	position: relative;
	z-index: 1;
}
.vc-hero__place {
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.85;
	margin: 0 0 10px;
}
.vc-hero__title {
	font-size: clamp(26px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.12;
	margin: 0;
	max-width: 880px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.vc-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 16px;
}
.vc-hero__rating {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.vc-hero__chip {
	background: rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 14px;
	font-weight: 600;
}

.vc-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
	padding-top: 44px;
	padding-bottom: 64px;
	align-items: start;
}
.vc-single__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.vc-prose {
	color: var(--vc-text);
	line-height: 1.75;
	font-size: 16px;
}
.vc-prose h2,
.vc-block h2 {
	color: var(--vc-ink);
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 14px;
}
.vc-block {
	border-top: 1px solid var(--vc-line);
	padding-top: 26px;
}
.vc-list {
	margin: 0;
	padding-left: 18px;
	line-height: 1.7;
}
.vc-list li {
	margin-bottom: 6px;
}

.vc-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.vc-gallery-image {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--vc-radius-sm);
	display: block;
	transition: transform 0.4s var(--vc-ease), filter 0.3s var(--vc-ease);
}
.vc-gallery-image:hover {
	transform: scale(1.02);
	filter: brightness(1.05);
}

.vc-single__aside {
	position: sticky;
	top: 24px;
}
.vc-booking-card {
	background: var(--vc-bg);
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-radius);
	box-shadow: var(--vc-shadow);
	padding: 22px;
}
.vc-booking-card__price {
	display: flex;
	flex-direction: column;
	margin: 0 0 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--vc-line);
}
.vc-booking-card__price span {
	font-size: 13px;
	color: var(--vc-muted);
}
.vc-booking-card__price strong {
	font-size: 30px;
	font-weight: 800;
	color: var(--vc-ink);
	line-height: 1.1;
}
.vc-booking-card__price small {
	font-size: 13px;
	color: var(--vc-muted);
}
.vc-booking-card__facts {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vc-booking-card__facts li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
}
.vc-booking-card__facts span {
	color: var(--vc-muted);
}
.vc-booking-card__facts strong {
	color: var(--vc-ink);
	text-align: right;
}
.vc-booking-card__note {
	margin: 12px 0 0;
	font-size: 12px;
	color: var(--vc-muted);
	text-align: center;
}

/* ---- Itinerary timeline ------------------------------------------------- */
.vc-itin {
	list-style: none;
	margin: 0;
	padding: 0;
}
.vc-itin__step {
	position: relative;
	display: flex;
	gap: 16px;
	padding-bottom: 24px;
}
.vc-itin__step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 34px;
	bottom: 0;
	width: 2px;
	background: var(--vc-line);
}
.vc-itin__marker {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: var(--vc-primary);
	box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.14);
	z-index: 1;
}
.vc-itin__content {
	padding-top: 3px;
}
.vc-itin__desc {
	margin: 0;
	color: var(--vc-text);
	line-height: 1.7;
}
.vc-itin__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}
.vc-tag {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	border-radius: 999px;
	padding: 4px 11px;
	background: var(--vc-bg-soft);
	color: var(--vc-muted);
}
.vc-tag--ok {
	background: rgba(34, 160, 96, 0.12);
	color: #1c7a48;
}
.vc-tag--muted {
	background: var(--vc-bg-soft);
	color: var(--vc-muted);
}

/* ---- Feature lists (inclusions / exclusions) --------------------------- */
.vc-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 26px;
}
.vc-feature {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	line-height: 1.55;
	color: var(--vc-text);
}
.vc-feature__icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	margin-top: 1px;
}
.vc-feature--inc .vc-feature__icon {
	background: rgba(34, 160, 96, 0.14);
	color: #1c7a48;
}
.vc-feature--inc .vc-feature__icon::before {
	content: "\2713";
}
.vc-feature--exc .vc-feature__icon {
	background: rgba(214, 64, 64, 0.12);
	color: #c0392b;
}
.vc-feature--exc .vc-feature__icon::before {
	content: "\2715";
}

/* ---- Cancellation policy ------------------------------------------------ */
.vc-policy__lead {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0 0 16px;
	color: var(--vc-text);
	line-height: 1.65;
}
.vc-policy__icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(47, 111, 237, 0.12);
	color: var(--vc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}
.vc-policy__icon::before {
	content: "\21BB";
	font-size: 14px;
	font-weight: 700;
}
.vc-policy__tiers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.vc-policy__tiers li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 11px 14px;
	background: var(--vc-bg-soft);
	border-radius: var(--vc-radius-sm);
}
.vc-policy__pct {
	flex: 0 0 auto;
	min-width: 96px;
	font-weight: 700;
	font-size: 13px;
	border-radius: 999px;
	padding: 4px 12px;
	text-align: center;
}
.vc-policy__pct--full {
	background: rgba(34, 160, 96, 0.14);
	color: #1c7a48;
}
.vc-policy__pct--partial {
	background: rgba(255, 158, 27, 0.18);
	color: #a35c00;
}
.vc-policy__pct--none {
	background: rgba(214, 64, 64, 0.12);
	color: #c0392b;
}
.vc-policy__when {
	color: var(--vc-text);
	font-size: 14px;
}

/* ---- Good to know (additional info) ------------------------------------ */
.vc-infogrid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 24px;
}
.vc-infogrid__item {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	line-height: 1.55;
	color: var(--vc-text);
}
.vc-infogrid__icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--vc-bg-soft);
	color: var(--vc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}
.vc-infogrid__icon::before {
	content: "\2139";
	font-size: 13px;
	font-weight: 700;
}

/* ---- Archive ------------------------------------------------------------ */
.vc-archive__head {
	background: var(--vc-bg-soft);
	padding: 50px 0;
	text-align: center;
	margin-bottom: 44px;
}
.vc-archive__title {
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 800;
	color: var(--vc-ink);
	margin: 6px 0 0;
}
.vc-archive__desc {
	max-width: 720px;
	margin: 12px auto 0;
	color: var(--vc-muted);
}
.vc-archive .vc-tour-grid {
	margin-bottom: 40px;
}
.vc-empty {
	text-align: center;
	color: var(--vc-muted);
	padding: 40px 0;
}
.vc-pagination .page-numbers {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	margin: 0 3px;
	border-radius: 10px;
	border: 1px solid var(--vc-line);
	color: var(--vc-text);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s var(--vc-ease);
}
.vc-pagination .page-numbers.current,
.vc-pagination .page-numbers:hover {
	background: var(--vc-primary);
	border-color: var(--vc-primary);
	color: #fff;
}
.vc-pagination .nav-links {
	text-align: center;
}

/* ---- Scroll reveal ------------------------------------------------------ */
.vc-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s var(--vc-ease), transform 0.7s var(--vc-ease);
	transition-delay: var(--vc-delay, 0ms);
	will-change: opacity, transform;
}
.vc-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
	.vc-tour-grid,
	.vc-destination-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.vc-single__layout {
		grid-template-columns: 1fr;
	}
	.vc-single__aside {
		position: static;
		order: -1;
	}
}

@media (max-width: 768px) {
	.vc-section {
		padding: 48px 0;
	}
	.vc-tour-grid,
	.vc-destination-grid,
	.vc-attraction-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.vc-activity-list,
	.vc-features,
	.vc-infogrid {
		grid-template-columns: 1fr;
	}
	.vc-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.vc-policy__tiers li {
		flex-wrap: wrap;
		gap: 8px;
	}
}

@media (max-width: 520px) {
	.vc-tour-grid,
	.vc-destination-grid,
	.vc-attraction-grid {
		grid-template-columns: 1fr;
	}
	.vc-attraction {
		aspect-ratio: 16 / 11;
	}
	.vc-card__media {
		aspect-ratio: 16 / 10;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-reveal,
	.vc-card,
	.vc-card__img,
	.vc-dest-card,
	.vc-dest-card__img,
	.vc-attraction,
	.vc-attraction__img,
	.vc-activity,
	.vc-btn,
	.vc-gallery-image {
		transition: none !important;
		transform: none !important;
	}
	.vc-reveal {
		opacity: 1;
	}
}
