.cc-hero-banner {
	padding: 1rem 0;
}

.cc-hero-banner__inner {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: var(--cc-hero-h, 420px);
	min-height: var(--cc-hero-h, 420px);
	border-radius: 2rem;
	background: var(--cc-hero-fallback, #111);
	--cc-hero-pad-y: 2.4rem;
	--cc-hero-pad-x: 1.6rem;
}

.cc-hero-banner--slider .swiper-container {
	overflow: hidden;
	border-radius: 2rem;
}

.cc-hero-banner--slider .cc-hero-banner__inner {
	border-radius: 0;
}

.cc-hero-banner__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.cc-hero-banner__bg img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	object-fit: cover;
	object-position: center;
}

.cc-hero-banner--img-left .cc-hero-banner__bg img,
.cc-hero-banner--img-right .cc-hero-banner__bg img {
	width: auto;
	max-width: none;
	object-fit: contain;
}

.cc-hero-banner--img-left .cc-hero-banner__bg img {
	left: 0;
	right: auto;
	object-position: left center;
}

.cc-hero-banner--img-right .cc-hero-banner__bg img {
	left: auto;
	right: 0;
	object-position: right center;
}

.cc-hero-banner__hit {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
}

.cc-hero-banner__overlay,
.cc-hero-banner__shade {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

.cc-hero-banner__overlay {
	z-index: 1;
	background: var(--cc-hero-overlay, transparent);
}

.cc-hero-banner__shade {
	z-index: 1;
}

.cc-hero-banner--top-left.cc-hero-banner--light .cc-hero-banner__shade,
.cc-hero-banner--bottom-left.cc-hero-banner--light .cc-hero-banner__shade {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.16) 46%, transparent 72%);
}

.cc-hero-banner--top-right.cc-hero-banner--light .cc-hero-banner__shade,
.cc-hero-banner--bottom-right.cc-hero-banner--light .cc-hero-banner__shade {
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.16) 46%, transparent 72%);
}

.cc-hero-banner--center.cc-hero-banner--light .cc-hero-banner__shade {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 55%, transparent 80%);
}

.cc-hero-banner--top-left.cc-hero-banner--dark .cc-hero-banner__shade,
.cc-hero-banner--bottom-left.cc-hero-banner--dark .cc-hero-banner__shade {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 70%);
}

.cc-hero-banner--top-right.cc-hero-banner--dark .cc-hero-banner__shade,
.cc-hero-banner--bottom-right.cc-hero-banner--dark .cc-hero-banner__shade {
	background: linear-gradient(270deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 70%);
}

.cc-hero-banner--center.cc-hero-banner--dark .cc-hero-banner__shade {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 50%, transparent 75%);
}

.cc-hero-banner__content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
}

.cc-hero-banner__copy {
	display: contents;
}

.cc-hero-banner__title,
.cc-hero-banner__subtitle,
.cc-hero-banner__cta,
.cc-hero-banner__stack {
	position: absolute;
	z-index: 2;
	margin: 0;
	pointer-events: auto;
	box-sizing: border-box;
}

.cc-hero-banner__stack {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	width: fit-content;
}

.cc-hero-banner__stack.cc-hero-banner__pos-top-left,
.cc-hero-banner__stack.cc-hero-banner__pos-bottom-left {
	align-items: flex-start;
}

.cc-hero-banner__stack.cc-hero-banner__pos-top-right,
.cc-hero-banner__stack.cc-hero-banner__pos-bottom-right {
	align-items: flex-end;
}

.cc-hero-banner__stack.cc-hero-banner__pos-center {
	align-items: center;
}

.cc-hero-banner__stack .cc-hero-banner__title,
.cc-hero-banner__stack .cc-hero-banner__subtitle {
	position: static;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	translate: none;
	max-width: 100%;
}

.cc-hero-banner__pos-top-left {
	top: calc(var(--cc-hero-pad-y) + var(--cc-hero-oy, 0px));
	left: calc(var(--cc-hero-pad-x) + var(--cc-hero-ox, 0px));
	right: auto;
	bottom: auto;
	text-align: left;
}

.cc-hero-banner__pos-top-right {
	top: calc(var(--cc-hero-pad-y) + var(--cc-hero-oy, 0px));
	right: calc(var(--cc-hero-pad-x) + var(--cc-hero-ox, 0px));
	left: auto;
	bottom: auto;
	text-align: right;
}

.cc-hero-banner__pos-bottom-left {
	bottom: calc(var(--cc-hero-pad-y) + var(--cc-hero-oy, 0px));
	left: calc(var(--cc-hero-pad-x) + var(--cc-hero-ox, 0px));
	top: auto;
	right: auto;
	text-align: left;
}

.cc-hero-banner__pos-bottom-right {
	bottom: calc(var(--cc-hero-pad-y) + var(--cc-hero-oy, 0px));
	right: calc(var(--cc-hero-pad-x) + var(--cc-hero-ox, 0px));
	top: auto;
	left: auto;
	text-align: right;
}

.cc-hero-banner__pos-center {
	top: calc(50% + var(--cc-hero-oy, 0px));
	left: calc(50% + var(--cc-hero-ox, 0px));
	right: auto;
	bottom: auto;
	text-align: center;
	translate: -50% -50%;
}

.cc-hero-banner__pos-top-left,
.cc-hero-banner__pos-bottom-left {
	max-width: calc(100% - 2 * var(--cc-hero-pad-x));
}

.cc-hero-banner__pos-top-right,
.cc-hero-banner__pos-bottom-right {
	max-width: calc(100% - 2 * var(--cc-hero-pad-x));
}

.cc-hero-banner__title {
	margin: 0;
	width: fit-content;
	max-width: 100%;
	font-size: clamp(2.4rem, 7vw, 3.6rem);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.03em;
	overflow-wrap: break-word;
	word-break: normal;
	hyphens: none;
	text-wrap: balance;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.cc-hero-banner__title--display {
	max-width: min(92rem, 65%);
	font-size: clamp(2.8rem, 8vw, 7.2rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.cc-hero-banner__title--compact {
	max-width: min(72rem, 48%);
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.12;
	margin-bottom: 0.8rem;
}

.cc-hero-banner__title--single-line {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-line-clamp: unset;
}

.cc-hero-banner--light .cc-hero-banner__title {
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.cc-hero-banner__subtitle {
	margin: 0;
	width: fit-content;
	max-width: 100%;
	font-size: 1.5rem;
	line-height: 1.45;
	font-weight: 400;
	letter-spacing: 0.01em;
	opacity: 0.82;
}

.cc-hero-banner__subtitle--lead {
	max-width: min(56rem, 100%);
	font-size: clamp(1.6rem, 4vw, 2.1rem);
	line-height: 1.4;
	opacity: 0.9;
}

.cc-hero-banner__subtitle--caption {
	max-width: min(40rem, 100%);
	font-size: 1.2rem;
	line-height: 1.35;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.75;
}

.cc-hero-banner__subtitle--wide {
	max-width: min(64rem, 100%);
}

.cc-hero-banner__subtitle.cc-hero-banner__align-center,
.cc-hero-banner__subtitle.cc-hero-banner__align-right {
	max-width: 100%;
}

.cc-hero-banner--light .cc-hero-banner__subtitle {
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.cc-hero-banner__cta {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	min-height: 4.4rem;
	padding: 0 2rem;
	border: 2px solid transparent;
	border-radius: var(--cc-hero-cta-r, 999px);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cc-hero-banner--light .cc-hero-banner__cta {
	color: #111;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cc-hero-banner--dark .cc-hero-banner__cta {
	color: #fff;
	background: #111;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.cc-hero-banner--light .cc-hero-banner__cta--outline {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.72);
	box-shadow: none;
}

.cc-hero-banner--dark .cc-hero-banner__cta--outline {
	color: #111;
	background: transparent;
	border-color: rgba(17, 17, 17, 0.55);
	box-shadow: none;
}

.cc-hero-banner--light .cc-hero-banner__cta--soft {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	box-shadow: none;
	backdrop-filter: blur(6px);
}

.cc-hero-banner--dark .cc-hero-banner__cta--soft {
	color: #111;
	background: rgba(17, 17, 17, 0.08);
	box-shadow: none;
	backdrop-filter: blur(6px);
}

.cc-hero-banner__cta:hover,
.cc-hero-banner__cta:focus {
	text-decoration: none;
	translate: 0 -2px;
}

.cc-hero-banner__cta.cc-hero-banner__pos-center:hover,
.cc-hero-banner__cta.cc-hero-banner__pos-center:focus {
	translate: -50% calc(-50% - 2px);
}

.cc-hero-banner--light .cc-hero-banner__cta:hover,
.cc-hero-banner--light .cc-hero-banner__cta:focus {
	color: #111;
	background: #fff;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.cc-hero-banner--light .cc-hero-banner__cta--outline:hover,
.cc-hero-banner--light .cc-hero-banner__cta--outline:focus {
	color: #111;
	background: #fff;
	border-color: #fff;
}

.cc-hero-banner--light .cc-hero-banner__cta--soft:hover,
.cc-hero-banner--light .cc-hero-banner__cta--soft:focus {
	background: rgba(255, 255, 255, 0.28);
}

.cc-hero-banner--dark .cc-hero-banner__cta:hover,
.cc-hero-banner--dark .cc-hero-banner__cta:focus {
	color: #fff;
	background: #1a1a1a;
}

.cc-hero-banner--dark .cc-hero-banner__cta--outline:hover,
.cc-hero-banner--dark .cc-hero-banner__cta--outline:focus {
	color: #fff;
	background: #111;
	border-color: #111;
}

.cc-hero-banner--dark .cc-hero-banner__cta--soft:hover,
.cc-hero-banner--dark .cc-hero-banner__cta--soft:focus {
	background: rgba(17, 17, 17, 0.16);
}

.cc-hero-banner__cta-icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
}

.cc-hero-banner__cta-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cc-hero-banner--light {
	color: #fff;
}

.cc-hero-banner--dark {
	color: #1a1a1a;
}

.cc-hero-banner--has-features {
	--cc-hero-feat-h: clamp(8rem, calc(var(--cc-hero-h) * 0.2), 13rem);
}

.cc-hero-banner--has-features .cc-hero-banner__pos-bottom-left,
.cc-hero-banner--has-features .cc-hero-banner__pos-bottom-right {
	bottom: calc(var(--cc-hero-feat-h) + var(--cc-hero-pad-y) + var(--cc-hero-oy, 0px));
}

.cc-hero-banner__features {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	width: 80%;
	max-width: 80%;
	box-sizing: border-box;
	margin: 0 auto;
	gap: clamp(1.2rem, calc(var(--cc-hero-h) * 0.04), 3.2rem) clamp(1.6rem, 2.4vw, 3.2rem);
	padding: 0 0 clamp(1.6rem, calc(var(--cc-hero-h) * 0.1), 5.6rem);
	pointer-events: none;
}

.cc-hero-banner__feature {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	flex: 0 1 auto;
	min-width: 0;
	text-align: left;
}

.cc-hero-banner__feature-num {
	flex-shrink: 0;
	margin: 0;
	padding-top: 0.15em;
	font-size: clamp(1.2rem, calc(var(--cc-hero-h) * 0.032), 1.5rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
}

.cc-hero-banner--light .cc-hero-banner__feature-num {
	color: #FFD540;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.cc-hero-banner--dark .cc-hero-banner__feature-num {
	color: #C48A00;
}

.cc-hero-banner__feature-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	margin: 0;
	width: clamp(2.2rem, calc(var(--cc-hero-h) * 0.055), 2.8rem);
	height: clamp(2.2rem, calc(var(--cc-hero-h) * 0.055), 2.8rem);
}

.cc-hero-banner__feature-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cc-hero-banner--light .cc-hero-banner__feature-icon {
	color: #FFD540;
	filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.28));
}

.cc-hero-banner--dark .cc-hero-banner__feature-icon {
	color: #C48A00;
}

.cc-hero-banner__feature-text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: clamp(1.3rem, calc(var(--cc-hero-h) * 0.034), 1.6rem);
	font-weight: 400;
	line-height: 1.3;
	opacity: 0.92;
}

.cc-hero-banner--light .cc-hero-banner__feature-text {
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.cc-hero-banner--slider .swiper-control,
.cc-hero-banner--slider .swiper-pagination {
	z-index: 3;
}

@media (max-width: 767px) {
	.cc-hero-banner {
		padding: 0.8rem 0;
	}

	.cc-hero-banner__inner {
		--cc-hero-pad-y: 1.8rem;
		--cc-hero-pad-x: 1.6rem;
		display: flex;
		flex-direction: column;
		height: auto;
		min-height: min(40rem, 64vh);
		border-radius: 1.2rem;
	}

	.cc-hero-banner--slider .swiper-container {
		border-radius: 1.2rem;
	}

	.cc-hero-banner--img-left .cc-hero-banner__bg img,
	.cc-hero-banner--img-right .cc-hero-banner__bg img {
		width: 100%;
		left: 0;
		right: 0;
		object-fit: cover;
		object-position: center;
	}

	.cc-hero-banner__content {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		flex: 1 1 auto;
		padding: 2.2rem 1.8rem 0;
		pointer-events: none;
	}

	.cc-hero-banner__copy {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		width: 100%;
		max-width: 34rem;
		margin: 0;
		text-align: left;
	}

	.cc-hero-banner__title,
	.cc-hero-banner__subtitle,
	.cc-hero-banner__cta,
	.cc-hero-banner__stack,
	.cc-hero-banner__cta.cc-hero-banner__pos-center,
	.cc-hero-banner__cta.cc-hero-banner__pos-top-right,
	.cc-hero-banner__cta.cc-hero-banner__pos-bottom-right,
	.cc-hero-banner__cta.cc-hero-banner__pos-top-left,
	.cc-hero-banner__cta.cc-hero-banner__pos-bottom-left {
		position: static !important;
		top: auto !important;
		right: auto !important;
		bottom: auto !important;
		left: auto !important;
		translate: none !important;
		transform: none !important;
		align-self: flex-start;
		max-width: 100%;
		width: auto;
		text-align: left;
	}

	.cc-hero-banner__stack {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
		width: 100%;
	}

	.cc-hero-banner__title,
	.cc-hero-banner__title--display,
	.cc-hero-banner__title--compact,
	.cc-hero-banner__title--single-line {
		display: -webkit-box;
		width: 100%;
		max-width: 100%;
		margin: 0;
		font-size: clamp(2.1rem, 6.2vw, 2.6rem);
		line-height: 1.2;
		letter-spacing: -0.03em;
		text-wrap: balance;
		white-space: normal;
		text-overflow: unset;
		overflow: hidden;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}

	.cc-hero-banner__subtitle,
	.cc-hero-banner__subtitle--lead,
	.cc-hero-banner__subtitle--caption,
	.cc-hero-banner__subtitle--wide {
		width: 100%;
		max-width: 100%;
		font-size: 1.25rem;
		line-height: 1.4;
		letter-spacing: 0.04em;
		opacity: 0.88;
	}

	.cc-hero-banner__cta,
	.cc-hero-banner__cta--block,
	.cc-hero-banner__cta.cc-hero-banner__pos-center {
		width: auto;
		min-height: 4.2rem;
		margin-top: 0.4rem;
		padding: 0 2rem;
		font-size: 1.4rem;
		white-space: nowrap;
	}

	.cc-hero-banner--has-features .cc-hero-banner__pos-bottom-left,
	.cc-hero-banner--has-features .cc-hero-banner__pos-bottom-right {
		bottom: auto;
	}

	.cc-hero-banner__features {
		position: relative;
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-items: start;
		align-items: start;
		width: 100%;
		max-width: 100%;
		margin: 0;
		gap: 0.8rem 1.2rem;
		padding: 1.2rem var(--cc-hero-pad-x) 1.8rem;
		overflow: visible;
	}

	.cc-hero-banner__feature {
		flex: none;
		max-width: none;
		min-width: 0;
		align-items: center;
		gap: 0.7rem;
	}

	.cc-hero-banner__feature:nth-child(3):last-child {
		grid-column: 1 / -1;
		justify-self: center;
	}

	.cc-hero-banner__feature-icon,
	.cc-hero-banner__feature-num {
		width: 2rem;
		height: 2rem;
		font-size: 1.2rem;
	}

	.cc-hero-banner__feature-text {
		font-size: 1.25rem;
		line-height: 1.3;
	}
}

@media (min-width: 768px) {
	.cc-hero-banner__inner {
		--cc-hero-pad-y: 8.8rem;
		--cc-hero-pad-x: 9.6rem;
	}

	.cc-hero-banner__stack {
		gap: 1.6rem;
	}

	.cc-hero-banner__title {
		max-width: min(92rem, 58%);
		font-size: clamp(3.2rem, 4.8vw, 5.6rem);
	}

	.cc-hero-banner__subtitle {
		max-width: 52rem;
		font-size: 1.8rem;
	}

	.cc-hero-banner__subtitle.cc-hero-banner__pos-center,
	.cc-hero-banner__subtitle.cc-hero-banner__pos-top-right,
	.cc-hero-banner__subtitle.cc-hero-banner__pos-bottom-right {
		max-width: 46rem;
	}

	.cc-hero-banner__subtitle--wide {
		max-width: 64rem;
	}

	.cc-hero-banner__subtitle--lead {
		font-size: 2rem;
	}

	.cc-hero-banner__cta {
		min-height: 5.6rem;
		padding: 0 3rem;
		font-size: 1.7rem;
	}
}
