/* Blog article — matches site chrome / compact Cursor-like type */

.bl-page {
	--bl-navy: #1a2744;
	--bl-blue: #2c4387;
	--bl-amber: #c45c26;
	--bl-amber-hover: #a84c1e;
	--bl-bg: #f3f5f8;
	--bl-surface: #fff;
	--bl-line: #e5e7eb;
	--bl-text: #1f2937;
	--bl-muted: #6b7280;
	--bl-max: 1120px;
	--bl-gutter: 20px;
	background: var(--bl-bg);
	color: var(--bl-text);
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	font-size: 13.5px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.bl-page a { color: inherit; text-decoration: none; }
.bl-page img { max-width: 100%; height: auto; }

.bl-hero {
	background: linear-gradient(180deg, #152038 0%, var(--bl-navy) 60%, #121c30 100%);
	border-bottom: 3px solid var(--bl-amber);
	color: #d5deee;
	padding: 36px 0 40px;
}

.bl-hero-inner,
.bl-body {
	max-width: var(--bl-max);
	margin: 0 auto;
	padding: 0 var(--bl-gutter);
	box-sizing: border-box;
}

.bl-breadcrumb {
	margin: 0 0 14px;
	font-size: 12px;
	color: #9eb0cb;
}
.bl-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.bl-breadcrumb li + li::before {
	content: "/";
	margin-right: 6px;
	color: rgba(255, 255, 255, 0.35);
}
.bl-breadcrumb a {
	color: #fff;
}
.bl-breadcrumb a:hover {
	color: #f0b27a;
}

.bl-hero h1 {
	margin: 0 0 10px;
	padding: 0;
	background: none;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #fff;
	max-width: 42rem;
}

.bl-hero-lead {
	margin: 0;
	max-width: 40rem;
	font-size: 14px;
	line-height: 1.55;
	color: #c5d0e4;
}

.bl-hero-date {
	margin: 0 0 10px;
	font-size: 12px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #f0b27a;
}
.bl-hero-date time {
	color: inherit;
}

.bl-body {
	padding-top: 28px;
	padding-bottom: 48px;
}

.bl-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
}

.bl-article {
	background: var(--bl-surface);
	border: 1px solid var(--bl-line);
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(20, 28, 45, 0.04), 0 8px 24px rgba(20, 28, 45, 0.05);
	overflow: hidden;
}

.bl-cover {
	display: block;
	margin: 0;
	background: #e8edf4;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.bl-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bl-content {
	padding: 22px 24px 28px;
}

.bl-prose {
	color: var(--bl-text);
	font-size: 14.5px;
	line-height: 1.7;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
}
.bl-prose > *:first-child { margin-top: 0; }
.bl-prose > *:last-child { margin-bottom: 0; }
.bl-prose p {
	margin: 0 0 1em;
}
.bl-prose h2,
.bl-prose h3,
.bl-prose h4 {
	margin: 1.4em 0 0.55em;
	padding: 0;
	background: none;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.015em;
	color: var(--bl-navy);
	text-align: left;
}
.bl-prose h2 { font-size: 1.25em; }
.bl-prose h3 { font-size: 1.1em; }
.bl-prose h4 { font-size: 1.05em; }
.bl-prose ul,
.bl-prose ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
}
.bl-prose li { margin: 0.25em 0; }
.bl-prose a {
	color: var(--bl-blue);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.bl-prose a:hover { color: var(--bl-amber); }
.bl-prose img {
	border-radius: 6px;
	margin: 0.75em 0;
}
.bl-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
	font-size: 13px;
}
.bl-prose th,
.bl-prose td {
	border: 1px solid var(--bl-line);
	padding: 8px 10px;
	text-align: left;
}

.bl-pdfs {
	margin: 22px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--bl-line);
}
.bl-pdfs-title {
	margin: 0 0 10px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #6b7280;
}
.bl-pdfs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.bl-pdfs-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid var(--bl-line);
	border-radius: 6px;
	background: #f9fafb;
	color: var(--bl-navy) !important;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none !important;
	transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.bl-pdfs-btn:hover {
	border-color: var(--bl-amber);
	color: var(--bl-amber) !important;
	background: #fff;
}
.bl-pdfs-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 20px;
	padding: 0 6px;
	border-radius: 4px;
	background: var(--bl-amber);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
}

.bl-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 22px;
	padding: 16px 18px;
	border-radius: 8px;
	background: linear-gradient(135deg, #152038 0%, var(--bl-navy) 55%, #2c4387 100%);
	color: #fff;
}
.bl-cta-copy {
	flex: 1 1 220px;
	min-width: 0;
}
.bl-cta-kicker {
	margin: 0 0 4px;
	font-size: 10px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #f0b27a;
}
.bl-cta h2 {
	margin: 0 0 4px;
	padding: 0;
	background: none;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 1.3;
}
.bl-cta p {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #c5d0e4;
}
.bl-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.bl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 6px;
	border: 1px solid transparent;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.bl-btn-accent {
	background: var(--bl-amber);
	color: #fff !important;
}
.bl-btn-accent:hover {
	background: var(--bl-amber-hover);
	color: #fff !important;
}
.bl-btn-light {
	background: #fff;
	color: var(--bl-navy) !important;
}
.bl-btn-light:hover {
	background: #eef2f8;
}

.bl-aside {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bl-aside-card {
	background: var(--bl-surface);
	border: 1px solid var(--bl-line);
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 1px 2px rgba(20, 28, 45, 0.04);
}

.bl-aside-title {
	margin: 0 0 12px;
	padding: 0;
	background: none;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #6b7280;
}

.bl-related {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bl-related-item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 8px;
	margin: -8px;
	border-radius: 6px;
	transition: background .15s ease;
}
.bl-related-item:hover {
	background: #f3f5f8;
}
.bl-related-thumb {
	width: 72px;
	height: 54px;
	border-radius: 5px;
	overflow: hidden;
	background: #e8edf4;
}
.bl-related-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bl-related-name {
	margin: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--bl-navy);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bl-related-item:hover .bl-related-name {
	color: var(--bl-blue);
}

.bl-empty {
	background: var(--bl-surface);
	border: 1px solid var(--bl-line);
	border-radius: 8px;
	padding: 28px 24px;
	text-align: center;
}
.bl-empty p {
	margin: 0 0 14px;
	color: var(--bl-muted);
	font-size: 14px;
}

/* Blog index listing */
.bl-list-meta {
	margin: 0 0 16px;
	font-size: 12px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--bl-muted);
}

.bl-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.bl-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--bl-surface);
	border: 1px solid var(--bl-line);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(20, 28, 45, 0.04), 0 8px 20px rgba(20, 28, 45, 0.04);
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.bl-card:hover {
	border-color: #d5dbe5;
	box-shadow: 0 2px 4px rgba(20, 28, 45, 0.06), 0 12px 28px rgba(20, 28, 45, 0.08);
	transform: translateY(-2px);
}

.bl-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	background: #e8edf4;
	overflow: hidden;
}
.bl-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .25s ease;
}
.bl-card:hover .bl-card-media img {
	transform: scale(1.03);
}
.bl-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8edf4, #d5dde8);
}

.bl-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 14px 15px 16px;
	gap: 8px;
}

.bl-card-date {
	display: inline-block;
	margin: 0;
	font-size: 11px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--bl-amber);
}

.bl-card-title {
	margin: 0;
	padding: 0;
	background: none;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.015em;
}
.bl-card-title a {
	color: var(--bl-navy);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bl-card-title a:hover {
	color: var(--bl-blue);
}

.bl-card-excerpt {
	margin: 0;
	flex: 1 1 auto;
	font-size: 13px;
	line-height: 1.5;
	color: var(--bl-muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bl-card-more {
	margin-top: 4px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--bl-amber) !important;
}
.bl-card-more:hover {
	color: var(--bl-amber-hover) !important;
}

.bl-cta-list {
	margin-top: 28px;
}

@media only screen and (max-width: 900px) {
	.bl-layout {
		grid-template-columns: 1fr;
	}
	.bl-aside {
		order: 2;
	}
	.bl-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 600px) {
	.bl-page { --bl-gutter: 14px; }
	.bl-hero { padding: 28px 0 32px; }
	.bl-body { padding-top: 20px; padding-bottom: 40px; }
	.bl-content { padding: 16px 16px 20px; }
	.bl-cta { padding: 14px; }
	.bl-cta-actions { width: 100%; }
	.bl-cta-actions .bl-btn { flex: 1 1 auto; }
	.bl-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}
