/**
 * Layout: Hero - Locatie detail
 * Slug: hero_locatie_detail
 */
.hero_locatie_detail-layout + .flex-layout {
	background-color: transparent;
}
.hero_locatie_detail-layout {
	position: relative;
	z-index: 10;
    padding-top: var(--pk-hero-top-spacing);
	background-color: #ffffff;
	padding-bottom: 0;
	border-radius: 2rem;
}

.hero_locatie_detail-layout .location-meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-block: 1.5rem 2rem;
}
.hero_locatie_detail-layout .location-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 1em;
}
.hero_locatie_detail-layout .location-meta .meta-item svg {
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}
.hero_locatie_detail-layout .image-col {
	position: relative;
	margin-bottom: -4rem;
}
.hero_locatie_detail-layout .image-col img:not(.piekuren) {
	mask: url('../../../../assets/images/imageMask.svg');
	mask-size: cover;
	mask-position: center;
	mask-repeat: no-repeat;
	aspect-ratio: 22/27;
	object-fit: cover;
	width: 100%;
}
.hero_locatie_detail-layout .image-col .piekuren {
	position: absolute;
	bottom: 20%;
	left: 0;
	translate: -25%;
	z-index: 2;
	width: calc(29 * var(--su));
	border-radius: 2rem;
	max-width: 100%;
	box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 992px) {
	.hero_locatie_detail-layout .image-col {
		margin-top: 4rem;
	}
	.hero_locatie_detail-layout .image-col .piekuren {
		bottom: auto;
		top: 0;
		left: auto;
		right: 0;
		translate: 0 -2rem;
		width: 350px;
	}
}

@media screen and (max-width: 767px) {
	.hero_locatie_detail-layout .image-col {
		margin-top: 1.5rem;
	}
	.hero_locatie_detail-layout .image-col .piekuren {
		display: none;
	}
}