/* =========================================================
   SINGLE SECTOR
========================================================= */

.knc-single-sector {
	padding: 40px 0 90px;
	background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.sector-detail-hero {
	overflow: hidden;

	background: #081426;

	border-radius: 24px;
}


.sector-detail-hero__grid {
	display: grid;

	grid-template-columns:
		minmax(0, 0.95fr)
		minmax(0, 1.05fr);

	min-height: 620px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.sector-detail-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 70px 65px;
}


/* Tag */

.sector-detail-hero__tag {
	display: inline-flex;
	align-items: center;

	align-self: flex-start;

	gap: 9px;

	margin-bottom: 28px;

	color: #D2F832;

	font-size: 11px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: .12em;
}


.sector-detail-hero__tag-dot {
	display: block;

	width: 7px;
	height: 7px;

	background: #D2F832;

	border-radius: 50%;
}


/* Title */

.sector-detail-hero__title {
	max-width: 650px;

	margin: 0;

	color: #fff;

	font-size: clamp(42px, 5vw, 68px);
	font-weight: 700;

	line-height: 1.05;
	letter-spacing: -.03em;
}


/* Description */

.sector-detail-hero__desc {
	max-width: 620px;

	margin: 28px 0 0;

	color: rgba(255, 255, 255, .68);

	font-size: 16px;
	line-height: 1.8;
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.sector-detail-hero__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	gap: 30px;

	margin-top: 55px;

	padding-top: 28px;

	border-top: 1px solid rgba(255,255,255,.12);
}


.sector-detail-hero__unit {
	display: flex;
	flex-direction: column;

	gap: 6px;
}


.sector-detail-hero__unit-label {
	color: rgba(255,255,255,.42);

	font-size: 10px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: .1em;
}


.sector-detail-hero__unit-value {
	color: #fff;

	font-size: 16px;
	font-weight: 700;
}


/* Scroll */

.sector-detail-hero__scroll {
	display: inline-flex;
	align-items: center;

	gap: 8px;

	color: #D2F832;

	font-size: 12px;
	font-weight: 700;

	text-decoration: none;
}


.sector-detail-hero__scroll:hover {
	color: #fff;
}


.sector-detail-hero__scroll .material-symbols-outlined {
	font-size: 18px;

	transition: transform .25s ease;
}


.sector-detail-hero__scroll:hover .material-symbols-outlined {
	transform: translateY(5px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.sector-detail-hero__media {
	position: relative;

	min-height: 620px;

	overflow: hidden;
}


.sector-detail-hero__media::after {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(8,20,38,.45) 0%,
			rgba(8,20,38,0) 38%
		);
}


.sector-detail-hero__media img {
	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform .7s ease;
}


.sector-detail-hero:hover
.sector-detail-hero__media img {
	transform: scale(1.035);
}


/* Decorative */

.sector-detail-hero__number {
	position: absolute;
	z-index: 2;

	right: 28px;
	bottom: 25px;

	color: rgba(255,255,255,.65);

	font-size: 10px;
	font-weight: 700;

	letter-spacing: .18em;
}


/* =========================================================
   INFORMATION STRIP
========================================================= */

.sector-detail-strip {
	display: grid;

	grid-template-columns:
		1fr auto
		1fr auto
		1fr;

	align-items: center;

	margin-top: 22px;

	padding: 26px 30px;

	background: #f7f9fb;

	border: 1px solid #e6ebef;
	border-radius: 16px;
}


.sector-detail-strip__item {
	display: flex;
	align-items: center;

	gap: 16px;

	padding: 0 20px;
}


.sector-detail-strip__item:first-child {
	padding-left: 0;
}


.sector-detail-strip__item:last-child {
	padding-right: 0;
}


.sector-detail-strip__item > .material-symbols-outlined {
	color: #859a00;

	font-size: 27px;
}


.sector-detail-strip__label {
	display: block;

	margin-bottom: 5px;

	color: #94a3b8;

	font-size: 9px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: .09em;
}


.sector-detail-strip__item strong {
	display: block;

	color: #0f172a;

	font-size: 14px;
	line-height: 1.4;
}


.sector-detail-strip__divider {
	width: 1px;
	height: 42px;

	background: #dde3e8;
}


/* =========================================================
   CONTENT
========================================================= */

.sector-detail-content {
	padding: 100px 0;
}


.sector-detail-content__grid {
	display: grid;

	grid-template-columns: 310px minmax(0, 1fr);

	gap: 90px;
}


/* =========================================================
   CONTENT SIDEBAR
========================================================= */

.sector-detail-content__aside {
	position: relative;
}


.sector-detail-content__aside-inner {
	position: sticky;
	top: 110px;
}


.sector-detail-content__index {
	display: block;

	margin-bottom: 30px;

	color: #D2F832;

	font-size: 70px;
	font-weight: 800;

	line-height: 1;
}


.sector-detail-content__aside-label {
	display: block;

	margin-bottom: 12px;

	color: #819400;

	font-size: 10px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: .14em;
}


.sector-detail-content__aside h2 {
	margin: 0;

	color: #081426;

	font-size: 29px;
	line-height: 1.25;
}


/* =========================================================
   ARTICLE
========================================================= */

.sector-detail-content__entry {
	max-width: 820px;

	color: #475569;

	font-size: 17px;
	line-height: 1.9;
}


.sector-detail-content__entry > *:first-child {
	margin-top: 0;
}


.sector-detail-content__entry p {
	margin-bottom: 26px;
}


.sector-detail-content__entry h2 {
	margin-top: 50px;
	margin-bottom: 20px;

	color: #081426;

	font-size: 34px;
	line-height: 1.2;
}


.sector-detail-content__entry h3 {
	margin-top: 38px;
	margin-bottom: 16px;

	color: #081426;

	font-size: 24px;
}


.sector-detail-content__entry img {
	width: 100%;
	height: auto;

	margin: 28px 0;

	border-radius: 18px;
}


/* =========================================================
   CTA
========================================================= */

.sector-detail-cta {
	position: relative;

	overflow: hidden;

	padding: 55px 60px;

	background: #081426;

	border-radius: 22px;
}


.sector-detail-cta::after {
	content: "";

	position: absolute;

	width: 280px;
	height: 280px;

	right: -100px;
	top: -120px;

	background: #D2F832;

	border-radius: 50%;

	opacity: .08;
}


.sector-detail-cta__content {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 50px;
}


.sector-detail-cta__eyebrow {
	display: block;

	margin-bottom: 13px;

	color: #D2F832;

	font-size: 10px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: .14em;
}


.sector-detail-cta h2 {
	max-width: 700px;

	margin: 0;

	color: #fff;

	font-size: clamp(28px, 3.5vw, 42px);
	line-height: 1.2;
}


.sector-detail-cta p {
	max-width: 650px;

	margin: 15px 0 0;

	color: rgba(255,255,255,.6);

	font-size: 15px;
	line-height: 1.7;
}


/* =========================================================
   BACK
========================================================= */

.sector-detail-back {
	padding-top: 32px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

	.sector-detail-hero__grid {
		grid-template-columns: 1fr;
	}


	.sector-detail-hero__content {
		padding: 55px 45px;
	}


	.sector-detail-hero__media {
		min-height: 450px;
	}


	.sector-detail-strip {
		grid-template-columns: 1fr;
	}


	.sector-detail-strip__divider {
		width: 100%;
		height: 1px;

		margin: 20px 0;
	}


	.sector-detail-strip__item,
	.sector-detail-strip__item:first-child,
	.sector-detail-strip__item:last-child {
		padding: 0;
	}


	.sector-detail-content__grid {
		grid-template-columns: 220px 1fr;

		gap: 50px;
	}


	.sector-detail-cta__content {
		flex-direction: column;
		align-items: flex-start;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.single-sector {
		padding: 20px 0 60px;
	}


	.sector-detail-hero {
		border-radius: 18px;
	}


	.sector-detail-hero__content {
		padding: 38px 24px;
	}


	.sector-detail-hero__title {
		font-size: 37px;
	}


	.sector-detail-hero__desc {
		font-size: 15px;
	}


	.sector-detail-hero__bottom {
		flex-direction: column;
		align-items: flex-start;

		margin-top: 38px;
	}


	.sector-detail-hero__media {
		min-height: 320px;
	}


	.sector-detail-strip {
		padding: 22px;

		border-radius: 14px;
	}


	.sector-detail-content {
		padding: 65px 0;
	}


	.sector-detail-content__grid {
		grid-template-columns: 1fr;

		gap: 35px;
	}


	.sector-detail-content__aside-inner {
		position: static;
	}


	.sector-detail-content__index {
		margin-bottom: 12px;

		font-size: 50px;
	}


	.sector-detail-content__aside h2 br {
		display: none;
	}


	.sector-detail-content__entry {
		font-size: 15px;
		line-height: 1.8;
	}


	.sector-detail-cta {
		padding: 34px 25px;

		border-radius: 17px;
	}

}