:root {
	--primary: #168bd2;
	--primary-dark: #0872b8;
	--accent: #14b8a6;
	--text: #172033;
	--muted: #64748b;
	--surface: #ffffff;
	--soft: #f6f8fb;
	--border: #e5eaf0;
	--footer: #082a3a;
	--shadow: 0 16px 45px rgba(15, 34, 55, .10);
	--radius: 18px;
	--container: 1320px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	width: 100%;
	max-width: 100%;
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	width: 100%;
	max-width: 100%;
	margin: 0;
	overflow-x: clip;
	background: var(--surface);
	color: var(--text);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	line-height: 1.7;
}

body.voyago-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input {
	font: inherit;
}

.container {
	width: min(92%, var(--container));
	max-width: 100%;
	margin-inline: auto;
}

.site-main,
#primary,
.site-header,
.site-footer,
.voyago-hero,
.voyago-section,
.voyago-newsletter {
	width: 100%;
	max-width: 100%;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, .97);
	border-bottom: 1px solid rgba(229, 234, 240, .9);
	backdrop-filter: blur(14px);
}

.admin-bar .site-header {
	top: 32px;
}

.header-wrapper {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	min-height: 76px;
	gap: 34px;
}

.site-logo {
	min-width: 0;
}

.site-logo a {
	display: inline-flex;
	align-items: center;
	font-size: 25px;
	font-weight: 850;
}

.site-logo .custom-logo {
	width: auto;
	max-width: 205px;
	max-height: 58px;
}

.main-navigation {
	justify-self: center;
	min-width: 0;
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 31px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-menu li {
	position: relative;
}

.main-menu a {
	display: block;
	padding: 26px 0;
	font-size: 14px;
	font-weight: 720;
	white-space: nowrap;
}

.main-menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 17px;
	left: 0;
	width: 0;
	height: 2px;
	margin: auto;
	background: var(--primary);
	transition: width .25s ease;
}

.main-menu a:hover,
.main-menu .current-menu-item > a {
	color: var(--primary);
}

.main-menu a:hover::after,
.main-menu .current-menu-item > a::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 9px;
}

.voyago-header-search,
.voyago-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
	color: var(--text);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.voyago-header-search:hover,
.voyago-menu-toggle:hover {
	background: var(--soft);
	color: var(--primary);
}

.voyago-header-search svg {
	width: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.voyago-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
}

.voyago-menu-toggle > span:not(.screen-reader-text) {
	width: 23px;
	height: 2px;
	background: currentColor;
	border-radius: 4px;
	transition: .25s;
}

.voyago-menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
	transform: translateY(7px) rotate(45deg);
}

.voyago-menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
	opacity: 0;
}

.voyago-menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.voyago-header-search-panel[hidden] {
	display: none !important;
}

.voyago-header-search-panel {
	padding: 0 0 16px;
}

.voyago-header-search-panel .voyago-search-form {
	max-width: 680px;
	margin-left: auto;
}

.voyago-search-form {
	display: flex;
	padding: 7px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 9px 25px rgba(10, 35, 55, .07);
}

.voyago-search-form input {
	flex: 1;
	min-width: 0;
	padding: 12px 15px;
	border: 0;
	outline: 0;
}

.voyago-search-form button {
	width: 48px;
	border: 0;
	border-radius: 10px;
	color: #fff;
	background: var(--primary);
	cursor: pointer;
}

/* Hero */
.voyago-hero {
	--voyago-hero-image: linear-gradient(135deg, #0c4f70, #138c9b);
	position: relative;
	display: grid;
	align-items: center;
	min-height: 470px;
	padding: 68px 0;
	overflow: hidden;
	color: #fff;
	background-image:
		linear-gradient(rgba(3, 28, 44, .38), rgba(3, 28, 44, .48)),
		var(--voyago-hero-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.voyago-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(3, 22, 34, .12));
	pointer-events: none;
}

.voyago-hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 790px;
	margin: auto;
	text-align: center;
}

.voyago-hero-label {
	display: none;
}

.voyago-hero-title {
	max-width: 820px;
	margin: 0 auto 15px;
	font-size: clamp(44px, 5.4vw, 66px);
	line-height: 1.05;
	letter-spacing: -.045em;
}

.voyago-hero-description {
	max-width: 690px;
	margin: 0 auto 27px;
	color: rgba(255, 255, 255, .9);
	font-size: 18px;
}

.voyago-hero-search {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	width: 100%;
	max-width: 810px;
	margin: auto;
	padding: 8px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 21px 55px rgba(0, 0, 0, .24);
}

.voyago-search-icon {
	padding-left: 14px;
	color: #94a3b8;
}

.voyago-hero-search input {
	width: 100%;
	min-width: 0;
	height: 52px;
	padding: 0 13px;
	border: 0;
	outline: 0;
	color: var(--text);
}

.voyago-hero-search button {
	height: 48px;
	padding: 0 29px;
	border: 0;
	border-radius: 10px;
	background: var(--primary);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

/* Sections */
.voyago-section {
	padding: 78px 0;
	overflow: hidden;
}

.voyago-section-soft {
	background: var(--soft);
}

.voyago-home-cities {
	padding-top: 48px;
}

.voyago-section-header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
	margin-bottom: 22px;
	min-width: 0;
}

.voyago-section-label {
	display: block;
	margin-bottom: 5px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.voyago-section-title {
	margin: 0;
	font-size: 34px;
	line-height: 1.18;
	letter-spacing: -.028em;
}

.voyago-centered-heading {
	margin-bottom: 32px;
	text-align: center;
}

.voyago-text-link {
	flex-shrink: 0;
	color: var(--primary);
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

/* Country and city cards */
.voyago-card-slider {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.voyago-card-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 75px) / 6);
	gap: 15px;
	width: 100%;
	max-width: 100%;
	padding: 4px 2px 15px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: inline mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	cursor: grab;
	overscroll-behavior-inline: contain;
}

.voyago-card-track::-webkit-scrollbar {
	display: none;
}

.voyago-card-track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
}

.voyago-card {
	min-width: 0;
	overflow: hidden;
	scroll-snap-align: start;
	border-radius: 14px;
	box-shadow: 0 8px 25px rgba(13, 37, 57, .09);
	transition: .3s;
}

.voyago-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.voyago-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: linear-gradient(145deg, #b8d8e6, #3d8fae);
}

.voyago-card-image img,
.voyago-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.voyago-card-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(3, 18, 29, .9), rgba(3, 18, 29, .08) 65%);
}

.voyago-card-content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 16px;
	color: #fff;
}

.voyago-card-content h3 {
	margin: 0 0 2px;
	font-size: 18px;
	line-height: 1.25;
}

.voyago-card-content p {
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 12px;
}

.voyago-slider-controls {
	display: flex;
	gap: 8px;
}

.voyago-slider-button {
	width: 42px;
	height: 42px;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: #fff;
	color: var(--text);
	cursor: pointer;
	transition: .25s;
}

.voyago-slider-button:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.voyago-show-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.voyago-show-more {
	padding: 11px 23px;
	border: 1px solid var(--primary);
	border-radius: 999px;
	background: #fff;
	color: var(--primary);
	font-weight: 800;
	cursor: pointer;
}

.voyago-show-more:hover {
	background: var(--primary);
	color: #fff;
}

/* Articles */
.voyago-article-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.voyago-article-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 15px;
	box-shadow: 0 7px 22px rgba(15, 34, 55, .06);
	transition: .3s;
}

.voyago-article-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.voyago-article-card-image {
	position: relative;
	height: 185px;
	overflow: hidden;
	background: #dbe8ef;
}

.voyago-article-card-image img,
.voyago-article-card-image .voyago-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.voyago-type-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.voyago-article-card-body {
	padding: 17px;
}

.voyago-article-card-body h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.35;
}

.voyago-article-card-body p {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 13px;
}

.voyago-card-footer {
	display: flex;
	justify-content: space-between;
	color: #94a3b8;
	font-size: 11px;
}

/* Categories */
.voyago-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.voyago-category-card {
	padding: 22px 14px;
	text-align: center;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: #fff;
	transition: .25s;
}

.voyago-category-card:hover {
	transform: translateY(-4px);
	border-color: rgba(22, 139, 210, .35);
	box-shadow: 0 13px 30px rgba(15, 34, 55, .08);
}

.voyago-category-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin: 0 auto 11px;
	color: var(--primary);
	background: #edf7fd;
	border-radius: 12px;
	font-size: 22px;
}

.voyago-category-card strong {
	display: block;
	font-size: 15px;
}

.voyago-category-card small {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.45;
}

/* Popular destinations */
.voyago-popular-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 17px;
}

.voyago-popular-card {
	position: relative;
	height: 165px;
	overflow: hidden;
	border-radius: 14px;
	color: #fff;
}

.voyago-popular-card img,
.voyago-popular-card .voyago-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #4a879e;
}

.voyago-popular-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(3, 17, 26, .85), rgba(3, 17, 26, .05));
}

.voyago-popular-card > div {
	position: absolute;
	right: 17px;
	bottom: 14px;
	left: 17px;
	z-index: 2;
}

.voyago-popular-card strong {
	display: block;
	font-size: 17px;
}

.voyago-popular-card small {
	color: rgba(255, 255, 255, .78);
}

.voyago-popular-rank {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--text);
	font-weight: 850;
}

/* Newsletter */
.voyago-newsletter {
	padding: 35px 0;
	background: linear-gradient(110deg, #e9f6ff, #f3fbfd);
}

.voyago-newsletter-inner {
	display: grid;
	grid-template-columns: 1fr minmax(0, .8fr);
	gap: 40px;
	align-items: center;
}

.voyago-newsletter h2 {
	margin: 0 0 4px;
	font-size: 28px;
}

.voyago-newsletter p {
	margin: 0;
	color: var(--muted);
}

.voyago-newsletter form {
	display: flex;
	min-width: 0;
	padding: 6px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
}

.voyago-newsletter input {
	flex: 1;
	min-width: 0;
	padding: 12px;
	border: 0;
	outline: 0;
}

.voyago-newsletter button {
	padding: 0 23px;
	border: 0;
	border-radius: 9px;
	background: var(--primary);
	color: #fff;
	font-weight: 800;
}

/* Destination pages */
.voyago-destination-hero {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	background: #164b63;
}

.voyago-destination-hero > img,
.voyago-destination-hero > .voyago-card-placeholder {
	display: block;
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.voyago-destination-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: end;
	padding: 70px 0;
	color: #fff;
	background: linear-gradient(to top, rgba(3, 21, 33, .82), rgba(3, 21, 33, .12));
}

.voyago-destination-overlay span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.voyago-destination-overlay h1 {
	margin: 3px 0 8px;
	font-size: clamp(44px, 7vw, 76px);
	line-height: 1;
}

.voyago-destination-overlay p {
	max-width: 700px;
	margin: 0;
	color: rgba(255, 255, 255, .84);
}

.voyago-content-narrow {
	max-width: 850px;
}

.voyago-destination-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.voyago-destination-card {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(13, 37, 57, .07);
}

.voyago-destination-card img,
.voyago-destination-card .voyago-card-placeholder {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
	background: #c9e0eb;
}

.voyago-destination-card > div {
	padding: 18px;
}

.voyago-destination-card h3 {
	margin: 0 0 5px;
	font-size: 22px;
}

.voyago-destination-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.voyago-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.voyago-mini-card {
	display: grid;
	grid-template-columns: 115px minmax(0, 1fr);
	min-height: 115px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: #fff;
}

.voyago-mini-card img,
.voyago-mini-card .voyago-card-placeholder {
	display: block;
	width: 115px;
	height: 100%;
	object-fit: cover;
	background: #c9e0eb;
}

.voyago-mini-card > div {
	min-width: 0;
	padding: 14px;
}

.voyago-mini-card h3 {
	margin: 0 0 4px;
	font-size: 16px;
}

.voyago-mini-card p {
	margin: 0;
	color: var(--muted);
	font-size: 11px;
}

.voyago-elementor-content {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.site-main > .container {
	padding-top: 65px;
	padding-bottom: 65px;
}

/* Footer */
.site-footer {
	padding: 62px 0 22px;
	background: var(--footer);
	color: rgba(255, 255, 255, .72);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
	gap: 45px;
}

.footer-brand h2,
.site-footer h3 {
	color: #fff;
}

.footer-brand h2 {
	margin: 0 0 8px;
	font-size: 25px;
}

.footer-brand p {
	max-width: 390px;
	margin: 0;
}

.site-footer h3 {
	margin: 0 0 12px;
	font-size: 14px;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li {
	margin: 7px 0;
}

.site-footer a:hover {
	color: #fff;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
	margin: 0;
	font-size: 12px;
}

/* Tablet */
@media (max-width: 1024px) {
	.main-menu {
		gap: 18px;
	}

	.voyago-card-track {
		grid-auto-columns: calc((100% - 36px) / 4);
		gap: 12px;
	}

	.voyago-article-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.voyago-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.voyago-popular-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
	}
}

/* Mobile navigation */
@media (max-width: 900px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.header-wrapper {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 68px;
		gap: 12px;
	}

	.main-navigation {
		position: fixed;
		top: 68px;
		right: 0;
		bottom: 0;
		z-index: 1100;
		width: min(86vw, 360px);
		max-width: 86vw;
		padding: 18px;
		overflow-y: auto;
		background: #fff;
		box-shadow: -20px 0 50px rgba(0, 0, 0, .16);
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
		pointer-events: none;
		transition: transform .28s ease, visibility .28s ease;
		contain: layout paint;
	}

	.admin-bar .main-navigation {
		top: 114px;
	}

	.main-navigation.is-open {
		transform: translate3d(0, 0, 0);
		visibility: visible;
		pointer-events: auto;
	}

	.main-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.main-menu li {
		border-bottom: 1px solid var(--border);
	}

	.main-menu a {
		padding: 15px 5px;
		font-size: 15px;
	}

	.main-menu a::after {
		display: none;
	}

	.header-actions {
		grid-column: 2;
		grid-row: 1;
	}

	.voyago-menu-toggle {
		display: inline-flex;
	}

	.voyago-header-search-panel {
		padding-bottom: 12px;
	}
}

/* Phones */
@media (max-width: 767px) {
	.container {
		width: 92%;
		max-width: 92%;
	}

	.site-logo .custom-logo {
		max-width: 150px;
		max-height: 46px;
	}

	.site-title {
		font-size: 22px;
	}

	.voyago-hero {
		min-height: 385px;
		padding: 44px 0;
	}

	.voyago-hero-title {
		font-size: 36px;
		line-height: 1.08;
	}

	.voyago-hero-description {
		margin-bottom: 20px;
		font-size: 14px;
	}

	.voyago-hero-search {
		grid-template-columns: minmax(0, 1fr) auto;
		width: 94%;
		max-width: 94%;
		padding: 5px;
	}

	.voyago-search-icon {
		display: none;
	}

	.voyago-hero-search input {
		width: 100%;
		max-width: none;
		height: 44px;
		padding: 0 11px;
		font-size: 12px;
	}

	.voyago-hero-search button {
		height: 42px;
		padding: 0 15px;
		font-size: 12px;
	}

	.voyago-section {
		padding: 58px 0;
	}

	.voyago-home-cities {
		padding-top: 42px;
	}

	.voyago-section-title {
		font-size: 27px;
	}

	.voyago-section-header {
		align-items: center;
		gap: 12px;
	}

	.voyago-text-link {
		font-size: 12px;
	}

	.voyago-slider-controls {
		display: none;
	}

	.voyago-card-track {
		grid-auto-columns: calc((100% - 24px) / 4);
		gap: 8px;
	}

	.voyago-card {
		border-radius: 10px;
	}

	.voyago-card-image {
		aspect-ratio: 3 / 4.5;
	}

	.voyago-card-content {
		padding: 8px 6px;
	}

	.voyago-card-content h3 {
		font-size: 10px;
	}

	.voyago-card-content p {
		display: none;
	}

	.voyago-article-grid {
		grid-template-columns: 1fr;
	}

	.voyago-article-card-image {
		height: 210px;
	}

	.voyago-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.voyago-popular-grid {
		grid-template-columns: 1fr;
	}

	.voyago-newsletter-inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.voyago-newsletter form {
		min-width: 0;
	}

	.voyago-destination-grid,
	.voyago-mini-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	.voyago-hero-title {
		font-size: 34px;
	}

	.voyago-category-card {
		padding: 18px 10px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

/* Voyago Travel Pro 3.0 precision refinements */
[hidden]{display:none!important}
.site-title{display:inline-flex;align-items:center;gap:10px}.voyago-logo-mark{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:linear-gradient(145deg,#27bdd8,#168bd2);color:#fff;font-size:21px}.voyago-logo-copy{display:flex;flex-direction:column;line-height:1}.voyago-logo-copy strong{font-size:24px}.voyago-logo-copy small{margin-top:5px;color:var(--muted);font-size:10px;font-weight:500}
.voyago-nav-overlay{position:fixed;inset:0;z-index:998;background:rgba(4,22,34,.44);backdrop-filter:blur(2px)}
.voyago-hero{min-height:470px;padding:68px 0;background-image:linear-gradient(rgba(3,28,44,.34),rgba(3,28,44,.46)),var(--voyago-hero-image)}
.voyago-hero-title{max-width:830px;margin-inline:auto;font-size:clamp(44px,5.4vw,66px)}
.voyago-hero-description{max-width:700px}.voyago-hero-label{display:none}

@media(max-width:900px){
	.header-wrapper{grid-template-columns:minmax(0,1fr) auto;gap:10px}
	.main-navigation{display:none!important;position:fixed!important;top:68px!important;right:0!important;bottom:0!important;left:auto!important;z-index:1001!important;width:min(86vw,360px)!important;max-width:86vw!important;height:auto!important;margin:0!important;padding:20px!important;overflow-x:hidden!important;overflow-y:auto!important;background:#fff!important;box-shadow:-18px 0 45px rgba(0,0,0,.18)!important;transform:none!important;visibility:visible!important;pointer-events:auto!important;justify-self:auto!important}
	.main-navigation.is-open{display:block!important}
	.admin-bar .main-navigation{top:114px!important}
	.main-navigation .main-menu{display:flex!important;flex-direction:column!important;align-items:stretch!important;width:100%!important;margin:0!important;padding:0!important;gap:0!important}
	.main-navigation .main-menu li{display:block!important;width:100%!important;margin:0!important;padding:0!important;border-bottom:1px solid var(--border)!important}
	.main-navigation .main-menu a{display:block!important;width:100%!important;padding:15px 8px!important;font-size:15px!important;text-align:left!important;white-space:normal!important}
	.main-navigation .main-menu a::after{display:none!important}
}

@media(max-width:767px){
	.site-title{gap:8px}.voyago-logo-mark{width:40px;height:40px;font-size:18px}.voyago-logo-copy strong{font-size:22px}.voyago-logo-copy small{font-size:9px}
	.voyago-hero{min-height:385px;padding:44px 0;background-position:center center}
	.voyago-hero-title{font-size:36px;line-height:1.08}
	.voyago-hero-description{margin-bottom:20px;font-size:14px}
	.voyago-hero-search{grid-template-columns:minmax(0,1fr) auto;width:94%;max-width:94%;padding:5px}
	.voyago-search-icon{display:none}.voyago-hero-search input{width:100%;max-width:none;height:44px;font-size:12px}.voyago-hero-search button{height:42px;padding:0 15px;font-size:12px}
}
