.hero-custom-headline {
	--decoration-height: 20px;
	padding-bottom: var(--decoration-height);
	position: relative;
}

.hero-custom-headline::after {
	content: '';
	background-image: url(../svg/scalloped-pattern-light.svg);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc(var(--decoration-height) + 20px);
}

.hero-custom-headline .img-cont {
	position: relative;
}
.hero-custom-headline .img-cont img{
	width: 100%;
}

.hero-custom-headline .img-cont:before {
	content: '';
	pointer-events: none;
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,.3);
}

.hero-custom-headline .content-section {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-custom-headline .content-section .subtitle {
	color: var(--white);
	font-family: var(--font-sofia);
	text-transform: uppercase;
	font-size: 16px;
	line-height: calc(22/16);
	letter-spacing: calc(.8em/16);
	text-align: center;
	font-weight: var(--font-weight-bold);
	margin-bottom: 4px;
}

.hero-custom-headline .content-section .title {
	color: var(--white);
	font-size: 40px;
	line-height: 1;
	letter-spacing: calc(.8em/40);
	font-family: var(--font-display);
	font-weight: var(--font-weight-light);
	text-transform: uppercase;
	text-align: center;
}

.hero-custom-headline .content-section .button-default {
	margin-top: 12px;
}

@media (min-width: 64em) {
	.hero-custom-headline {
		--decoration-height: 60px;
	}

	.hero-custom-headline::after {
		height: calc(var(--decoration-height) + 28px);
	}

	.hero-custom-headline .content-section .subtitle {
		font-size: 25px;
		line-height: calc(29/25);
		letter-spacing: calc(.63em/25);
		margin-bottom: 8px;
	}

	.hero-custom-headline .content-section .title {
		font-size: 80px;
	}

	.hero-custom-headline .content-section .button-default {
		margin-left: 40px;
		margin-top: 17px;
	}
}