.header-cta {
	position: relative;
	width: 100%;
	height: calc(100vw * 380 / 640);
}

.header-cta .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-cta picture:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,50%);
	pointer-events: none;
}

.header-cta .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	gap: 12px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header-cta .icon {
	display: none;
	width: 54px;
	height: 54px;
}

.header-cta .title {
	color: var(--white);
	font-family: var(--sofia);
	font-weight: 700;
	font-size: 32px;
	line-height: 1;
}

.header-cta .subtitle {
	display: block;
	font-family: var(--sofia);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.25;
}

@media (min-width: 64em) {
	.header-cta .icon {
		display: block;
	}
	.header-cta {
		height: 100%;
		width: 100%;
	}
	.header-cta .title,
	.header-cta .subtitle {
		text-align: center;
	}
}
