@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url('fonts/Manrope-ExtraLight.woff2') format('woff2');
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('fonts/Manrope-Light.woff2') format('woff2');
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('fonts/Manrope-Regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('fonts/Manrope-Medium.woff2') format('woff2');
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('fonts/Manrope-SemiBold.woff2') format('woff2');
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('fonts/Manrope-Bold.woff2') format('woff2');
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url('fonts/Manrope-ExtraBold.woff2') format('woff2');
}

.blog-section .glass {
	background: rgba(57, 56, 56, 0.52);
	backdrop-filter: blur(13px) saturate(150%);
	-webkit-backdrop-filter: blur(13px) saturate(150%);
	z-index: -1;
}

.blog-page-body .blog-section .shadow {
	box-shadow: -5px 3px 8px 1px rgba(0, 0, 0, 0.12);
}

.blog-page-body .wy-nav-content-wrap,
.blog-page-body .wy-nav-content,
.blog-page-body .rst-content,
.blog-page-body .document {
	background: #f4f8ff;
}

.blog-page-body .wy-nav-content {
	max-width: none;
	padding: 0;
}

.blog-section {
	position: relative;
	width: 100%;
	max-width: none;
	min-height: calc(100vh - 40px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.95)),
		repeating-linear-gradient(32deg, rgba(42, 105, 206, 0.04) 0 1px, transparent 1px 12px);
	color: #081f4c;
	overflow: hidden;
}

.blog-section::before,
.blog-section::after {
	content: '';
	position: absolute;
	z-index: 0;
	width: 720px;
	height: 340px;
	background-image: url('/blog/blog-wave.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.62;
	pointer-events: none;
}

.blog-section::before {
	top: 92px;
	left: -420px;
}

.blog-section::after {
	right: -390px;
	bottom: 220px;
	transform: rotate(180deg);
}

.blog-home {
	position: relative;
	width: min(100% - 48px, 1060px);
	margin: 0 auto;
	overflow: visible;
}

.blog-home::before {
	content: '';
	position: absolute;
	top: -12px;
	right: -225px;
	width: 810px;
	height: 378px;
	background-image: url('/blog/blog-wave.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.78;
	pointer-events: none;
}

.blog-hero {
	position: relative;
	max-width: 900px;
	margin-bottom: 28px;
}

.blog-hero-topline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	margin-bottom: 18px;
}

.blog-kicker {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	height: 28px;
	margin: 0;
	padding: 0 16px;
	border-radius: 9px;
	background: #dfebff;
	color: #0b58d8;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.blog-hero h1 {
	max-width: 600px;
	margin: 0;
	color: #071d4b;
	font-size: clamp(23px, 2.5vw, 58px);
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
}

.blog-title-rule {
	display: block;
	width: 28px;
	height: 3px;
	margin: 22px 0 18px;
	border-radius: 999px;
	background: #115be7;
}

.blog-hero-copy {
	max-width: 600px;
	margin: 0;
	color: #2e416a;
	font-size: 16px;
	line-height: 1.65;
}

.blog-section .blog-post-frame {
	position: relative;
	box-sizing: border-box;
	width: min(100% - 48px, 980px);
	min-width: 0 !important;
	margin: 0 auto;
	padding: 22px 42px 64px;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 32px 90px rgba(24, 58, 104, 0.15);
	font-family: 'Manrope', Arial, sans-serif;
	backdrop-filter: blur(20px) saturate(130%);
	-webkit-backdrop-filter: blur(20px) saturate(130%);
}

.blog-post-header {
	display: grid;
	margin-bottom: 20px;
}

.blog-post-heading {
	display: grid;
	gap: 12px;
}

.blog-post-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 26px;
	padding: 0 16px;
	border-radius: 999px;
	background: #e5f0ff;
	color: #075cf0;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.blog-post-title {
	text-align: left;
	font-size: clamp(23px, 2vw, 58px);
	line-height: 1.08;
	font-weight: 850;
	letter-spacing: 0;
	max-width: 60%;
}

.blog-section .blog-post-title {
	margin: 0;
	max-width: 684px;
	color: #071d4b;
}

.blog-post-info-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 28px;
}

.blog-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	color: #415782;
}

.blog-post-meta-text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	text-align: left;
	font-size: 11px;
	line-height: 1.4;
	font-weight: 600;
	opacity: 1;
}

.blog-post-meta-icon {
	position: relative;
	width: 15px;
	height: 15px;
	border: 1.7px solid #5671a4;
	border-radius: 4px;
}

.blog-post-meta-icon::before {
	content: '';
	position: absolute;
	top: 3px;
	right: -1.7px;
	left: -1.7px;
	height: 1.7px;
	background: #5671a4;
}

.blog-post-meta-dot {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: #8ba0c1;
}

.blog-post-meta-read-time {
	font-weight: 700;
}

.blog-post-date {
	font-size: 11px;
	line-height: 1.4;
	font-weight: 700;
}

.blog-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.blog-post-tag-link {
	text-decoration: none;
}

.blog-post-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 24px;
	padding: 0 15px;
	border: 1px solid #c9daf6;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	color: #075cf0;
	font-size: 11px;
	line-height: 1;
	font-weight: 750;
	box-shadow: none;
}

.blog-post-tag-link:hover .blog-post-tag {
	border-color: #8fb8ff;
	background: #f7fbff;
	color: #064fcf;
}

.dark .blog-post-tag {
	background: #e5f0ff;
	color: #075cf0;
}

.blog-post-hero {
	width: 95%;
	margin: 0 0 32px;
	overflow: hidden;
	border-radius: 14px;
	background: #061434;
	box-shadow: 0 18px 46px rgba(10, 29, 64, 0.16);
}

.blog-post-hero-image {
	display: block;
	width: 100%;
	height: clamp(220px, 33vw, 240px);
	max-height: none;
	margin: 0;
	border-radius: 0;
	object-fit: cover;
}

.blog-section .blog-post-frame > hr {
	display: none;
}

.blog-section .blog-post-layout {
	width: 100%;
	display: block !important;
	margin-top: 0 !important;
}

.blog-section .blog-post-layout > aside {
	display: none !important;
}

.blog-post-shell {
	min-width: 0;
	width: 100%;
}

.blog-section .blog-post-content {
	width: 100%;
	max-width: none;
	min-width: 0;
	margin-bottom: 0 !important;
	color: #102653;
	font-size: 17px;
	line-height: 1.72;
}

.blog-post-content > * {
	max-width: none;
}

.blog-section .blog-post-content.prose p {
	margin-top: 0;
	margin-bottom: 24px;
}

.blog-section .blog-post-content.prose h2 {
	position: relative;
	margin: 42px 0 14px;
	padding: 30px 0 0 21px;
	border-top: 1px solid #dae4f2;
	color: #071d4b !important;
	font-size: 31px;
	line-height: 1.16;
	font-weight: 850;
	letter-spacing: 0;
}

.blog-section .blog-post-content.prose h2::before {
	content: '';
	position: absolute;
	top: 34px;
	left: 0;
	width: 4px;
	height: 28px;
	border-radius: 999px;
	background: #075cf0;
}

.blog-section .blog-post-content.prose h3 {
	margin: 34px 0 12px;
	color: #0a2557 !important;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 800;
}

.blog-section .blog-post-content.prose a {
	color: #075cf0;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.blog-section .blog-post-content.prose strong {
	color: #071d4b;
	font-weight: 800;
}

.blog-section .blog-post-content.prose ol {
	margin: 14px 0 22px;
	padding-left: 0;
	list-style: none;
	counter-reset: blog-steps;
}

.blog-section .blog-post-content.prose ol > li {
	position: relative;
	min-height: 28px;
	margin: 8px 0;
	padding-left: 42px;
	counter-increment: blog-steps;
}

.blog-section .blog-post-content.prose ol > li::before {
	content: counter(blog-steps);
	position: absolute;
	top: 1px;
	left: 14px;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 999px;
	background: #e5f0ff;
	color: #075cf0;
	font-size: 13px;
	font-weight: 850;
}

.blog-section .blog-post-content.prose ul {
	margin: 14px 0 24px;
	padding-left: 24px;
}

.blog-section .blog-post-content.prose li {
	margin-top: 7px;
	margin-bottom: 7px;
}

.blog-section .blog-post-content.prose table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #dce6f5;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(27, 62, 108, 0.08);
}

.blog-section .blog-post-content.prose th,
.blog-section .blog-post-content.prose td {
	padding: 13px 16px;
	border-bottom: 1px solid #e4edf8;
	color: #102653;
}

.blog-section .blog-post-content.prose th {
	background: #f3f8ff;
	color: #071d4b;
	font-weight: 850;
}

.blog-section .blog-post-content.prose tr:last-child td {
	border-bottom: 0;
}

.blog-post-content img,
.blog-post-content picture,
.blog-post-content video,
.blog-post-content iframe,
.blog-post-content pre,
.blog-post-content table {
	max-width: 100%;
}

.blog-section .blog-post-content.prose pre {
	border-radius: 12px;
	background: #f8f8f8;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	border: solid 1px #95b8ca;
}

@media screen and (max-width: 900px) {
	.blog-section .blog-post-frame {
		width: min(100% - 32px, 720px);
		padding: 28px 28px 50px;
	}

	.blog-post-title {
		font-size: clamp(34px, 8vw, 46px);
	}

	.blog-post-info-row {
		gap: 12px 18px;
	}
}

@media screen and (max-width: 560px) {
	.blog-section::before,
	.blog-section::after {
		opacity: 0.35;
	}

	.blog-section .blog-post-frame {
		width: 100%;
		padding: 24px 18px 44px;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.blog-post-title {
		font-size: 34px;
		line-height: 1.12;
	}

	.blog-post-meta {
		gap: 8px 10px;
	}

	.blog-post-meta-text,
	.blog-post-date {
		font-size: 13px;
	}

	.blog-post-hero {
		border-radius: 10px;
	}

	.blog-post-hero-image {
		height: 220px;
	}

	.blog-section .blog-post-content {
		font-size: 16px;
	}

	.blog-section .blog-post-content.prose h2 {
		font-size: 26px;
	}
}

.blog-category-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 28px 0 34px;
}

.blog-hero-topline .blog-category-list {
	flex: 1 1 0;
	gap: 8px;
	margin: 0;
	min-width: 0;
}

.blog-category-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 22px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 28px rgba(11, 33, 76, 0.08);
	color: #102653;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.16s ease,
		box-shadow 0.16s ease,
		background-color 0.16s ease;
}

.blog-hero-topline .blog-category-pill {
	min-height: 30px;
	padding: 0 13px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 8px 22px rgba(11, 33, 76, 0.07);
	font-size: 12px;
}

.blog-category-pill:hover {
	transform: translateY(-1px);
	background: #fff;
	box-shadow: 0 14px 32px rgba(11, 33, 76, 0.12);
	color: #0b58d8;
}

.blog-category-pill--active {
	background: linear-gradient(135deg, #075cf0, #0648c9);
	color: #fff;
	box-shadow: 0 14px 30px rgba(8, 83, 219, 0.28);
}

.blog-category-pill--active:hover {
	background: linear-gradient(135deg, #075cf0, #0648c9);
	color: #fff;
}

.blog-hero-topline .blog-category-pill--active {
	background: linear-gradient(135deg, #075cf0, #0648c9);
}

.blog-post-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 40px;
	margin-bottom: 30px;
}

.blog-post-grid--featured > .blog-card--featured {
	grid-column: span 2;
}

.blog-latest-stack {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.blog-latest-stack h2 {
	margin: 0;
	color: #0b2354;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 850;
	letter-spacing: 0;
}

.blog-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 90%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(15, 43, 91, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 16px 42px rgba(20, 45, 86, 0.13);
}

.blog-card-media {
	position: relative;
	display: block;
	height: 200px;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.blog-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.blog-card:hover .blog-card-image {
	transform: scale(1.025);
}

.blog-card-media-meta,
.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	color: #18315f;
	font-size: 12px;
	font-weight: 700;
}

.blog-card-media-meta {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 13px 18px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.blog-card-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}

.blog-card-meta-item::before {
	content: '';
	width: 12px;
	height: 12px;
	border: 2px solid #3577dc;
	border-radius: 3px;
}

.blog-card-meta-time::before {
	border-radius: 50%;
}

.blog-card-category {
	margin-left: auto;
	padding: 5px 11px;
	border: 1px solid rgba(15, 43, 91, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: #102653;
	font-size: 11px;
	line-height: 1;
	white-space: nowrap;
}

.blog-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	gap: 14px;
	padding: 24px 20px 24px;
}

.blog-card-copy {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.blog-card-title {
	color: #0b2354;
	font-size: 21px;
	line-height: 1.16;
	font-weight: 850;
	letter-spacing: 0;
	text-decoration: none;
	width: clamp(250px, 77%, 77%);
}

.blog-card-title:hover {
	color: #075cf0;
}

.blog-card-copy p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #34466f;
	font-size: 15px;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.blog-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #075cf0;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.blog-card-link-icon {
	display: inline-flex;
	transition: transform 0.18s ease;
}

.blog-card-link:hover .blog-card-link-icon {
	transform: translate(2px, -2px);
}

.blog-card--featured {
	min-height: 420px;
	box-shadow: 0px 0px 25px rgba(26, 31, 39, 0.4);
	border: none;
}

.blog-card--featured .blog-card-media {
	position: absolute;
	inset: 0;
	height: auto;
}

.blog-card--featured .blog-card-media::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 56%;
	background: rgba(3, 3, 3, 0.69);
}

.blog-card--featured .blog-card-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(5, 11, 24, 0.02) 0%,
		rgba(5, 11, 24, 0.18) 52%,
		rgba(5, 11, 24, 0.34) 100%
	);
}

.blog-featured-label {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 8px 15px 6px;
	border-radius: 13px;
	background: #133f91;
	color: #fff;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.02em;
}

.blog-card--featured .blog-card-body {
	position: relative;
	justify-content: flex-end;
	min-height: 420px;
	padding: 0 26px 28px;
	color: #fff;
}

.blog-card--featured .blog-card-meta {
	color: #e9f1ff;
}

.blog-card--featured .blog-card-meta-item::before {
	border-color: #82b5ff;
}

.blog-card--featured .blog-card-category {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.blog-card--featured .blog-card-title {
	color: #fff;
	font-size: 28px;
}

.blog-card--featured .blog-card-copy p {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.9);
}

.blog-card--featured .blog-card-link {
	color: #8fbcff;
}

@media screen and (max-width: 900px) {
	.blog-home {
		width: min(100% - 32px, 680px);
		padding: 36px 0 48px;
	}

	.blog-post-grid {
		grid-template-columns: 1fr;
	}

	.blog-post-grid--featured > .blog-card--featured {
		grid-column: auto;
	}

	.blog-card--featured,
	.blog-card--featured .blog-card-body {
		min-height: 380px;
	}
}

@media screen and (max-width: 560px) {
	.blog-hero h1 {
		font-size: 40px;
	}

	.blog-category-list {
		gap: 10px;
	}

	.blog-category-pill {
		min-height: 38px;
		padding: 0 15px;
	}

	.blog-card-media-meta,
	.blog-card-meta {
		flex-wrap: wrap;
		gap: 9px;
	}

	.blog-card-category {
		margin-left: 0;
	}
}
