.prd-single-head {
	display: block;
	box-sizing: border-box;

	width: auto;
	min-width: 100%;
	max-width: none;

	min-height: 400px;

	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

@supports (width: 100svw) {
	.prd-single-head {
		margin-left: calc(50% - 50svw);
		margin-right: calc(50% - 50svw);
	}
}

@media (max-width: 767px) {
	.prd-single-head {
		min-height: 250px;
	}
}