/* Header - Figma node 1:19 */
.te-site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	color: #101010;
}

.te-site-header__inner {
	box-sizing: border-box;
	max-width: 1200px;
	width: calc(100% - 48px);
	height: 106px;
	margin: 0 auto;
	padding: 0 30px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 16px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 0 0 20px 20px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.te-site-header__shell {
	position: relative;
	z-index: 1;
}

.te-site-header__brand {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.te-site-logo {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 145px;
	height: 69px;
}

.te-site-logo--text {
	color: #000;
	text-decoration: none;
}

.te-site-logo__label {
	display: block;
	width: 100%;
	font-family: var(--font-family), system-ui, sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 70px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.te-site-logo--image .custom-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 145px;
	height: 69px;
}

.te-site-logo--image .custom-logo,
.te-site-logo--image img {
	display: block;
	max-width: 145px;
	max-height: 69px;
	width: auto;
	height: auto;
}

.te-site-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	margin: 0;
	padding: 0;
	align-self: center;
}

.te-site-header__menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 1px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.te-site-header__menu > li {
	position: relative;
	display: flex;
	align-items: center;
	list-style: none;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.te-site-header__menu > li > a {
	box-sizing: border-box;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center;
	min-height: 38px;
	padding: 0 10px !important;
	color: #101010;
	text-decoration: none;
	font-family: var(--font-family), system-ui, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1 !important;
	transition: opacity 0.2s;
	white-space: nowrap;
	vertical-align: middle;
}

.te-site-header__menu > li > a:hover,
.te-site-header__menu > li.current-menu-item > a,
.te-site-header__menu > li.current-menu-ancestor > a,
.te-site-header__menu > li.current_page_item > a {
	opacity: 0.7;
}

.te-site-header__menu .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 200px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	z-index: 300;
}

@media (min-width: 769px) {
	.te-site-header__menu > li.menu-item-has-children:not(.te-menu-item--directions)::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		height: 14px;
		z-index: 299;
	}
}

.te-site-header__menu li:hover > .sub-menu,
.te-site-header__menu li:focus-within > .sub-menu {
	display: block;
}

.te-site-header__menu .sub-menu li {
	list-style: none;
	margin: 0;
}

.te-site-header__menu .sub-menu a {
	display: block;
	padding: 0.55rem 1.1rem;
	color: #101010 !important;
	text-decoration: none;
	font-family: var(--font-family), system-ui, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.3;
	transition: background 0.2s;
	white-space: nowrap;
}

.te-site-header__menu .sub-menu a:hover,
.te-site-header__menu .sub-menu .current-menu-item > a {
	background: rgba(0, 0, 0, 0.06);
}

.te-site-header__search {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.te-site-header__search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 20px;
	align-items: center;
	column-gap: 6px;
	box-sizing: border-box;
	width: 215px;
	height: 30px;
	padding: 4px 12px;
	border-radius: 50px;
	background: #fff;
}

.te-site-header__search-field {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	height: 18px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #0b0b0b;
	font-family: var(--font-family), system-ui, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	outline: none;
}

.te-site-header__search-field::placeholder {
	font-family: var(--font-family), system-ui, sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.2);
}

.te-site-header__search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	color: rgba(0, 0, 0, 0.6);
	flex-shrink: 0;
}

.te-site-header__search-submit svg {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.te-site-header__search-submit svg path {
	stroke: rgba(0, 0, 0, 0.6) !important;
}

.te-site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.elementor-kit-13 .te-site-header__toggle,
.elementor-kit-13 button.te-site-header__toggle,
.elementor-kit-13 .te-site-header button.te-site-header__toggle,
body .te-site-header__toggle {
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.te-site-header__toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: #101010;
	border-radius: 1px;
}

/* Перебиваем Elementor Kit global link color (кроме страниц с белым меню) */
body:not(.te-header-nav-inverse) .te-site-header a:not(.custom-logo-link):not(.te-country-select__tag):not(.te-country-select__country):not(.te-country-select__region),
body:not(.te-header-nav-inverse).elementor-kit-13 .te-site-header a:not(.custom-logo-link):not(.te-country-select__tag):not(.te-country-select__country):not(.te-country-select__region),
body:not(.te-header-nav-inverse) .elementor-kit-13 .te-site-header .te-site-header__menu > li > a,
body:not(.te-header-nav-inverse) .elementor-kit-13 .te-site-header .te-site-logo--text {
	color: #101010 !important;
	font-family: var(--font-family), system-ui, sans-serif;
}

/* Популярные страны: синий фон + белый текст при наведении */
.te-site-header a.te-country-select__tag,
body.elementor-kit-13 .te-site-header a.te-country-select__tag,
.te-mobile-country-panel a.te-country-select__tag,
body.elementor-kit-13 .te-mobile-country-panel a.te-country-select__tag {
	color: #101010 !important;
	background: #f3f3f3 !important;
}

.te-site-header a.te-country-select__tag:hover,
.te-site-header a.te-country-select__tag:focus-visible,
body.elementor-kit-13 .te-site-header a.te-country-select__tag:hover,
body.elementor-kit-13 .te-site-header a.te-country-select__tag:focus-visible,
body:not(.te-header-nav-inverse) .te-site-header a.te-country-select__tag:hover,
body:not(.te-header-nav-inverse).elementor-kit-13 .te-site-header a.te-country-select__tag:hover,
.te-mobile-country-panel a.te-country-select__tag:hover,
.te-mobile-country-panel a.te-country-select__tag:focus-visible,
body.elementor-kit-13 .te-mobile-country-panel a.te-country-select__tag:hover {
	background: #17698f !important;
	background-color: #17698f !important;
	color: #fff !important;
}

/* Белые пункты верхнего меню */
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li > a,
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li > a:hover,
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li.current-menu-item > a,
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li.current-menu-ancestor > a,
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li.current_page_item > a,
body.te-header-nav-inverse.elementor-kit-13 .te-site-header .te-site-header__menu > li > a,
body.te-header-nav-inverse .elementor-kit-13 .te-site-header .te-site-header__menu > li > a {
	color: #fff !important;
	opacity: 1;
}

body.te-header-nav-inverse .te-site-header .te-site-header__menu .sub-menu a,
body.te-header-nav-inverse .te-site-header .te-site-header__menu .sub-menu a:hover,
body.te-header-nav-inverse .te-site-header .te-site-header__menu .sub-menu .current-menu-item > a {
	color: #101010 !important;
	opacity: 1;
}

body.te-header-nav-inverse .te-site-header .te-site-header__menu > li > a:hover,
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li.current-menu-item > a,
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li.current-menu-ancestor > a,
body.te-header-nav-inverse .te-site-header .te-site-header__menu > li.current_page_item > a {
	opacity: 0.75;
}

body.te-header-nav-inverse .te-site-header__toggle-bar {
	background: #fff;
}

.te-site-header__drawer-close,
.te-site-header__drawer-social {
	display: none;
}

.te-site-header__overlay {
	display: none;
	background: rgba(7, 20, 34, 0.55) !important;
	background-color: rgba(7, 20, 34, 0.55) !important;
	color: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
}

@media (min-width: 769px) {
	.te-site-header__shell {
		box-sizing: border-box;
		max-width: 1200px;
		width: calc(100% - 48px);
		height: 106px;
		margin: 0 auto;
		padding: 0 30px;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		column-gap: 16px;
		background: rgba(255, 255, 255, 0.2);
		border-radius: 0 0 20px 20px;
		box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.te-site-header__inner {
		display: contents;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.te-site-header__brand {
		grid-column: 1;
	}

	.te-site-header__toggle {
		display: none;
	}

	.te-site-header__drawer {
		display: contents;
	}

	.te-site-header__drawer-main {
		display: contents;
	}

	.te-site-header__drawer-close,
	.te-site-header__drawer-social,
	.te-mobile-country-panel {
		display: none !important;
	}

	.te-site-header__nav {
		grid-column: 2;
		justify-content: center;
		min-width: 0;
	}

	.te-site-header__search {
		grid-column: 3;
		flex-shrink: 0;
	}

	.te-site-header__brand,
	.te-site-header__nav,
	.te-site-header__search {
		align-self: center;
		position: relative;
		z-index: 1;
	}

	body.te-header-nav-inverse.single-country_article .te-site-header__inner,
	body.te-header-nav-inverse.te-country-section-archive .te-site-header__inner,
	body.single-country_article .te-site-header__inner {
		display: contents;
		position: static;
		width: auto;
		max-width: none;
		padding: 0;
	}

	.te-site-header__overlay {
		display: none !important;
	}
}

/* Тёмная шапка - статьи и архивы разделов */
body.te-header-nav-inverse.single-country_article .te-site-header,
body.te-header-nav-inverse.te-country-section-archive .te-site-header {
	position: relative;
	background: #071422;
	color: #fff;
}

body.te-header-nav-inverse.single-country_article .te-site-header::before,
body.te-header-nav-inverse.te-country-section-archive .te-site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(180deg, rgba(7, 20, 34, 0.92) 0%, rgba(7, 20, 34, 0.78) 35%, rgba(7, 20, 34, 0.94) 100%), var(--te-footer-bg);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	pointer-events: none;
}

body.te-header-nav-inverse.single-country_article .te-site-header__inner,
body.te-header-nav-inverse.te-country-section-archive .te-site-header__inner {
	position: relative;
	z-index: 1;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-radius: 0;
	width: 100%;
	max-width: none;
}

@media (min-width: 769px) {
	body.te-header-nav-inverse.single-country_article .te-site-header__shell,
	body.te-header-nav-inverse.te-country-section-archive .te-site-header__shell {
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border-radius: 0;
		width: 100%;
		max-width: none;
		padding-left: 30px;
		padding-right: 30px;
	}
}

body .te-site-header .te-site-header__search-submit,
body.elementor-kit-13 .te-site-header .te-site-header__search-submit,
.elementor-kit-13 .te-site-header .te-site-header__search-submit {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
}

/* Footer - Figma */
.te-site-footer {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background: #071422;
	color: #fff;
	font-family: Comfortaa, Montserrat, system-ui, sans-serif;
}

.te-site-footer__bg {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(180deg, rgba(7, 20, 34, 0.92) 0%, rgba(7, 20, 34, 0.78) 35%, rgba(7, 20, 34, 0.94) 100%), var(--te-footer-bg);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	pointer-events: none;
}

.te-site-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 24px 24px;
}

.te-site-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr) minmax(0, 0.85fr) minmax(0, 1.25fr);
	gap: 32px 40px;
	padding-bottom: 40px;
}

.te-site-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
	text-decoration: none;
	color: #fff;
}

.te-site-footer__brand-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.te-site-footer__brand-img,
.te-site-footer__brand .custom-logo {
	display: block;
	width: auto;
	height: 48px;
	max-width: 220px;
	object-fit: contain;
}

.te-site-footer__brand-name {
	font-family: Comfortaa, Montserrat, system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.04em;
	color: #fff;
}

.te-site-footer__slogan {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: #6ec1f5;
}

.te-site-footer__desc {
	margin: 0 0 22px;
	max-width: 300px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
}

.te-site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.te-site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.te-site-footer__social-link:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.45);
	transform: translateY(-1px);
}

.te-site-footer__heading {
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(110, 193, 245, 0.45);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}

.te-site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.te-site-footer__menu li + li {
	margin-top: 12px;
}

.te-site-footer__menu a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	transition: color 0.2s;
}

.te-site-footer__menu a:hover {
	color: #6ec1f5;
}

.te-site-footer__contacts {
	list-style: none;
	margin: 0;
	padding: 0;
}

.te-site-footer__contact + .te-site-footer__contact {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.te-site-footer__contact-label {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.te-site-footer__contact-label::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 8px;
	border-radius: 50%;
	background: #6ec1f5;
	vertical-align: middle;
}

.te-site-footer__contact-email {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	transition: color 0.2s;
}

.te-site-footer__contact-email:hover {
	color: #6ec1f5;
}

.te-site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px 0 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.te-site-footer__bottom-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
}

.te-site-footer__copy {
	order: 2;
	width: 100%;
	margin: 0;
	padding-top: 2px;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.52);
	text-align: center;
}

.te-site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
}

.te-site-footer__legal a {
	color: rgba(255, 255, 255, 0.58);
	text-decoration: none;
	font-size: 10px;
	line-height: 1.35;
	transition: color 0.2s;
}

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

.te-site-footer__legal-sep {
	color: rgba(255, 255, 255, 0.22);
	font-size: 10px;
}

.te-site-footer__developer {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}

.te-site-footer__developer:hover {
	color: #fff;
	opacity: 0.92;
}

.te-site-footer__developer-logo {
	display: block;
}

body .te-site-footer a {
	color: inherit;
}

body .te-site-footer .te-site-footer__menu a,
body .te-site-footer .te-site-footer__contact-email {
	color: rgba(255, 255, 255, 0.88);
}

body .te-site-footer .te-site-footer__legal a {
	color: rgba(255, 255, 255, 0.58);
	font-size: 10px;
}

body .te-site-footer .te-site-footer__menu a:hover,
body .te-site-footer .te-site-footer__contact-email:hover,
body .te-site-footer .te-site-footer__legal a:hover {
	color: #6ec1f5;
}

body .te-site-footer .te-site-footer__copy {
	color: rgba(255, 255, 255, 0.52);
	font-size: 11px;
}

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

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

body:not(.home):not(.single-country_page):not(.single-continent_page):not(.te-articles-archive):not(.te-travel-hub-archive):not(.te-news-archive):not(.te-lifehacks-archive):not(.te-lifehack-single):not(.single-travel_news):not(.single-travel_lifehack):not(.te-guides-page):not(.te-services-page) .te-site-header {
	position: relative;
}

body:not(.home) .te-main {
	padding-top: 0;
}

@media (max-width: 1100px) {
	.te-site-header__menu > li > a {
		font-size: 14px;
		padding: 0 8px !important;
	}
}

@media (max-width: 900px) {
	.te-site-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.te-site-header__shell {
		width: 100%;
	}

	.te-site-header__inner {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		height: auto;
		min-height: 72px;
		padding: 12px 16px;
		width: calc(100% - 24px);
		margin: 0 auto;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	body.te-header-nav-inverse.single-country_article .te-site-header__inner,
	body.te-header-nav-inverse.te-country-section-archive .te-site-header__inner {
		width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}

	.te-site-logo {
		width: auto;
		height: auto;
		min-height: 0;
		flex: 0 1 auto;
		max-width: calc(100% - 96px);
	}

	.te-site-logo__label {
		line-height: 1.2;
		font-size: 14px;
	}

	.te-site-logo--image .custom-logo-link {
		width: auto;
		height: auto;
	}

	.te-site-logo--image .custom-logo,
	.te-site-logo--image img {
		max-width: 120px;
		max-height: 52px;
	}

	.te-site-header__toggle {
		display: flex;
		margin-left: auto;
		flex-shrink: 0;
		background: transparent !important;
		background-color: transparent !important;
		border-radius: 10px;
	}

	.te-site-header__toggle-bar {
		background: #fff;
	}

	.te-site-header__overlay {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 1;
		border: 0;
		padding: 0;
		margin: 0;
		background: rgba(7, 20, 34, 0.55) !important;
		background-color: rgba(7, 20, 34, 0.55) !important;
		color: transparent !important;
		box-shadow: none !important;
		cursor: pointer;
	}

	body.te-mobile-nav-open .te-site-header__overlay:not([hidden]) {
		display: block;
	}

	body.te-mobile-nav-open .te-site-header {
		z-index: 300;
	}

	body.te-mobile-nav-open .te-site-header__inner {
		background: transparent;
		box-shadow: none;
		position: relative;
		z-index: 3;
	}

	.te-site-header__overlay[hidden] {
		display: none;
	}

	.te-site-header__drawer {
		position: fixed;
		top: 0;
		right: -100%;
		bottom: 0;
		left: auto;
		z-index: 2;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		padding: 20px 16px 28px;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: #071422;
		color: #fff;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.28);
		transition: right 0.32s ease, visibility 0s linear 0.32s;
		visibility: hidden;
		pointer-events: none;
		isolation: isolate;
	}

	.te-site-header__drawer.is-open {
		right: 0;
		visibility: visible;
		pointer-events: auto;
		transition: right 0.32s ease, visibility 0s;
	}

	.te-site-header__drawer-close,
	.te-site-header__drawer-main,
	.te-site-header__drawer-main a,
	.te-site-header__drawer-main button,
	.te-site-header__drawer-main .te-site-header__menu > li > a,
	body.te-header-nav-inverse .te-site-header__drawer-main .te-site-header__menu > li > a,
	body.elementor-kit-13 .te-site-header__drawer-main a,
	body.elementor-kit-13 .te-site-header__drawer-main button,
	body.elementor-kit-13 .te-site-header__drawer-main .te-site-header__menu > li > a {
		color: #fff !important;
		opacity: 1 !important;
	}

	.te-site-header__drawer-main .te-site-header__search-field {
		color: #fff !important;
	}

	.te-site-header__drawer-main .te-site-header__search-field::placeholder {
		color: rgba(255, 255, 255, 0.55) !important;
	}

	.te-site-header__drawer-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		align-self: flex-end;
		width: 40px;
		height: 40px;
		margin: 0 0 8px;
		padding: 0;
		border: 0;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.12) !important;
		background-color: rgba(255, 255, 255, 0.12) !important;
		color: #fff !important;
		box-shadow: none !important;
		cursor: pointer;
	}

	.te-site-header__nav {
		display: block;
		width: 100%;
		margin: 0 0 20px;
	}

	.te-site-header__menu {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.te-site-header__menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.te-site-header__menu > li > a {
		width: 100%;
		justify-content: flex-start;
		min-height: 44px;
		padding: 10px 4px !important;
		font-size: 15px;
		color: #fff !important;
	}

	.te-site-header__menu .sub-menu {
		display: none;
		position: static;
		transform: none;
		min-width: 0;
		margin: 0 0 0.5rem;
		padding: 0 0 0.5rem 1rem;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.te-site-header__menu .sub-menu a {
		color: rgba(255, 255, 255, 0.9) !important;
	}

	.te-site-header__menu li.is-submenu-open > .sub-menu {
		display: block;
	}

	.te-site-header__search {
		width: 100%;
		margin: 0 0 24px;
	}

	.te-site-header__search-form {
		width: 100%;
		max-width: none;
		margin: 0;
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 12px;
	}

	.te-site-header__search-field {
		color: #fff;
	}

	.te-site-header__search-field::placeholder {
		color: rgba(255, 255, 255, 0.55);
	}

	.te-site-header__search-submit svg path {
		stroke: rgba(255, 255, 255, 0.75) !important;
	}

	.te-site-header__drawer-social {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: auto;
		padding-top: 8px;
	}

	.te-site-header__drawer-social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid rgba(255, 255, 255, 0.28);
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.06);
		color: #fff;
		text-decoration: none;
	}

	.te-mobile-country-panel {
		display: none;
		flex-direction: column;
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
	}

	.te-mobile-country-panel:not([hidden]) {
		display: flex;
	}

	.te-mobile-country-panel__back {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		align-self: flex-start;
		margin: 0 0 12px;
		padding: 8px 10px;
		border: 0;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.1) !important;
		background-color: rgba(255, 255, 255, 0.1) !important;
		color: #fff !important;
		box-shadow: none !important;
		font-family: var(--font-family), system-ui, sans-serif;
		font-size: 15px;
		font-weight: 600;
		cursor: pointer;
	}

	.te-mobile-country-panel .te-country-select {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		position: relative;
		flex: 1 1 auto;
		min-height: 0;
		max-height: none;
		overflow: hidden;
		margin: 0;
		padding: 0;
		background: #fff !important;
		background-color: #fff !important;
		border-radius: 14px;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	}

	.te-mobile-country-panel .te-country-select__inner {
		height: 100%;
		max-height: calc(100vh - 120px);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.te-mobile-country-panel .te-country-select,
	.te-mobile-country-panel .te-country-select__title,
	.te-mobile-country-panel .te-country-select__popular-title,
	.te-mobile-country-panel .te-country-select__input,
	.te-mobile-country-panel .te-country-select__country,
	.te-mobile-country-panel .te-country-select__tag,
	.te-mobile-country-panel .te-country-select__letter,
	.te-mobile-country-panel .te-country-select__empty,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__title,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__country,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__tag,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__letter,
	body.elementor-kit-13 .te-mobile-country-panel a.te-country-select__country,
	body.elementor-kit-13 .te-mobile-country-panel a.te-country-select__tag {
		color: #101010 !important;
		opacity: 1 !important;
	}

	.te-mobile-country-panel .te-country-select__popular-title,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__popular-title {
		color: #666 !important;
	}

	.te-mobile-country-panel .te-country-select__tag,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__tag {
		background: #f3f3f3 !important;
		background-color: #f3f3f3 !important;
		color: #101010 !important;
	}

	.te-mobile-country-panel .te-country-select__region,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__region {
		color: #fff !important;
	}

	.te-mobile-country-panel .te-country-select__country:hover,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__country:hover {
		color: #17698f !important;
	}

	.te-mobile-country-panel .te-country-select__tag:hover,
	.te-mobile-country-panel a.te-country-select__tag:hover,
	body.elementor-kit-13 .te-mobile-country-panel .te-country-select__tag:hover,
	body.elementor-kit-13 .te-mobile-country-panel a.te-country-select__tag:hover {
		background: #17698f !important;
		background-color: #17698f !important;
		color: #fff !important;
	}

	.te-site-footer__top {
		grid-template-columns: 1fr;
	}

	.te-site-footer__bottom {
		align-items: stretch;
	}

	.te-site-footer__bottom-main {
		flex-direction: column;
		align-items: flex-start;
	}

	.te-site-footer__copy {
		text-align: left;
	}
}

body.te-mobile-nav-open {
	overflow: hidden;
}

/* Scroll to top - гарантированно в базовом CSS хедера */
#te-scroll-top.te-scroll-top {
	position: fixed !important;
	right: 24px !important;
	bottom: 24px !important;
	z-index: 2147483000 !important;
	width: 48px !important;
	height: 48px !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #ff8d28 !important;
	color: #fff !important;
	box-shadow: 0 8px 24px rgba(16, 16, 16, 0.22) !important;
	cursor: pointer !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Интересные факты: светлый хедер с обрамлением как на остальных страницах */
body.te-facts-header .te-site-header {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	color: #101010;
	background: transparent;
	overflow: visible;
}

body.te-facts-header .te-site-header::before {
	display: none !important;
	content: none !important;
}

body.te-facts-header .te-site-header__inner {
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 0 0 20px 20px;
}

body.te-facts-header .te-site-header__shell {
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 0 0 20px 20px;
}

@media (min-width: 769px) {
	body.te-facts-header .te-site-header__inner {
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border-radius: 0;
	}
}

body.te-facts-header .te-site-header .te-site-header__menu > li > a,
body.te-facts-header.elementor-kit-13 .te-site-header .te-site-header__menu > li > a,
body.te-facts-header .elementor-kit-13 .te-site-header .te-site-header__menu > li > a {
	color: #101010 !important;
	opacity: 1;
}

body.te-facts-header .te-site-header__toggle-bar {
	background: #101010;
}

body.te-facts-header .te-site-header__search-form {
	background: #fff;
	box-shadow:
		0 0 0 1px rgba(23, 105, 143, 0.12),
		0 2px 8px rgba(16, 24, 40, 0.1);
}

/* Светлый хедер: лого чёрное, без фона/подложки */
body.te-facts-header .te-site-logo,
body.te-facts-header .te-site-logo--image,
body.te-facts-header .te-site-logo--image .custom-logo-link {
	background: transparent !important;
	box-shadow: none !important;
}

body.te-facts-header .te-site-logo--text,
body.te-facts-header .te-site-logo--text .te-site-logo__label {
	color: #101010 !important;
}

body.te-facts-header .te-site-logo--image .custom-logo,
body.te-facts-header .te-site-logo--image img {
	background: transparent !important;
	filter: brightness(0);
}

body.te-facts-header.single-post,
body.te-facts-header.single-post #page,
body.te-facts-header.single-post .site,
body.te-facts-header.single-post main {
	background: #f7f9fc;
}

