.page-header {
	position: relative;
	padding: 60px 0;
	overflow: hidden;
}

.page-header > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.page-header::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	z-index: 1;
	pointer-events: none;
}

.page-header .container {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	color: var(--one);
	font-size: 54px;
	line-height: 1.1;
	font-weight: 700;
	margin: 0;
	padding: 0;
}

.page .container:has(#breadcrumbs) {
	padding-bottom: 0;
}

.page #breadcrumbs {
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--four-light);
}

.page #breadcrumbs a {
	color: var(--two);
}

.page #breadcrumbs a:hover,
.page #breadcrumbs a:focus-visible {
	color: var(--four);
	outline: 2px solid var(--two);
	outline-offset: 2px;
}

.page #breadcrumbs .breadcrumb_last {
	color: var(--four);
	font-weight: 600;
}

@media (max-width: 1199.98px) {
	.page-header h1 {
		font-size: 48px;
	}
}

@media (max-width: 767.98px) {
	.page-header {
		padding: 40px 0;
	}

	.page-header h1 {
		font-size: 40px;
	}
}

@media (max-width: 575.98px) {
	.page-header h1 {
		font-size: 32px;
	}
}
