/** Shopify CDN: Minification failed

Line 184:39 Cannot use type selector "__panel" directly after nesting selector "&"
Line 189:39 Cannot use type selector "__panel" directly after nesting selector "&"

**/
.sharp-hero {
	position: relative;
	overflow: hidden;
}
.sharp-hero__panel {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-width: 0;
	min-height: 400px;
}
.sharp-hero__panel-link {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
}
.sharp-hero__panel-link:focus-visible {
	outline: 3px solid #fff;
	outline-offset: -6px;
}
.sharp-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}
.sharp-hero__picture {
	display: block;
	width: 100%;
	height: 100%;
}
.sharp-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: high-quality;
}
.sharp-hero__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.sharp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	transition: all .3s ease; /* To transition the blur effect on hover */
}
.blur .sharp-hero__panel:hover .sharp-hero__overlay {
	backdrop-filter: blur(10px);
}
.sharp-hero__text-block {
	position: absolute;
	pointer-events: none;
	z-index: 2;
}
.sharp-hero__text-inner {
	line-height: 1.15;
	margin: 0;
	padding: 0;
	white-space: normal;
	word-break: break-word;
}
.sharp-hero__text-inner.h1, .sharp-hero__text-inner.h2, .sharp-hero__text-inner.h3, .sharp-hero__text-inner.h4, .sharp-hero__text-inner.h5, .sharp-hero__text-inner.h6 {
	margin: 0;
}
.sharp-hero__cta-block {
	position: absolute;
	pointer-events: auto;
	z-index: 3;
}
.sharp-hero__btn {
	display: inline-block;
	font-family: inherit;
	font-size: 0.867rem;
	letter-spacing: 0.07em;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	padding: .5rem;
    margin-top: 1rem;
}
.sharp-hero__btn--outlined {
	border-width: 2px;
	border-style: solid;
}
.sharp-hero__btn--text-link {
	padding: 0;
	background: transparent;
	border: none;
	border-bottom: 2px solid currentColor;
	border-radius: 0;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
}
.sharp-hero[data-design-mode='true'] .sharp-hero__overlay::before {
	content: '';
	position: absolute;
	top: 5%;
	right: 10%;
	bottom: 15%;
	left: 10%;
	border: 2px dashed rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.18);
	pointer-events: none;
	z-index: 900;
	border-radius: 2px;
}
.sharp-hero__empty-state {
	padding: 60px 32px;
	text-align: center;
	background: #f9f7f5;
	border: 2px dashed #c8b89a;
	border-radius: 4px;
	margin: 16px;
}
.sharp-hero__empty-state p {
	font-size: 1rem;
	color: #6b5744;
	margin: 0;
}
.sharp-hero__panels {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex-direction: row;
	align-items: stretch;
}
.sharp-hero__panels--mobile-reverse {
	flex-direction: column-reverse;
}
.sharp-hero__panels--mobile-hide-1 .sharp-hero__panel:first-child, .sharp-hero__panels--mobile-hide-2 .sharp-hero__panel:last-child {
	display: none;
}
.sharp-hero__panels--mobile-hide-1 .sharp-hero__panel:last-child, .sharp-hero__panels--mobile-hide-2 .sharp-hero__panel:first-child {
	display: block;
	flex: 1 1 100%;
	width: 100%;
}
.sharp-hero__panels--split {
	min-height: 700px;
}
.sharp-hero__panels--50-50 {
	gap: 0.5rem;
}
.sharp-hero__panels--50-50 .sharp-hero__panel {
	flex: 1 1 50%;
	width: 50%;
}
.sharp-hero__panels--33-66 .sharp-hero__panel:first-child, .sharp-hero__panels--66-33 .sharp-hero__panel:last-child {
	flex: 1 1 33.333%;
	width: 33.333%;
}
.sharp-hero__panels--66-33 .sharp-hero__panel:first-child, .sharp-hero__panels--33-66 .sharp-hero__panel:last-child {
	flex: 2 1 66.667%;
	width: 66.667%;
}

a.sharp-hero__panel-link {
	display: block;
}

@media (max-width: 980px) {
	.sharp-hero__panels--mobile-reverse {
		flex-direction: column-reverse;
    }

    .sharp-hero__panels--mobile-hide-1 &__panel:first-child,
    .sharp-hero__panels--mobile-hide-2 &__panel:last-child {
		display: none;
    }

    .sharp-hero__panels--mobile-hide-1 &__panel:last-child,
    .sharp-hero__panels--mobile-hide-2 &__panel:first-child {
		display: block;
		flex: 1 1 100%;
		width: 100%;
    }
}

@media (min-width: 980px) {
	.sharp-hero__panel {
		min-height: 400px;
	}

	.sharp-hero__panels {
		flex-direction: row;
		align-items: stretch;
	}

	.sharp-hero__panels--split {
		min-height: 700px;
    }

	.sharp-hero__panels--50-50 .sharp-hero__panel {
		flex: 1 1 50%;
		width: 50%;
    }

    .sharp-hero__panels--33-66 .sharp-hero__panel:first-child, .sharp-hero__panels--66-33 .sharp-hero__panel:last-child {
		flex: 1 1 33.333%;
		width: 33.333%;
    }

    .sharp-hero__panels--66-33 .sharp-hero__panel:first-child, .sharp-hero__panels--33-66 .sharp-hero__panel:last-child {
		flex: 2 1 66.667%;
		width: 66.667%;
    }
}