.c-trip-hero {
	position: relative;
	padding: 40px 20px;
	isolation: isolate;
}

@media (min-width:768px) {
	.c-trip-hero {
		padding: 84px 32px;
	}
}

:root {
	--bg: #0b0e13;
	--silver-1: #eef2f6;
	--silver-2: #d5dbe2;
	--silver-3: #9aa3ad;
	--glass: #0a0c10ee;
	--line: rgba(255, 255, 255, .08);
}

.c-trip-hero__glass {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	background: var(--glass);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, .55),
		inset 0 50px 120px rgba(0, 0, 0, .40),
		inset 0 -60px 120px rgba(0, 0, 0, .40);
}

.c-trip-hero__glass::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 22px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.c-trip-hero__glass::after {
	content: "";
	position: absolute;
	inset: -20% -12% auto -12%;
	height: 40%;
	background: radial-gradient(70% 100% at 50% 0%, rgba(255, 255, 255, .16), transparent 70%);
	pointer-events: none;
}

.c-trip-hero__inner {
	position: relative;
}

.c-trip-hero__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(120% 120% at 50% 60%, rgba(0, 0, 0, .55), transparent 60%);
}

.c-trip-hero__inner {
	display: grid;
	gap: 35px;
	align-items: stretch;
	z-index: 1;
	grid-template-columns: 1fr;
	padding: 0 28px;
}

.c-trip-hero__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(120% 120% at 50% 60%, rgba(0, 0, 0, .55), transparent 60%);
}

.c-trip-hero__inner {
	display: grid;
	gap: 35px;
	align-items: stretch;
	z-index: 1;
	grid-template-columns: 1fr;
	padding: 0 28px;
}

.c-trip-hero__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(120% 120% at 50% 60%, rgba(0, 0, 0, .55), transparent 60%);
}

.c-trip-hero__inner {
	display: grid;
	gap: 35px;
	align-items: stretch;
	z-index: 1;
	grid-template-columns: 1fr;
	padding: 0 28px;
}

@media (min-width:992px) {
	.c-trip-hero__inner {
		grid-template-columns: 1.25fr 1fr;
		gap: 45px;
		padding: 0 64px;
	}
}

.c-trip-hero__text {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 220px;
    padding: 0 20px;
}

.c-trip-hero__title {
	margin: 0 0 14px;
	font-weight: 900;
	line-height: 1.05;
	font-size: clamp(30px, 5.4vw, 56px);
	letter-spacing: .2px;
	color: var(--silver-1);
	text-shadow:
		0 1px 0 rgba(255, 255, 255, .07),
		0 10px 30px rgba(0, 0, 0, .45);
}

.c-trip-hero__lead {
	margin: 0;
	max-width: 58ch;
	font-size: clamp(16px, 2.2vw, 20px);
	line-height: 1.5;
	color: var(--silver-2);
	text-align: center;
}

.c-trip-hero__title::after {
	content: "";
	display: block;
	margin-top: 14px;
	width: 120px;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
	border-radius: 2px;
	opacity: .9;
}

.c-trip-hero__media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #0f1319;
	box-shadow: inset 0 0 0 1px var(--line), 0 18px 40px rgba(0, 0, 0, .55);
	transform: translateZ(0);
}

.c-trip-hero__img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	transition: transform .8s cubic-bezier(.2, .6, .2, 1), filter .6s ease;
	filter: saturate(1.06) contrast(1.05) brightness(.95);
}

.c-trip-hero__media:hover .c-trip-hero__img {
	transform: scale(1.06);
}

.c-trip-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	mix-blend-mode: screen;
	background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .10) 45%, transparent 70%);
	transform: translateX(-30%);
	transition: transform .9s ease;
}

.c-trip-hero__media:hover::after {
	transform: translateX(20%);
}

@media (max-width:991px) {
	.c-trip-hero__media {
		height: 280px;
	}

	.c-trip-hero__img {
		aspect-ratio: auto;
		height: 100%;
	}
}

@media (max-width:520px) {
	.c-trip-hero__inner {
		gap: 22px;
		padding: 0 5px;
	}

	.c-trip-hero__title {
		font-size: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.c-trip-hero__img,
	.c-trip-hero__media::after {
		transition: none;
	}
}

.c-trip-hero__glass {
	background: rgba(10, 12, 16, 0.60);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.45), inset 0 50px 120px rgba(0, 0, 0, 0.25),
		inset 0 -60px 120px rgba(0, 0, 0, 0.25);
}

.c-trip-hero__glass::before {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
}

.c-trip-hero__inner::before {
	opacity: .08;
}

.c-trip-hero__media {
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	overflow: visible;
}

.c-trip-hero__media::after {
	content: none;
}

.c-trip-hero__img {
	border-radius: 0;
	box-shadow: none;
	filter: none;
	aspect-ratio: auto;
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width:991px) {
	.c-trip-hero__media {
		height: auto;
	}
}

@media (min-width: 992px) {
	.c-trip-hero__inner {
		grid-template-columns: 1.05fr 1.55fr;
		gap: 28px;
		align-items: center;
	}

	.c-trip-hero__media {
		overflow: visible;
	}

	.c-trip-hero__img {
		width: 100%;
		height: auto;
		transform: translateX(-6%);
	}

	.c-trip-hero__media .c-trip-hero__img {
		max-width: 820px;
	}
}

@media (min-width: 1200px) {
	.c-trip-hero__inner {
		padding-right: 56px;
		padding-left: 56px;
	}
}

.c-trip-hero {
	--maxw: min(1320px, 96vw);
}

@media (min-width:1600px) {
	.c-trip-hero {
		--maxw: 1440px;
	}
}

.c-trip-hero__glass {
	max-width: var(--maxw);
	margin: 0 auto;
}

@media (min-width: 992px) {
	.c-trip-hero__inner {
		grid-template-columns: 1fr 1.5fr;
		gap: 25px;
		padding-left: 50px;
		padding-right: 50px;
	}

	.c-trip-hero__img {
		width: 100%;
		max-width: calc(var(--maxw) * 0.90);
		transform: translateX(-7%);
		height: auto;
	}
}

.c-trip-hero__title {
	font-size: clamp(32px, 5.8vw, 60px);
}

.c-trip-hero__lead {
	font-size: clamp(17px, 2.2vw, 22px);
	text-align: center;
}