/* Шаблон интересных фактов — как на travel-energy.by */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Jost:wght@300;400;500&display=swap");

body.single-post,
body.te-facts-header.single-post {
	--te-fact-ink: #1e1e1e;
	--te-fact-muted: #6b6b6b;
	background: #f7f9fc;
}

/* ——— Hero: текст | фото ——— */
.te-fact-hero {
	display: flex;
	align-items: stretch;
	min-height: 80vh;
	background: #f7f9fc;
}

.te-fact-hero__text {
	flex: 1 1 58.5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 8% 10%;
	box-sizing: border-box;
	background: #f7f9fc;
	position: relative;
}

.te-fact-hero__crumbs {
	position: absolute;
	top: 24px;
	left: 24px;
	right: 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	justify-content: flex-start;
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 300;
	color: var(--te-fact-muted);
	line-height: 1.3;
}

.te-fact-hero__crumbs a {
	color: var(--te-fact-muted);
	text-decoration: none;
}

.te-fact-hero__crumbs a:hover {
	color: var(--te-fact-ink);
}

.te-fact-hero__crumbs-sep {
	opacity: 0.7;
}

.te-fact-hero__crumbs-current {
	color: var(--te-fact-ink);
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.te-fact-hero__title {
	margin: 0;
	max-width: 16ch;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(38px, 5vw, 65px);
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--te-fact-ink);
}

.te-fact-hero__date {
	margin-top: 48px;
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--te-fact-ink);
}

.te-fact-hero__media {
	flex: 1 1 40.5%;
	min-height: 80vh;
	background-color: #0b1a28;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.te-fact-hero[data-no-image="1"] .te-fact-hero__media {
	display: none;
}

.te-fact-hero[data-no-image="1"] .te-fact-hero__text {
	flex-basis: 100%;
	min-height: 50vh;
}

/* ——— Контент ——— */
.te-fact-body {
	background: #f7f9fc;
	padding: 6% 20px 0;
}

.te-fact-body__inner {
	max-width: 920px;
	margin: 0 auto;
}

.te-fact-content {
	font-family: "Jost", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.55;
	color: var(--te-fact-ink);
}

.te-fact-content p {
	margin: 0 0 1em;
}

.te-fact-content a {
	color: inherit;
}

/* ——— Ещё больше интересных мест ——— */
.te-fact-more {
	margin: 72px 0 96px;
	padding: 0 4px;
}

.te-fact-more__title {
	margin: 0 0 48px;
	text-align: center;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(26px, 3.5vw, 40px);
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--te-fact-ink);
}

.te-fact-more__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 28px;
	align-items: start;
}

.te-fact-more__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: inherit;
	text-decoration: none;
}

.te-fact-more__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 3;
	overflow: hidden;
	background: #eef2f6;
	margin-bottom: 20px;
}

.te-fact-more__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 0.25s ease, transform 0.35s ease;
}

.te-fact-more__card:hover .te-fact-more__thumb img {
	filter: brightness(1.05) contrast(1.05) saturate(1.05);
	transform: scale(1.02);
}

.te-fact-more__card-title {
	margin: 0 0 12px;
	padding: 0 24px;
	font-family: "Jost", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--te-fact-ink);
}

.te-fact-more__card-date {
	display: block;
	margin-bottom: 12px;
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 300;
	color: var(--te-fact-muted);
}

.te-fact-more__card-excerpt {
	margin: 0 0 28px;
	padding: 0 24px;
	font-family: "Jost", sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.45;
	color: #444;
}

.te-fact-more__card-more {
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--te-fact-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 1024px) {
	.te-fact-hero {
		flex-direction: column-reverse;
		min-height: 0;
	}

	.te-fact-hero__text,
	.te-fact-hero__media {
		flex-basis: auto;
		width: 100%;
		min-height: 360px;
	}

	.te-fact-hero__title {
		max-width: none;
		letter-spacing: 0.06em;
	}

	.te-fact-more__grid {
		gap: 48px 20px;
	}

	.te-fact-more__card-title,
	.te-fact-more__card-excerpt {
		padding: 0 12px;
	}
}

@media (max-width: 767px) {
	.te-fact-hero__text {
		padding: 64px 6% 40px;
		min-height: 0;
	}

	.te-fact-hero__crumbs {
		top: 16px;
		left: 16px;
		right: 16px;
	}

	.te-fact-hero__media {
		min-height: 300px;
	}

	.te-fact-hero__date {
		margin-top: 28px;
		letter-spacing: 0.25em;
	}

	.te-fact-more__grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.te-fact-more__title {
		letter-spacing: 0.14em;
		margin-bottom: 36px;
	}

	.te-fact-more__card-excerpt {
		margin-bottom: 20px;
	}
}

/* Elementor в теле факта */
.te-fact-content .elementor,
.te-fact-content .elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 100% !important;
	width: 100% !important;
}

.te-fact-content .elementor-widget-posts,
.te-fact-content .elementor-widget-theme-post-featured-image {
	display: none !important;
}

.te-fact-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}
