
body.smart-knowledgebase-page {
	background:
		radial-gradient(circle at 12% 10%, rgba(45, 183, 236, 0.16), transparent 34%),
		radial-gradient(circle at 90% 90%, rgba(45, 183, 236, 0.12), transparent 35%),
		linear-gradient(135deg, #061827 0%, #07121f 100%);
	color: #ffffff;
}

body.smart-knowledgebase-page #site-content,
body.smart-knowledgebase-page article,
body.smart-knowledgebase-page .entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
}

body.smart-knowledgebase-page .entry-header {
	display: none;
}

body.smart-knowledgebase-page .smart-kb {
	padding: clamp(64px, 8vw, 112px) 0 clamp(74px, 9vw, 118px);
}

body.smart-knowledgebase-page .smart-kb__inner {
	width: min(980px, calc(100% - 40px));
	margin: 0 auto;
}

body.smart-knowledgebase-page .smart-kb__header {
	max-width: 760px;
	margin: 0 auto 24px;
	text-align: center;
}

body.smart-knowledgebase-page .smart-kb__header h1 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(36px, 5vw, 62px);
	font-weight: 900;
	line-height: 1.05;
}

body.smart-knowledgebase-page .smart-kb__header p {
	max-width: 620px;
	margin: 14px auto 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: clamp(16px, 1.8vw, 18px);
	line-height: 1.65;
}

body.smart-knowledgebase-page .smart-kb__grid {
	display: grid;
	gap: 22px;
}

body.smart-knowledgebase-page .smart-kb-section {
	min-width: 0;
	padding: 22px;
	border: 1px solid rgba(148, 163, 184, 0.15);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
		rgba(15, 23, 42, 0.68);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.18);
}

body.smart-knowledgebase-page .smart-kb-section__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

body.smart-knowledgebase-page .smart-kb-section__heading h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(22px, 2.3vw, 30px);
	font-weight: 900;
	line-height: 1.18;
}

body.smart-knowledgebase-page .smart-kb-section__heading span {
	display: inline-grid;
	flex: 0 0 auto;
	min-width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 999px;
	background: rgba(41, 185, 239, 0.14);
	color: #69dcff;
	font-size: 13px;
	font-weight: 900;
}

body.smart-knowledgebase-page .smart-kb-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.smart-knowledgebase-page .smart-kb-card {
	margin: 0;
}

body.smart-knowledgebase-page .smart-kb-card a {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 132px;
	padding: 18px 20px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		rgba(15, 23, 42, 0.72);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.smart-knowledgebase-page .smart-kb-card a:hover,
body.smart-knowledgebase-page .smart-kb-card a:focus-visible {
	border-color: rgba(41, 185, 239, 0.58);
	background:
		linear-gradient(180deg, rgba(41, 185, 239, 0.14), rgba(255, 255, 255, 0.03)),
		rgba(15, 23, 42, 0.78);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
	transform: translateY(-1px);
}

body.smart-knowledgebase-page .smart-kb-card span {
	min-width: 0;
	color: #ffffff;
	font-size: 17px;
	font-weight: 850;
	line-height: 1.28;
}

body.smart-knowledgebase-page .smart-kb-card small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	min-height: 34px;
	padding: 0 13px;
	border-radius: 999px;
	background: #29b9ef;
	color: #041525;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

body.smart-knowledgebase-page .smart-kb-card small::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

body.smart-knowledgebase-page .smart-kb-section__empty {
	margin: 0;
	padding: 18px 20px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 720px) {
	body.smart-knowledgebase-page .smart-kb-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	body.smart-knowledgebase-page .smart-kb__inner {
		width: calc(100% - 28px);
	}

	body.smart-knowledgebase-page .smart-kb-section {
		padding: 20px;
	}
}
