body .hero_home-layout {
	margin-block: 0;
}
.hero_home-layout a.pk-col {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: max(500px, calc(100vh - (var(--pk-header-height, 120px) + 100px)));
	/* aspect-ratio: 5/6; */
	text-decoration: none;
	background-size: cover;
	background-position: top center;
}

.hero_home-layout .pk-col .overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.hero_home-layout .pk-col .pk-heading {
	position: relative;
	z-index: 2;
	color: #ffffff;
	text-align: center;
	margin: 0;
	transition: opacity 0.3s ease;
}

.hero_home-layout button {
	margin-inline: auto;
	appearance: none;
	cursor: pointer;
	display: block;
	margin-top: 0.75rem;
	text-transform: uppercase;
	background: none;
	border: none;
	border-bottom: 1px solid currentColor;
	padding: 0;
}

@media screen and (min-width: 993px) {
	.hero_home-layout .pk-col:not(:hover) .pk-heading {
		opacity: 0;
	}
}

@media screen and (max-width: 767px) {
	.hero_home-layout .pk-grid-container a.pk-col {
		height: auto;
		aspect-ratio: 3/2;
	}
}