.inner-banner,
.inner-banner * {
	box-sizing: border-box;
}

.inner-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 48px 30px 0;
	background: var(--inner-banner-background, #eaf1fa);
	color: #333;
}

.inner-banner__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
}

.inner-banner__heading {
	width: 100%;
	max-width: 912px;
	margin: 0;
	color: #333;
	font-size: 60px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.8px;
	text-align: center;
}

.inner-banner__heading-main,
.inner-banner__heading-highlight {
	display: inline;
}

.inner-banner__heading-main::after {
	content: ' ';
}

.inner-banner__heading-highlight {
	background: linear-gradient(
		90deg,
		#5130f1 0%,
		#c783d6 35%,
		#ff8666 65%,
		#fe3803 100%
	);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.inner-banner__media {
	position: relative;
	width: 100%;
	height: 490px;
	overflow: hidden;
	border-radius: 16px;
}

.inner-banner__media picture,
.inner-banner__media img {
	display: block;
	width: 100%;
	height: 100%;
}

.inner-banner__media img {
	object-fit: cover;
	object-position: center;
}

.inner-banner__image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 490px;
	padding: 24px;
	border: 1px dashed #1169ec;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.5);
	color: #333;
	text-align: center;
}

@media (max-width: 1024px) {
	.inner-banner__heading {
		font-size: 48px;
	}

	.inner-banner__media {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.inner-banner {
		padding: 64px 16px 32px;
	}

	.inner-banner__inner {
		gap: 48px;
	}

	.inner-banner__heading {
		max-width: 358px;
		font-size: 40px;
		line-height: 1.1;
		letter-spacing: -1.2px;
	}

	.inner-banner__media {
		width: 100%;
		height: auto;
		aspect-ratio: 358 / 240;
		border-radius: 16px;
	}

	.inner-banner__media img {
		object-position: center;
	}

	.inner-banner__image-placeholder {
		height: auto;
		aspect-ratio: 358 / 240;
	}
}