.product-hero {
	padding-top: 0;
	position: relative;
}
.product-hero__main {
	position: relative;
	min-height: 80vh;
	overflow: hidden;
	border-radius: var(--radius-l);
	display: flex;
	align-items: flex-end;
}
@media screen and (max-width: 1025px) {
	.product-hero__main {
		min-height: unset;
	}
	.product-hero__main {
		padding-top: 23rem;
	}
}
.product-hero > div.content--full {
	padding: 0 15px;
}

.product-hero__main > img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translateZ(0);
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.product-hero__main > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

.product-hero__main h1 {
	color: white;
}
.product-hero__main-content {
	padding: 2rem;
	margin: 2rem;
	border-radius: var(--radius-m);
	flex-grow: 1;
	border: 1px solid white;
	z-index: 10;
}
.product-hero__main::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 1) 100%);
	opacity: 0.5;
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1;
}

.product-hero__main-content-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: flex-start;
	max-width: 400px;
	justify-content: flex-end;
	align-content: flex-start;
}

@media screen and (max-width: 1025px) {
	.product-hero__main-content-links {
		flex-direction: column;
	}
}

/* Sidebar */
.product-hero__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.product-hero__sidebar h2 {
	margin-bottom: var(--space-xs);
}
@media screen and (max-width: 1025px) {
	.product-hero__sidebar {
		gap: var(--space-s);
	}
}
.product-sidebar__inner {
	border: 1px solid var(--primary);
	border-radius: var(--radius-l);
	padding: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.product-hero .sidebar-overview p + p {
	border-top: var(--border);
}

.product-sidebar__inner-list p {
	padding: 8px 0;
	position: relative;
}

.product-hero .sidebar-standards p {
	padding-left: 16px;
}
.product-hero .sidebar-standards p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	position: absolute;
	background: var(--primary-dark);
	border-radius: 50vmax;
	aspect-ratio: 1/1;
	width: 5px;
}
