.n3-page-title {
	--n3-page-title-primary: var(--fs-color-primary, var(--primary-color, #ffb400));
	--n3-page-title-bg: url("../img/page-title-circuit-bg.png");
	background: #05070a;
	color: #fff;
	min-height: var(--n3-page-title-height, 250px);
	overflow: hidden;
	padding: 28px 0;
	position: relative;
}

.n3-page-title::after {
	background-image: var(--n3-page-title-bg);
	background-position: center right;
	background-size: cover;
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.n3-page-title::before {
	background: linear-gradient(90deg, #05070a 0%, #05070a 36%, rgba(5, 7, 10, .9) 50%, rgba(5, 7, 10, .36) 78%, rgba(5, 7, 10, .1) 100%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.n3-page-title__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	max-width: 1180px;
	min-height: calc(var(--n3-page-title-height, 250px) - 56px);
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.n3-page-title__breadcrumb {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	line-height: 1.35;
	margin-bottom: 14px;
}

.n3-page-title__breadcrumb a,
.n3-page-title__breadcrumb strong,
.n3-page-title__breadcrumb span {
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
}

.n3-page-title__breadcrumb a {
	color: rgba(255, 255, 255, .78);
}

.n3-page-title__breadcrumb a:hover {
	color: #fff;
}

.n3-page-title__breadcrumb span {
	color: rgba(255, 255, 255, .5);
}

.n3-page-title__breadcrumb strong {
	color: var(--n3-page-title-primary);
}

.n3-page-title h1 {
	color: #fff;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.1;
	margin: 0 0 18px;
	max-width: 680px;
	text-transform: uppercase;
}

.n3-page-title p {
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.65;
	margin: 0;
	max-width: 470px;
}

@media (max-width: 549px) {
	.n3-page-title {
		min-height: max(180px, var(--n3-page-title-height, 250px));
	}

	.n3-page-title::before {
		background: linear-gradient(90deg, rgba(5, 7, 10, .96), rgba(5, 7, 10, .72));
	}

	.n3-page-title__inner {
		min-height: calc(max(180px, var(--n3-page-title-height, 250px)) - 56px);
	}

	.n3-page-title h1 {
		font-size: 28px;
		margin-bottom: 14px;
	}

	.n3-page-title p {
		font-size: 12px;
		max-width: 100%;
	}
}
