* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
	color: #52616b;
	background: #fff;
	line-height: 1.6;
}
body {
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	max-width: 100%;
}
.site-header {
	position: relative;
	background: #062c42;
	overflow: hidden;
	color: #effbff;
}
.header-smoke-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.72;
	pointer-events: none;
	mix-blend-mode: screen;
}
.footer-logo img {
	height: 77px;
}
.head-inner {
	height: 108px;
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	gap: 56px;
	padding: 0 24px;
	position: relative;
	z-index: 1;
	justify-content: space-between;
}
.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 250px;
}
.brand img {
	height: 48px;
	object-fit: contain;
}
.brand strong {
	font-size: 24px;
	font-weight: 400;
	color: #fff;
	display: block;
}
.brand small {
	color: #a8d4df;
	font-size: 13px;
}
.search {
	margin-left: auto;
	width: 260px;
	height: 42px;
	border: 1px solid rgba(157, 232, 247, 0.65);
	background: rgba(3, 28, 38, 0.25);
	padding: 0 12px;
	color: #fff;
	font-size: 13px;
	outline: 0;
}
.search::placeholder {
	color: #b3d0d8;
}
.search:focus {
	box-shadow: 0 0 0 3px rgba(90, 210, 244, 0.22);
}
.nav {
	height: 66px;
	background: rgba(3, 28, 38, 0.25);
	border-bottom: 1px solid rgba(159, 222, 236, 0.24);
	position: relative;
	z-index: 1;
}
.nav ul {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	height: 100%;
	padding: 0 24px;
	margin: 0 auto;
	list-style: none;
	display: flex;
	gap: 8px;
	align-items: stretch;
	justify-content: center;
}
.nav li {
	flex: 0 0 150px;
	text-align: center;
}
.nav a {
	display: flex;
	position: relative;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	letter-spacing: 1px;
	color: #e8f8fb;
	border-radius: 2px;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}
.nav a:hover,
.nav a.active {
	background: rgba(90, 210, 244, 0.22);
	color: #fff;
	box-shadow: inset 0 -3px #5ad2f4;
}
.hero {
	height: 520px;
	position: relative;
	overflow: hidden;
}
.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.4),
		rgba(0, 0, 0, 0.08) 65%,
		rgba(0, 0, 0, 0.2)
	);
}
.hero-copy {
	position: absolute;
	z-index: 1;
	left: calc(50% + 80px);
	top: 34%;
	color: #fff;
	width: 390px;
}
.hero-copy h1 {
	font-size: 42px;
	letter-spacing: 6px;
	margin: 0 0 10px;
	font-weight: 700;
}
.hero-copy p {
	font-size: 17px;
	margin: 0 0 22px;
}
.hero-copy .tag {
	display: inline-block;
	background: #1b6ca8;
	padding: 9px 28px;
	font-size: 18px;
}
.section {
	max-width: 1400px;
	margin: auto;
	padding: 70px 24px;
}
.section-title {
	text-align: center;
	margin-bottom: 38px;
}
.section-title h2 {
	font-size: 28px;
	letter-spacing: 7px;
	margin: 0;
	color: #123746;
}
.section-title p {
	margin: 4px 0;
	color: #8ca3ad;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.route-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.route-card {
	background: #fff;
	border: 1px solid #e3edf1;
	box-shadow: 0 5px 18px rgba(20, 52, 90, 0.07);
	transition: 0.25s;
	overflow: hidden;
}
.route-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(20, 52, 90, 0.14);
}
.route-card img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}
.route-card .pad {
	padding: 16px 18px;
}
.route-card h3 {
	font-size: 17px;
	font-weight: 400;
	color: #123746;
	margin: 0 0 7px;
}
.route-card p {
	font-size: 13px;
	color: #8298a2;
	margin: 0;
}
.price {
	color: #d9784d;
	font-size: 20px;
	margin-top: 10px;
}
.price small {
	font-size: 12px;
	color: #8298a2;
}
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.split img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.split h2 {
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 4px;
	color: #123746;
	margin: 0 0 16px;
}
.split p {
	font-size: 15px;
	line-height: 2;
	margin: 0 0 15px;
}
.blue-band {
	background: #f1f8fb;
}
.news-list {
	display: grid;
	gap: 18px;
}
.news-item {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #deebf0;
}
.news-date {
	color: #1b6ca8;
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
}
.news-date small {
	display: block;
	font-size: 12px;
	color: #8ca3ad;
	margin-top: 8px;
	font-weight: 400;
}
.news-item h3 {
	margin: 0 0 6px;
	font-weight: 400;
	color: #123746;
	font-size: 18px;
}
.news-item p {
	margin: 0;
	color: #71858e;
	font-size: 14px;
}
.sub-hero {
	height: 260px;
	position: relative;
	overflow: hidden;
}
.sub-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.62);
}
.sub-hero .sub-copy {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.sub-copy h1 {
	font-size: 36px;
	letter-spacing: 8px;
	margin: 0;
}
.sub-copy p {
	margin: 4px 0;
	font-size: 14px;
	letter-spacing: 3px;
}
.category {
	display: flex;
	justify-content: center;
	margin: 0 auto 34px;
	flex-wrap: wrap;
}
.category a {
	padding: 12px 30px;
	border: 1px solid #d4e3e9;
	color: #526b76;
}
.category a:hover,
.category a.active {
	background: #1b6ca8;
	color: #fff;
	border-color: #1b6ca8;
}
.form-box {
	max-width: 760px;
	margin: auto;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.form-box input,
.form-box textarea {
	width: 100%;
	border: 1px solid #cfdee5;
	padding: 12px 14px;
	font-size: 14px;
}
.form-box textarea {
	height: 150px;
	resize: vertical;
	margin-top: 22px;
}
.btn {
	display: inline-block;
	background: #1b6ca8;
	color: #fff;
	padding: 12px 42px;
	border: 0;
	font-size: 15px;
	cursor: pointer;
}
.btn:hover {
	background: #5ad2f4;
	color: #031c26;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
}
.contact-card {
	padding: 30px;
	background: #f1f8fb;
}
.contact-card h3 {
	margin: 0 0 18px;
	font-size: 22px;
	color: #123746;
	font-weight: 400;
}
.contact-card p {
	line-height: 1.8;
	margin: 23px 0;
}
.map {
	width: 100%;

	position: relative;
	aspect-ratio: 1 / 0.6;
}

.detail {
	max-width: 90%;
	margin: auto;
}
.detail h1 {
	font-size: 30px;
	color: #123746;
	font-weight: 400;
	margin: 0 0 12px;
}
.meta {
	color: #8298a2;
	font-size: 13px;
	border-bottom: 1px solid #deebf0;
	padding-bottom: 18px;
	margin-bottom: 28px;
}
.detail p {
	font-size: 16px;
	line-height: 2;
	margin: 0 0 18px;
}
.detail video {
	object-fit: cover;
}
.detail video,
.detail img {
	max-width: 100%;

	margin: 25px 0;
}

.product-top {
	display: grid;
	grid-template-columns: 46% 1fr;
	gap: 45px;
	align-items: start;
}
.product-top > img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}
.product-top h1 {
	font-size: 30px;
	font-weight: 400;
	color: #123746;
	margin: 0 0 20px;
}
.product-top .big-price {
	font-size: 28px;
	color: #d9784d;
	margin: 10px 0 25px;
}
/* 分页容器整体布局 */
.pagination.page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	/* 按钮之间的间距 */
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}

/* 所有按钮/页码通用样式 */
.pagination.page > * {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 5px 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background-color: #fff;
	color: #333;
	font-size: 12px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

/* 数字页码单独调整宽度 */
.pagination.page .page-number {
	padding: 5px 15px;
}

/* 当前激活页（蓝色背景、白色文字） */
.pagination.page .active.page-number {
	background-color: #3f6fc0;
	border-color: #3f6fc0;
	color: #fff;
}

/* 隐藏 SVG 箭头图标，替换为文字 */
.pagination.page .prev-page svg,
.pagination.page .next-page svg {
	display: none;
}

/* 给上一页/下一页加上文字 */
.pagination.page .prev-page::before {
	content: "上一页";
}

.pagination.page .next-page::after {
	content: "下一页";
}

/* 省略号样式（如果后续要加） */
.pagination.page .ellipsis {
	border: none;
	background: transparent;
	cursor: default;
}

/*  hover 交互效果 */
.pagination.page > *:hover:not(.active.page-number):not(.ellipsis) {
	border-color: #3f6fc0;
	color: #3f6fc0;
}
.footer {
	background: #102a37;
	color: #c8d8df;
}
.footer-main {
	margin: auto;
	padding: 46px 24px;
	display: grid;
	grid-template-columns: 1fr 1.6fr 1fr;
	gap: 40px;
	justify-items: center;
}
.footer h3 {
	margin: 0 0 13px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
}
.footer p {
	margin: 7px 0;
	font-size: 13px;
}
.footer-bottom {
	text-align: center;
	border-top: 1px solid #284755;
	padding: 16px;
	font-size: 12px;
	color: #8fa8b2;
}
.to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	background: #1b6ca8;
	color: #fff;
	border: 0;
	width: 42px;
	height: 42px;
	display: none;
	cursor: pointer;
}
.to-top.show {
	display: block;
}
.pager {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 36px 0;
}
.pager a,
.pager span {
	padding: 6px 12px;
	border: 1px solid #d4e3e9;
}
.pager .current {
	background: #1b6ca8;
	color: #fff;
}
.detail-links {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #deebf0;
	margin-top: 40px;
	padding-top: 20px;
}
@media (max-width: 800px) {
	.pagination.page .page-number {
		padding: 2px 10px;
	}
	.pagination.page > * {
		padding: 2px 9px;
	}
	.footer-logo img {
		height: 53px;
	}
	.pagination.page {
		gap: 5px;
	}
	.head-inner {
		height: 88px;
		gap: 15px;
		padding: 0 14px;
	}
	.brand {
		min-width: 0;
		gap: 8px;
	}
	.brand img {
		height: 40px;
	}
	.brand strong {
		font-size: 18px;
	}
	.search {
		width: 150px;
		height: 36px;
	}
	.nav ul {
		padding: 0 10px;
		gap: 0;
		justify-content: flex-start;
	}
	.nav li {
		flex: 0 0 104px;
	}
	.nav a {
		font-size: 14px;
	}
	.hero {
		height: 470px;
	}
	.hero-copy {
		left: 12%;
		top: 34%;
		width: 78%;
	}
	.hero-copy h1 {
		font-size: 30px;
	}
	.route-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.split,
	.contact-grid,
	.product-top {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.footer-main {
		grid-template-columns: 1fr;
		gap: 18px;
		justify-items: start;
	}
	.section {
		padding: 48px 16px;
	}
	.sub-hero {
		height: 210px;
	}
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
.site-header {
	background: #0d5b86;
}
.header-smoke-canvas {
	opacity: 0.8;
	mix-blend-mode: screen;
}
.nav {
	background: rgba(5, 55, 88, 0.32);
	border-bottom-color: rgba(159, 222, 236, 0.34);
}
.nav a {
	color: #e8f8fb;
}
.nav a:hover,
.nav a.active {
	background: rgba(74, 184, 232, 0.28);
	box-shadow: inset 0 -3px #7ddcff;
}
.brand small {
	color: #b6e2f3;
}
.search {
	border-color: rgba(157, 232, 247, 0.72);
	background: rgba(3, 28, 38, 0.16);
}
.search::placeholder {
	color: #c1e0eb;
}
.section-title h2,
.split h2,
.route-card h3,
.news-item h3,
.detail h1,
.product-top h1 {
	color: #303b3c;
}
.blue-band {
	background: #f5f1eb;
}
.btn,
.category a:hover,
.category a.active,
.pager .current,
.map:after {
	background: #9a6f50;
	border-color: #9a6f50;
}
.btn:hover {
	background: #c49b78;
}
.price,
.news-date,
.product-top .big-price {
	color: #a86e4e;
}
.footer {
	background: #343a39;
}
.footer-bottom {
	border-top-color: #4d5553;
}
.site-header {
	background: #0b4e78;
}
.nav {
	background: rgba(4, 48, 79, 0.4);
}
.nav a:hover,
.nav a.active {
	background: rgba(90, 210, 244, 0.22);
	box-shadow: inset 0 -3px #5ad2f4;
}
.btn,
.category a:hover,
.category a.active,
.pager .current,
.map:after {
	background: #1b6ca8;
	border-color: #1b6ca8;
}
.btn:hover {
	background: #5ad2f4;
	color: #031c26;
}
.price,
.news-date,
.product-top .big-price {
	color: #147da8;
}
.blue-band {
	background: #f1f8fb;
}
.footer {
	background: #102a37;
}
.footer-bottom {
	border-top-color: #284755;
}
.price,
.news-date,
.product-top .big-price,
.domestic-card b {
	color: #f26a21 !important;
}
.domestic-feature-copy span strong {
	color: #ffb000 !important;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.btn {
	color: #fff !important;
}
.city-tab {
	color: #f28a2e !important;
}
.city-tab:hover,
.city-tab.is-active {
	color: #f28a2e !important;
}

.site-header {
	display: flex;
	flex-direction: column;
	background: #fff;
	color: #183b55;
	overflow: visible;
	box-shadow: 0 1px 0 rgba(24, 59, 85, 0.1);
}
.site-header .header-smoke-canvas {
	display: none;
}
.site-header .head-inner {
	order: 2;
	width: 100%;
	height: 96px;
	max-width: 1440px;
	gap: 44px;
	padding: 0 30px;
	background: #fff;
}
.site-header .brand {
	gap: 12px;
	min-width: 280px;
}
.site-header .brand img {
	height: 58px;
}
.site-header .brand strong {
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
}
.site-header .brand small {
	display: block;
	margin-top: 1px;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.site-header .brand strong {
	color: #183b55;
}
.site-header .brand small {
	color: #71838d;
}
.site-header .head-inner > div {
	display: flex;
	min-width: 155px;
	flex-direction: column;
	gap: 1px;
	color: #6f808a;
	font-size: 11px;
	letter-spacing: 0.5px;
}
.site-header .head-inner > div br {
	display: none;
}
.site-header .head-inner > div b {
	color: #183b55;
	font-size: 19px;
	letter-spacing: 1px;
}
.site-header .search {
	width: 280px;
	height: 44px;
	margin-left: auto;
	padding: 0 16px;
	border: 1px solid #b9d3e0;
	border-radius: 3px;
	background: #f8fbfd;
	color: #183b55;
	font-size: 13px;
}
.site-header .search::placeholder {
	color: #91a4ae;
}
.site-header .search:focus {
	border-color: #3d7ee8;
	box-shadow: 0 0 0 4px rgba(61, 126, 232, 0.12);
}
.site-header .nav {
	order: 1;
	width: 100%;
	height: 60px;
	background-color: #268bd0;
	background-image:
		linear-gradient(
			90deg,
			rgba(8, 77, 130, 0.38),
			rgba(30, 135, 202, 0.16) 50%,
			rgba(8, 77, 130, 0.32)
		),
		url("../images/header-sky-clouds-v3.jpg");
	background-position: center 24%;
	background-size: cover;
	border-bottom: 1px solid #62b8dd;
	box-shadow: 0 3px 10px rgba(21, 93, 137, 0.12);
}
.site-header .nav ul {
	max-width: 1440px;
	padding: 0 30px;
	justify-content: center;
	gap: 4px;
}
.site-header .nav li {
	flex: 0 0 128px;
}
.site-header .nav a {
	font-size: 14px;
	color: #fff;
	border-radius: 0;
	text-shadow: 0 1px 4px rgba(14, 66, 101, 0.42);
}
.site-header .nav a:hover,
.site-header .nav a.active {
	background: rgba(255, 255, 255, 0.24);
	color: #fff;
	box-shadow: inset 0 -3px #f28a2e;
}
/* 移动端汉堡菜单样式 */
.hamburger {
	display: none !important;
	width: 36px;
	height: 30px;
	position: relative;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 38px;
	height: 3px;
	background: #333;
	position: absolute;
	left: 0;
	transition: 0.3s;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	top: 13px;
}
.hamburger span:nth-child(3) {
	bottom: 0;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 15px;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	bottom: 12px;
}

/* 移动端菜单容器 */
.mobile-nav {
	display: none;
	width: 100%;
	background: #fff;
}
.mobile-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mobile-nav li {
	border-bottom: 1px solid #eee;
}
.mobile-nav li a {
	display: block;
	padding: 14px 20px;
	color: #333;
	text-decoration: none;
}
.mobile-nav li a.active {
	color: #0066cc;
}

@media (max-width: 768px) {
	.nav {
		display: none !important;
	}
	.hamburger {
		display: block;
	}
	.site-header .head-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

@media (max-width: 800px) {
	.site-header .head-inner {
		height: 82px;
		gap: 12px;
		padding: 0 16px;
	}
	.site-header .brand {
		min-width: 0;
		gap: 8px;
	}
	.site-header .brand img {
		height: 56px;
	}
	.site-header .brand strong {
		font-size: 18px;
	}
	.site-header .brand small {
		font-size: 9px;
		letter-spacing: 1px;
	}
	.site-header .head-inner > div {
		display: none;
	}
	.category a {
		padding: 6px 14px;
	}
	.site-header .head-inner .hamburger {
		display: block !important;
		min-width: 37px;
	}
	.site-header .search {
		width: 132px;
		height: 36px;
		padding: 0 10px;
		font-size: 11px;
	}
	.site-header .nav {
		height: 52px;
		overflow: hidden;
	}
	.site-header .nav ul {
		padding: 0 10px;
		justify-content: flex-start;
		overflow-x: auto;
	}
	.site-header .nav li {
		flex: 0 0 92px;
	}
	.site-header .nav a {
		font-size: 13px;
	}
}

body {
	font-size: 16px;
	color: #52616b;
}
.site-header .nav a {
	font-size: 15px;
	line-height: 1.4;
}
.section-title h2,
.split h2 {
	font-size: 32px;
	line-height: 1.35;
}
.section-title p {
	font-size: 13px;
	line-height: 1.6;
}
.route-card h3,
.news-item h3 {
	font-size: 18px;
	line-height: 1.45;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.split p {
	font-size: 14px;
	line-height: 1.8;
}
.route-card p,
.news-item p {
	font-size: 14px;
	line-height: 1.8;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.route-card h3,
.news-item h3,
.travel-guide-copy h3,
.travel-benefit-card h3,
.domestic-card h3,
.city-deal h3,
.editorial-card-copy h3 {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.route-card p,
.news-item p,
.travel-guide-copy > p:not(.travel-guide-meta),
.travel-benefit-card p,
.domestic-card p,
.city-deal p {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.route-card,
.news-item,
.travel-guide-card,
.travel-benefit-card,
.domestic-card,
.city-deal,
.editorial-card {
	min-width: 0;
}
.route-card > div,
.news-item > div,
.travel-guide-copy,
.travel-benefit-card,
.domestic-card > div,
.city-deal > div,
.editorial-card-copy {
	min-width: 0;
}
.sub-copy h1,
.detail h1,
.product-top h1 {
	font-size: 32px;
	line-height: 1.35;
}
.sub-copy h1 {
	text-align: center;
}
.sub-copy p,
.meta {
	font-size: 13px;
	line-height: 1.6;
}
.category a,
.btn {
	font-size: 15px;
	line-height: 1.5;
	margin-top: 22px;
}
.detail p {
	font-size: 16px;
	line-height: 2;
}
.footer h3 {
	font-size: 20px;
	line-height: 1.4;
}
.footer p {
	font-size: 14px;
	line-height: 1.7;
}

@media (max-width: 800px) {
	.site-header .nav a {
		font-size: 14px;
	}
	.section-title h2,
	.split h2 {
		font-size: 28px;
	}
	.route-card h3,
	.news-item h3 {
		font-size: 16px;
	}
	.route-card p,
	.news-item p,
	.split p {
		font-size: 13px;
	}
	.sub-copy p,
	.meta {
		font-size: 11px;
	}
	.sub-copy h1,
	.detail h1,
	.product-top h1 {
		max-width: 90%;
		font-size: 17px;
	}
	.category a,
	.btn {
		font-size: 14px;
	}
	.detail p {
		font-size: 15px;
	}
	.footer p {
		font-size: 13px;
	}
}

.section-title h2,
.split h2 {
	font-size: 34px;
	line-height: 1.35;
	font-weight: 600;
	letter-spacing: 0;
}

@media (max-width: 800px) {
	.section-title h2,
	.split h2 {
		font-size: 28px;
		line-height: 1.4;
	}
}

.module-reveal {
	/* marker class only — module itself does not animate, only its parts do */
}
.module-reveal-part {
	opacity: 0;
	transform: translate3d(0, 18px, 0) scale3d(1, 1, 1);
	transition:
		opacity 0.6s cubic-bezier(0.22, 0.8, 0.32, 1),
		transform 0.6s cubic-bezier(0.22, 0.8, 0.32, 1);
	transition-delay: var(--module-part-delay, 0ms);
	will-change: opacity, transform;
}
.module-reveal-part[data-variant="left"] {
	transform: translate3d(-32px, 0, 0) scale3d(1, 1, 1);
}
.module-reveal-part[data-variant="right"] {
	transform: translate3d(32px, 0, 0) scale3d(1, 1, 1);
}
.module-reveal-part[data-variant="down"] {
	transform: translate3d(0, -18px, 0) scale3d(1, 1, 1);
}
.module-reveal-part[data-variant="scale"] {
	transform: translate3d(0, 0, 0) scale3d(0.94, 0.94, 1);
}
.module-reveal.is-visible .module-reveal-part {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
	.module-reveal-part {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
@media (max-width: 800px) {
	.module-reveal-part[data-variant="left"],
	.module-reveal-part[data-variant="right"],
	.module-reveal-part[data-variant="scale"] {
		transform: translate3d(0, 18px, 0) scale3d(1, 1, 1);
	}
}
