.hero_content_overlay-layout {
	position: relative;
	color: #ffffff;
	overflow: hidden;
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero_content_overlay-layout .hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero_content_overlay-layout::before {
	content: ''; position: absolute; inset: 0; z-index: 5;
	background-color: rgba(0, 0, 0, 0.25);
}
.hero_content_overlay-layout .pk-row {
	position: relative; z-index: 10;
}
.hero_content_overlay-layout .read-more {
	position: absolute; bottom: var(--pk-row-spacing); right: 0; z-index: 10;
	display: flex; align-items: center; gap: 0.5em;
	appearance: none; -webkit-appearance: none; -moz-appearance: none;
	background: transparent; border: none; color: #ffffff;
	padding: 0; cursor: pointer;
}

.hero_content_overlay-layout h1{
	color: #ffffff;
}

@media screen and (max-width: 992px) {
	.hero_content_overlay-layout .read-more {
		bottom: 1rem; right: 1rem;
	}
}