.vl-blog,
.vl-blog-detail {
	--vl-navy: #0b2a4a;
	--vl-blue: #1565d8;
	--vl-sky: #e8f1fc;
	--vl-amber: #ff8a00;
	--vl-cloud: #f7f9fc;
	--vl-ink: #1a2433;
	--vl-slate: #5a6b80;
	--vl-line: #e2e8f0;
	--vl-shadow: 0 12px 28px rgba(11, 42, 74, .12);
	color: var(--vl-ink);
	background: var(--vl-cloud);
	overflow-x: hidden;
}

.vl-blog-detail {
	--vl-sticky-top: 110px;
	overflow-x: clip;
	overflow-y: visible;
}

@supports not (overflow: clip) {
	.vl-blog-detail {
		overflow-x: visible;
	}
}

.vl-blog-detail > article,
.vl-blog-detail .vl-wrap,
.vl-blog-detail .vl-art-layout {
	overflow: visible;
	transform: none;
	filter: none;
	perspective: none;
}

.vl-blog *,
.vl-blog *::before,
.vl-blog *::after,
.vl-blog-detail *,
.vl-blog-detail *::before,
.vl-blog-detail *::after {
	box-sizing: border-box;
}

.vl-wrap {
	width: min(100%, 1200px);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.vl-hero {
	background: linear-gradient(135deg, var(--vl-navy), #0d3a66);
	color: #fff;
	padding: 80px 0;
}

.vl-hero h1,
.vl-art-hero h1,
.vl-section-head h2,
.vl-featured h2,
.vl-card h3,
.vl-empty h2 {
	color: var(--vl-navy);
	font-family: Sora, Inter, system-ui, sans-serif;
	line-height: 1.25;
	letter-spacing: 0;
}

.vl-hero h1 {
	max-width: 780px;
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.vl-hero p {
	max-width: 660px;
	margin: 0 0 30px;
	color: #c4d4e8;
	font-size: clamp(16px, 1.6vw, 19px);
	overflow-wrap: anywhere;
}

.vl-eyebrow,
.vl-tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.vl-eyebrow {
	margin-bottom: 18px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, .12);
	color: #cfe3ff;
}

.vl-search {
	display: flex;
	width: 100%;
	max-width: 560px;
	padding: 6px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 20px 40px rgba(11, 42, 74, .15);
}

.vl-search input {
	flex: 1;
	min-width: 0;
	width: 100%;
	border: 0;
	outline: 0;
	padding: 12px 16px;
	color: var(--vl-ink);
	font: 16px Inter, system-ui, sans-serif;
}

.vl-search button {
	flex: 0 0 auto;
	border: 0;
	border-radius: 10px;
	padding: 12px 24px;
	background: var(--vl-blue);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.vl-filter {
	position: sticky;
	top: 0;
	z-index: 10;
	overflow: hidden;
	padding: 22px 0;
	border-bottom: 1px solid var(--vl-line);
	background: var(--vl-cloud);
}

.vl-filter-scroll {
	display: flex;
	gap: 12px;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.vl-filter-scroll::-webkit-scrollbar {
	display: none;
}

.vl-chip {
	flex: 0 0 auto;
	white-space: nowrap;
	border: 1px solid var(--vl-line);
	border-radius: 999px;
	padding: 10px 20px;
	background: #fff;
	color: var(--vl-slate);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.vl-chip:hover,
.vl-chip.is-active {
	border-color: var(--vl-blue);
	background: var(--vl-blue);
	color: #fff;
}

.vl-section,
.vl-related {
	padding: 64px 0;
}

.vl-related {
	background: #fff;
}

.vl-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.vl-section-head h2 {
	margin: 0;
	font-size: 32px;
}

.vl-all-posts-head {
	margin-top: 54px;
}

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

.vl-grid > * {
	min-width: 0;
}

.vl-card {
	margin: 0;
}

.vl-card a,
.vl-featured {
	display: flex;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--vl-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(11, 42, 74, .06);
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	min-width: 0;
}

.vl-featured {
	color: inherit;
}

.vl-card a {
	flex-direction: column;
}

.vl-card a:hover,
.vl-featured:hover {
	transform: translateY(-4px);
	border-color: rgba(21, 101, 216, .4);
	box-shadow: var(--vl-shadow);
}

.vl-card-img,
.vl-featured-img,
.vl-art-cover {
	position: relative;
	overflow: hidden;
	background: var(--vl-sky);
}

.vl-card-img {
	aspect-ratio: 16 / 9;
}

.vl-card-img img,
.vl-featured-img img,
.vl-art-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vl-card-img span,
.vl-featured-img span {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	border-radius: 999px;
	padding: 5px 12px;
	background: rgba(255, 255, 255, .95);
	color: var(--vl-blue);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.vl-featured {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
}

.vl-featured-img {
	min-height: 340px;
}

.vl-featured-img span {
	background: var(--vl-amber);
	color: #fff;
}

.vl-featured-body,
.vl-card-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.vl-featured-body {
	justify-content: center;
	padding: 42px;
}

.vl-featured-body small {
	color: var(--vl-blue);
	font-weight: 800;
	text-transform: uppercase;
}

.vl-featured-body h2 {
	margin: 12px 0 14px;
	font-size: clamp(24px, 2.5vw, 30px);
	overflow-wrap: anywhere;
}

.vl-featured-body p,
.vl-card-body p,
.vl-empty p {
	color: var(--vl-slate);
}

.vl-featured-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 18px;
}

.vl-card-body {
	flex: 1;
	padding: 20px;
}

.vl-card-body h3 {
	display: -webkit-box;
	margin: 0 0 10px;
	overflow: hidden;
	font-size: 20px;
	overflow-wrap: anywhere;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.vl-card-body p {
	display: -webkit-box;
	margin: 0 0 16px;
	overflow: hidden;
	font-size: 15px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.vl-card-footer,
.vl-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--vl-slate);
	font-size: 14px;
}

.vl-meta {
	flex-wrap: wrap;
}

.vl-meta-item,
.vl-card-meta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.vl-meta-figma-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	line-height: 1;
	transform: translateY(-1px);
}

.vl-meta-figma-icon img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.vl-meta-svg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: #6f8196;
	line-height: 1;
}

.vl-meta-svg svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.vl-meta-svg-user {
	color: #5f86a8;
}

.vl-meta-svg-calendar {
	color: var(--vl-amber);
}

.vl-meta-svg-clock {
	color: #6f8196;
}

.vl-meta-icon {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
}

.vl-meta-icon-date {
	border: 1.6px solid var(--vl-amber);
	border-radius: 3px;
}

.vl-meta-icon-date::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	right: 0;
	border-top: 1.6px solid var(--vl-amber);
}

.vl-meta-icon-date::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 3px;
	width: 6px;
	height: 4px;
	border-right: 1.6px solid var(--vl-amber);
	border-left: 1.6px solid var(--vl-amber);
}

.vl-meta-icon-time {
	border: 1.6px solid #6f8196;
	border-radius: 999px;
}

.vl-meta-icon-time::before,
.vl-meta-icon-time::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 3px;
	width: 1.6px;
	background: #6f8196;
	transform-origin: bottom center;
}

.vl-meta-icon-time::before {
	height: 4px;
}

.vl-meta-icon-time::after {
	height: 5px;
	transform: rotate(50deg);
}

.vl-meta-icon-user::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 4px;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #6f8196;
}

.vl-meta-icon-user::after {
	content: "";
	position: absolute;
	right: 1px;
	bottom: 1px;
	left: 1px;
	height: 6px;
	border-radius: 8px 8px 2px 2px;
	background: #6f8196;
}

.vl-card-meta {
	flex-wrap: wrap;
	row-gap: 6px;
}

.vl-card-footer {
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--vl-line);
}

.vl-card-footer strong,
.vl-read-more {
	color: var(--vl-blue);
	font-weight: 800;
	white-space: nowrap;
}

.vl-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 46px;
}

.vl-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border: 1px solid var(--vl-line);
	border-radius: 999px;
	padding: 0 14px;
	background: #fff;
	color: var(--vl-slate);
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(11, 42, 74, .04);
}

.vl-pagination .current {
	border-color: var(--vl-amber);
	background: var(--vl-amber);
	color: #fff;
}

.vl-cta-section {
	padding: 0 0 64px;
	background: var(--vl-cloud);
}

.vl-blog-detail .vl-cta-section {
	padding-top: 8px;
}

.vl-cta-box {
	border-radius: 16px;
	padding: 34px 28px 32px;
	background: linear-gradient(135deg, var(--vl-navy), #073c69);
	color: #fff;
	text-align: center;
}

.vl-cta-box h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
}

.vl-cta-box p {
	margin: 0 0 18px;
	color: #d6e5f7;
	font-size: 18px;
}

.vl-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.vl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 10px;
	padding: 0 20px;
	font-weight: 800;
	text-decoration: none;
}

.vl-btn-primary {
	background: var(--vl-amber);
	color: #fff;
}

.vl-btn-outline {
	border: 1px solid rgba(255, 255, 255, .55);
	color: #fff;
}

.vl-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 22px 0 10px;
	color: var(--vl-slate);
	font-size: 14px;
	line-height: 1.5;
}

.vl-breadcrumb a {
	color: var(--vl-slate);
	text-decoration: none;
}

.vl-breadcrumb a:hover {
	color: var(--vl-blue);
}

.vl-breadcrumb .vl-current {
	color: var(--vl-navy);
	font-weight: 700;
}

.vl-art-hero {
	padding: 34px 0 8px;
}

.vl-tag {
	margin-bottom: 16px;
	padding: 5px 12px;
	background: var(--vl-sky);
	color: var(--vl-blue);
	text-decoration: none;
}

.vl-art-hero h1 {
	max-width: 860px;
	margin: 0 0 18px;
	font-size: clamp(32px, 3.6vw, 42px);
	overflow-wrap: anywhere;
}

.vl-art-cover {
	max-height: 460px;
	margin: 28px 0 8px;
	border-radius: 16px;
	box-shadow: var(--vl-shadow);
}

.vl-art-cover img {
	display: block;
}

.vl-art-layout {
	position: relative;
	display: grid;
	align-items: stretch;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 56px;
	padding: 48px 0 24px;
}

.vl-art-body {
	align-self: start;
	min-width: 0;
	font-size: 18px;
	line-height: 1.75;
	overflow-wrap: anywhere;
}

.vl-art-body h2 {
	margin: 40px 0 16px;
	color: var(--vl-navy);
	font-size: 28px;
}

.vl-art-body p,
.vl-art-body ul,
.vl-art-body ol {
	margin-bottom: 20px;
}

.vl-art-body blockquote {
	margin: 28px 0;
	border-left: 4px solid var(--vl-blue);
	border-radius: 0 10px 10px 0;
	padding: 20px 24px;
	background: var(--vl-sky);
	color: var(--vl-navy);
	font-size: 19px;
	font-style: italic;
}

.vl-share {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
	color: var(--vl-navy);
	font-size: 14px;
	line-height: 1;
}

.vl-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	text-decoration: none;
}

.vl-share img {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.vl-art-sidebar {
	position: relative;
	align-self: stretch;
	display: block;
	justify-self: end;
	width: 300px;
	max-width: 100%;
	min-width: 0;
	height: auto;
	max-height: none;
	overflow: visible;
}

.vl-art-sidebar-inner {
	position: sticky;
	top: var(--vl-sticky-top);
	display: grid;
	gap: 24px;
	width: 100%;
	max-height: calc(100vh - var(--vl-sticky-top) - 24px);
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
}

.vl-sidebar-box,
.vl-sidebar-cta {
	box-sizing: border-box;
	width: 100%;
}

.vl-sidebar-box {
	border: 1px solid var(--vl-line);
	border-radius: 14px;
	padding: 18px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(11, 42, 74, .05);
}

.vl-sidebar-box h3,
.vl-sidebar-cta h3 {
	margin: 0;
	color: var(--vl-navy);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}

.vl-latest-list {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.vl-latest-item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	color: var(--vl-navy);
	text-decoration: none;
}

.vl-latest-item img {
	width: 58px;
	height: 58px;
	border-radius: 8px;
	object-fit: cover;
	background: var(--vl-sky);
}

.vl-latest-item strong {
	display: -webkit-box;
	overflow: hidden;
	font-size: 13px;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.vl-latest-item small {
	display: block;
	margin-top: 4px;
	color: var(--vl-slate);
	font-size: 12px;
}

.vl-sidebar-cta {
	border-radius: 14px;
	padding: 24px 20px;
	background: linear-gradient(135deg, var(--vl-blue), var(--vl-navy));
	color: #fff;
	text-align: center;
}

.vl-sidebar-cta h3 {
	color: #fff;
	font-size: 20px;
}

.vl-sidebar-cta p {
	margin: 12px 0 18px;
	color: #d6e5f7;
	font-size: 13px;
}

.vl-sidebar-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	border-radius: 9px;
	background: var(--vl-amber);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.vl-empty {
	border: 1px solid var(--vl-line);
	border-radius: 16px;
	padding: 40px;
	background: #fff;
	text-align: center;
}

@media (max-width: 960px) {
	.vl-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vl-art-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.vl-art-sidebar {
		position: static;
		width: 100%;
	}

	.vl-art-sidebar-inner {
		position: static;
		top: auto;
		max-height: none;
		overflow: visible;
	}

	.vl-featured {
		grid-template-columns: 1fr;
	}

	.vl-featured-img {
		min-height: 260px;
	}

	.vl-featured-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (min-width: 1025px) {
	.vl-blog-detail .vl-art-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
		align-items: stretch;
		gap: 56px;
	}

	.vl-blog-detail .vl-art-sidebar {
		position: relative;
		align-self: stretch;
		justify-self: end;
		width: 300px;
		margin-top: 0;
		height: auto;
		max-height: none;
		overflow: visible;
	}

	.vl-blog-detail .vl-art-sidebar-inner {
		position: sticky;
		top: var(--vl-sticky-top);
	}
}

@media (max-width: 1024px) {
	.vl-blog-detail .vl-art-layout {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 34px;
	}

	.vl-blog-detail .vl-art-sidebar {
		position: static;
		align-self: start;
		justify-self: stretch;
		width: 100%;
	}

	.vl-blog-detail .vl-art-sidebar-inner {
		position: static;
		top: auto;
		max-height: none;
		overflow: visible;
	}
}

@media (max-width: 640px) {
	.vl-blog,
	.vl-blog-detail {
		width: 100%;
		max-width: 100%;
	}

	.vl-wrap {
		padding: 0 16px;
	}

	.vl-hero {
		padding: 48px 0 50px;
	}

	.vl-hero h1,
	.vl-art-hero h1 {
		font-size: 28px;
		line-height: 1.22;
	}

	.vl-hero p,
	.vl-art-body {
		font-size: 16px;
	}

	.vl-search {
		display: grid;
		gap: 10px;
		width: 100%;
		max-width: none;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	.vl-search input,
	.vl-search button {
		border-radius: 10px;
		width: 100%;
		min-height: 46px;
	}

	.vl-search input {
		background: #fff;
	}

	.vl-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.vl-section,
	.vl-related {
		padding: 42px 0;
	}

	.vl-filter {
		padding: 18px 0;
	}

	.vl-filter-scroll {
		gap: 10px;
		padding-right: 16px;
	}

	.vl-chip {
		padding: 9px 17px;
		font-size: 13px;
	}

	.vl-featured-body {
		padding: 26px 20px;
	}

	.vl-featured-body h2,
	.vl-section-head h2 {
		font-size: 25px;
	}

	.vl-featured-img {
		min-height: auto;
		aspect-ratio: 16 / 10;
	}

	.vl-featured-img img {
		display: block;
	}

	.vl-card-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.vl-cta-section {
		padding-bottom: 42px;
	}

	.vl-cta-box {
		padding: 28px 18px;
	}

	.vl-cta-box h2 {
		font-size: 26px;
	}
}

@media (max-width: 420px) {
	.vl-wrap {
		padding: 0 14px;
	}

	.vl-hero h1,
	.vl-art-hero h1 {
		font-size: 26px;
	}

	.vl-hero p {
		font-size: 15px;
	}

	.vl-section-head h2,
	.vl-featured-body h2 {
		font-size: 24px;
	}

	.vl-card-body {
		padding: 18px;
	}

	.vl-card-body h3 {
		font-size: 19px;
	}

	.vl-art-layout {
		padding-top: 34px;
	}
}
