.wda-hero {
	--wda-primary: #fc5e51;
	--wda-primary-hover: #ff7268;
	--wda-dark: #2b2b2b;
	--wda-white: #ffffff;
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	overflow: hidden;
	background: var(--wda-dark);
	isolation: isolate;
}

.wda-hero *,
.wda-hero *::before,
.wda-hero *::after {
	box-sizing: border-box;
}

.wda-hero__media,
.wda-hero__overlay {
	position: absolute;
	inset: 0;
}

.wda-hero__media {
	z-index: -2;
	overflow: hidden;
}

.wda-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% var(--wda-hero-position-y, 50%);
	transform-origin: center;
}

.wda-hero__overlay {
	z-index: -1;
	background: linear-gradient(
		90deg,
		rgba(25, 25, 25, 0.88) 0%,
		rgba(25, 25, 25, 0.70) 48%,
		rgba(25, 25, 25, 0.25) 100%
	);
}

.wda-hero--inner {
	min-height: 55vh;
}

.wda-hero--inner .wda-hero__badge {
	background: rgba(255, 255, 255, 0.92);
	color: var(--wda-primary);
}

.wda-hero--inner .wda-hero__badge-dot {
	display: none;
}

.wda-hero__container {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-inline: auto;
}

.wda-hero__content {
	width: 100%;
}

.wda-hero__badge {
	display: inline-flex;
	align-items: center;
	background: var(--wda-primary);
	color: var(--wda-white);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.wda-hero__badge-dot {
	width: 8px;
	height: 8px;
	flex: 0 0 8px;
	border-radius: 50%;
	background: var(--wda-white);
	animation: wda-hero-pulse 1.7s ease-in-out infinite;
}

@keyframes wda-hero-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.45;
		transform: scale(0.78);
	}
}

.wda-hero__heading {
	display: block;
	color: var(--wda-white);
	font-size: clamp(42px, 6vw, 64px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.08;
	white-space: normal;
}

.wda-hero__heading-before,
.wda-hero__heading-highlight,
.wda-hero__heading-after {
	display: block;
}

.wda-hero__heading-highlight {
	color: var(--wda-primary);
}

.wda-hero__sub-heading {
	display: block;
	color: var(--wda-white);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
}

.wda-hero__description {
	display: block;
	color: rgba(255, 255, 255, 0.90);
	font-size: 18px;
	line-height: 1.75;
}

.wda-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.wda-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
	text-decoration: none;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.wda-hero__button:hover {
	transform: translateY(-2px);
}

.wda-hero__button--primary {
	background: var(--wda-primary);
	color: var(--wda-white);
}

.wda-hero__button--primary:hover {
	background: var(--wda-primary-hover);
	color: var(--wda-white);
}

.wda-hero__button--secondary {
	border-color: var(--wda-white);
	background: transparent;
	color: var(--wda-white);
}

.wda-hero__button--secondary:hover {
	background: var(--wda-white);
	color: var(--wda-dark);
}

.wda-hero__button-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.wda-hero__button-icon i,
.wda-hero__button-icon svg {
	display: block;
	flex: 0 0 auto;
}

.wda-hero__button-text {
	display: inline-block;
}

.wda-hero a:focus-visible {
	outline: 3px solid rgba(252, 94, 81, 0.55);
	outline-offset: 4px;
}

@media (max-width: 767px) {
	.wda-hero {
		min-height: auto;
	}

	.wda-hero__overlay {
		background: rgba(25, 25, 25, 0.76);
	}

	.wda-hero__heading {
		font-size: clamp(38px, 11vw, 52px);
	}

	.wda-hero__description {
		font-size: 16px;
	}

	.wda-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.wda-hero__button {
		width: 100%;
	}
}
