.workscout-loan-hero {
	--workscout-loan-accent: var(--workscout-primary-color, #26ae61);
	--workscout-loan-media-width: 45%;
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	background: #fff;
	color: #555;
}

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

.workscout-loan-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, var(--workscout-loan-media-width)) minmax(0, 1fr);
	align-items: center;
	gap: 72px;
	width: 100%;
	max-width: none;
	margin: 0 auto;
}

.workscout-loan-hero__media {
	position: relative;
	width: 100%;
	height: 680px;
	overflow: hidden;
	border-radius: 10px;
	background: #eee;
}

.workscout-loan-hero__media img,
.workscout-loan-hero .workscout-loan-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.04);
	transition: transform 1400ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.workscout-loan-hero.is-visible .workscout-loan-hero__media img {
	transform: scale(1);
}

.workscout-loan-hero__content {
	min-width: 0;
}

.workscout-loan-hero .workscout-loan-hero__kicker {
	margin: 0 0 18px;
	color: #888;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 20px;
	text-transform: uppercase;
}

.workscout-loan-hero__title {
	max-width: 620px;
	margin: 0;
	color: #111;
	font-size: 48px;
	font-weight: 500;
	letter-spacing: -0.5px;
	line-height: 54px;
	text-wrap: balance;
}

.workscout-loan-hero__accent {
	position: relative;
	display: inline-block;
	color: var(--workscout-loan-accent);
}

.workscout-loan-hero__underline {
	position: absolute;
	inset-inline-start: 0;
	bottom: -7px;
	display: block;
	width: 100%;
	height: 12px;
	overflow: visible;
	pointer-events: none;
}

.workscout-loan-hero__underline path {
	fill: none;
	stroke: var(--workscout-loan-accent);
	stroke-width: 7;
	stroke-linecap: round;
	stroke-dasharray: 230;
	stroke-dashoffset: 230;
	animation: workscout-loan-hero-draw 900ms ease forwards 350ms;
}

.workscout-loan-hero--underline-straight .workscout-loan-hero__accent {
	text-decoration-line: underline;
	text-decoration-color: currentColor;
	text-decoration-color: color-mix(in srgb, currentColor 22%, transparent);
	text-decoration-thickness: 4px;
	text-underline-offset: 8px;
}

.workscout-loan-hero--underline-straight .workscout-loan-hero__underline {
	display: none;
}

.workscout-loan-hero .workscout-loan-hero__lead {
	position: relative;
	max-width: 560px;
	margin: 24px 0 34px;
	padding-top: 0;
	color: #555;
	font-size: 19px;
	font-weight: 300;
	line-height: 30px;
}

.workscout-loan-hero--separator .workscout-loan-hero__lead {
	padding-top: 24px;
}

.workscout-loan-hero--separator .workscout-loan-hero__lead::before {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	display: block;
	width: 60px;
	height: 2px;
	border-radius: 2px;
	background: var(--workscout-loan-accent);
	content: "";
}

.workscout-loan-hero__list {
	margin: 0 0 40px;
	padding: 0;
	border-top: 1px solid #e0e0e0;
	list-style: none;
}

.workscout-loan-hero__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0;
	padding: 20px 0;
	border-bottom: 1px solid #e0e0e0;
	color: #555;
	font-size: 15px;
	line-height: 23px;
	text-align: start;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.workscout-loan-hero.is-visible .workscout-loan-hero__item {
	opacity: 1;
	transform: none;
}

.workscout-loan-hero.is-visible .workscout-loan-hero__item:nth-child(1) { transition-delay: 150ms; }
.workscout-loan-hero.is-visible .workscout-loan-hero__item:nth-child(2) { transition-delay: 300ms; }
.workscout-loan-hero.is-visible .workscout-loan-hero__item:nth-child(3) { transition-delay: 450ms; }
.workscout-loan-hero.is-visible .workscout-loan-hero__item:nth-child(4) { transition-delay: 600ms; }
.workscout-loan-hero.is-visible .workscout-loan-hero__item:nth-child(5) { transition-delay: 750ms; }
.workscout-loan-hero.is-visible .workscout-loan-hero__item:nth-child(n+6) { transition-delay: 900ms; }

.workscout-loan-hero__item strong {
	color: #111;
	font-weight: 500;
}

.workscout-loan-hero__icon {
	display: inline-flex;
	flex: 0 0 22px;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	color: var(--workscout-loan-accent);
	font-size: 18px;
	line-height: 22px;
}

.workscout-loan-hero__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
	color: inherit;
}

.workscout-loan-hero__actions {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.workscout-loan-hero .workscout-loan-hero__button,
.elementor .workscout-loan-hero .workscout-loan-hero__button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 7px 7px 7px 27px;
	border: 0;
	border-radius: 6px;
	background: var(--workscout-loan-accent);
	box-shadow: none;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height: 22px;
	text-decoration: none;
	transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.workscout-loan-hero .workscout-loan-hero__button:hover,
.workscout-loan-hero .workscout-loan-hero__button:focus-visible,
.elementor .workscout-loan-hero .workscout-loan-hero__button:hover,
.elementor .workscout-loan-hero .workscout-loan-hero__button:focus-visible {
	background: color-mix(in srgb, var(--workscout-loan-accent) 88%, #000);
	box-shadow: none;
	color: #fff;
	text-decoration: none;
	transform: none;
}

.workscout-loan-hero__button-arrow {
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	overflow: hidden;
	border-radius: 6px;
	background: #fff;
	color: var(--workscout-loan-accent);
}

.workscout-loan-hero__button-arrow svg,
.workscout-loan-hero__button:hover .workscout-loan-hero__button-arrow svg,
.workscout-loan-hero__button:focus-visible .workscout-loan-hero__button-arrow svg {
	display: block;
	width: 16px;
	height: 16px;
	transform: none;
	transition: none;
}

.workscout-loan-hero__note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #111;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.workscout-loan-hero__note-icon {
	display: inline-flex;
	flex: 0 0 16px;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.workscout-loan-hero__note-icon svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: currentColor;
	color: inherit;
}

@keyframes workscout-loan-hero-draw {
	to { stroke-dashoffset: 0; }
}

@media (max-width: 900px) {
	.workscout-loan-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.workscout-loan-hero__media {
		max-width: 560px;
		height: 420px;
	}

	.workscout-loan-hero--mobile-content_first .workscout-loan-hero__content {
		order: -1;
	}

	.workscout-loan-hero__title {
		font-size: 38px;
		line-height: 44px;
	}
}

@media (max-width: 520px) {
	.workscout-loan-hero__media {
		height: 360px;
	}

	.workscout-loan-hero__title {
		font-size: 32px;
		line-height: 38px;
	}

	.workscout-loan-hero__actions {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.workscout-loan-hero__item,
	.workscout-loan-hero__media img,
	.workscout-loan-hero__underline path {
		animation: none;
		transition: none;
	}

	.workscout-loan-hero__item {
		opacity: 1;
		transform: none;
	}

	.workscout-loan-hero__media img {
		transform: none;
	}

	.workscout-loan-hero__underline path {
		stroke-dashoffset: 0;
	}
}
