:root {
	--vt-ink: #0b1020;
	--vt-ink-2: #151e3d;
	--vt-orange: #ff7a1a;
	--vt-orange-dark: #e85f00;
	--vt-teal: #0f9d8a;
	--vt-paper: #fffdf8;
	--vt-soft: #f5f2eb;
	--vt-white: #ffffff;
	--vt-muted: #667085;
	--vt-line: #e5e7eb;
	--vt-shadow: 0 18px 55px rgba(11, 16, 32, 0.1);
	--vt-radius: 22px;
	--vt-container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.vt-site {
	margin: 0;
	color: var(--vt-ink);
	background: var(--vt-paper);
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.68;
	-webkit-font-smoothing: antialiased;
}

body.vt-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.vt-site a {
	color: inherit;
	text-decoration: none;
}

body.vt-site h1,
body.vt-site h2,
body.vt-site h3,
body.vt-site h4 {
	margin: 0 0 0.5em;
	font-family: "Manrope", "DM Sans", sans-serif;
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.035em;
}

body.vt-site p {
	margin: 0 0 1.25em;
}

.vt-container {
	width: min(calc(100% - 40px), var(--vt-container));
	margin-inline: auto;
}

.vt-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	padding: 10px 16px;
	color: #fff !important;
	background: var(--vt-orange);
	border-radius: 8px;
	transform: translateY(-150%);
}

.vt-skip-link:focus {
	transform: translateY(0);
}

.vt-topbar {
	color: #cbd3e8;
	background: #080d1a;
	font-size: 13px;
	letter-spacing: 0.02em;
}

.vt-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.vt-topbar strong {
	color: var(--vt-orange);
	text-transform: uppercase;
	letter-spacing: 0.11em;
}

.vt-topbar a {
	color: #fff !important;
}

.vt-topbar-separator {
	margin-inline: 8px;
	color: var(--vt-teal);
}

.vt-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	color: #fff;
	background: rgba(11, 16, 32, 0.98);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(14px);
}

.admin-bar .vt-header {
	top: 32px;
}

.vt-header-main {
	position: relative;
	display: grid;
	grid-template-columns: 52px 1fr 52px;
	align-items: center;
	min-height: 86px;
}

.vt-brand {
	grid-column: 2;
	justify-self: center;
}

.vt-menu-toggle {
	grid-column: 1;
	grid-row: 1;
}

.vt-header-search {
	grid-column: 3;
	grid-row: 1;
}

.vt-brand img {
	width: 330px;
	max-height: 66px;
	object-fit: contain;
}

.vt-menu-toggle,
.vt-header-search {
	display: none;
}

.vt-nav {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vt-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 58px);
	min-height: 52px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vt-nav a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 52px;
	color: #e5eaf5 !important;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.025em;
}

.vt-nav a::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	content: "";
	background: linear-gradient(90deg, var(--vt-orange), var(--vt-teal));
	border-radius: 3px 3px 0 0;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.vt-nav a:hover::after,
.vt-nav a:focus-visible::after {
	transform: scaleX(1);
}

.vt-hero {
	position: relative;
	overflow: hidden;
	padding: 86px 0 94px;
	color: #fff;
	background:
		linear-gradient(135deg, rgba(11, 16, 32, 0.98), rgba(21, 30, 61, 0.96)),
		radial-gradient(circle at 20% 10%, rgba(255, 122, 26, 0.22), transparent 38%);
}

.vt-hero::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	opacity: 0.22;
	background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.vt-hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.25;
}

.vt-hero-glow-one {
	top: 10%;
	left: -100px;
	width: 330px;
	height: 330px;
	background: var(--vt-orange);
}

.vt-hero-glow-two {
	right: -80px;
	bottom: -120px;
	width: 380px;
	height: 380px;
	background: var(--vt-teal);
}

.vt-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
	gap: 72px;
	align-items: center;
}

.vt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #f8b27c;
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.vt-eyebrow::before {
	width: 26px;
	height: 2px;
	content: "";
	background: currentColor;
}

.vt-eyebrow-dark {
	color: var(--vt-orange-dark);
}

.vt-hero h1 {
	max-width: 720px;
	margin-bottom: 24px;
	font-size: clamp(44px, 5.5vw, 74px);
}

.vt-hero-lead {
	max-width: 680px;
	color: #cbd3e8;
	font-size: 20px;
	line-height: 1.65;
}

.vt-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.vt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 800;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vt-button:hover,
.vt-button:focus-visible {
	transform: translateY(-2px);
}

.vt-button-primary {
	color: #15100c !important;
	background: linear-gradient(135deg, #ff9b45, var(--vt-orange));
	box-shadow: 0 12px 30px rgba(255, 122, 26, 0.25);
}

.vt-button-secondary {
	color: #fff !important;
	border-color: rgba(255,255,255,.28);
	background: rgba(255,255,255,.07);
}

.vt-button-light {
	color: var(--vt-ink) !important;
	background: #fff;
}

.vt-button-dark {
	color: #fff !important;
	background: var(--vt-ink);
}

.vt-hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 40px;
	padding-top: 24px;
	color: #9da9c2;
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: 13px;
}

.vt-hero-proof strong {
	color: #fff;
}

.vt-hero-story {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 28px;
	background: #151e3d;
	box-shadow: 0 32px 80px rgba(0,0,0,.32);
}

.vt-story-image,
.vt-story-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vt-hero-story::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(to top, rgba(5,8,17,.98) 8%, rgba(5,8,17,.45) 65%, rgba(5,8,17,.05));
}

.vt-story-overlay {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 38px;
}

.vt-post-kicker {
	margin-bottom: 10px;
	color: var(--vt-orange-dark);
	font-family: "Manrope", sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vt-story-overlay .vt-post-kicker {
	color: #ffab69;
}

.vt-story-overlay h2 {
	font-size: 28px;
}

.vt-story-overlay p {
	color: #cbd3e8;
	font-size: 15px;
}

.vt-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	color: #7b8497;
	font-size: 12px;
	font-weight: 600;
}

.vt-story-overlay .vt-post-meta {
	color: #adb7cc;
}

.vt-topic-strip {
	position: relative;
	z-index: 2;
	margin-top: -32px;
}

.vt-topic-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	overflow: hidden;
	border: 1px solid rgba(11,16,32,.08);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--vt-shadow);
}

.vt-topic-card {
	display: grid;
	grid-template-columns: 40px 1fr auto;
	gap: 11px;
	align-items: center;
	min-height: 92px;
	padding: 16px;
	border-right: 1px solid var(--vt-line);
	transition: background 0.2s ease, transform 0.2s ease;
}

.vt-topic-card:last-child {
	border-right: 0;
}

.vt-topic-card:hover {
	z-index: 1;
	background: #fff8f1;
	transform: translateY(-3px);
}

.vt-topic-icon {
	display: grid;
	width: 38px;
	height: 38px;
	color: #fff;
	background: var(--vt-ink-2);
	border-radius: 11px;
	place-items: center;
	font-family: "Manrope", sans-serif;
	font-weight: 800;
}

.vt-topic-card strong,
.vt-topic-card small {
	display: block;
}

.vt-topic-card strong {
	font-family: "Manrope", sans-serif;
	font-size: 13px;
}

.vt-topic-card small {
	margin-top: 2px;
	color: var(--vt-muted);
	font-size: 11px;
}

.vt-topic-finance .vt-topic-icon,
.vt-topic-travel .vt-topic-icon {
	background: var(--vt-teal);
}

.vt-topic-fashion .vt-topic-icon,
.vt-topic-entertainment .vt-topic-icon {
	background: var(--vt-orange);
}

.vt-section {
	padding: 92px 0;
}

.vt-section-muted {
	background: #f0eee8;
}

.vt-section-soft {
	background: #faf8f3;
}

.vt-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 38px;
}

.vt-section-heading h2 {
	margin-bottom: 0;
	font-size: clamp(32px, 4vw, 48px);
}

.vt-section-heading > p {
	max-width: 440px;
	margin-bottom: 4px;
	color: var(--vt-muted);
}

.vt-section-heading-line {
	padding-bottom: 20px;
	border-bottom: 2px solid var(--vt-ink);
}

.vt-text-link {
	color: var(--vt-orange-dark) !important;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 800;
}

.vt-text-link span {
	display: inline-block;
	margin-left: 4px;
	transition: transform 0.2s ease;
}

.vt-text-link:hover span {
	transform: translateX(4px);
}

.vt-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.vt-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--vt-line);
	border-radius: var(--vt-radius);
	box-shadow: 0 8px 26px rgba(11,16,32,.05);
	transition: transform .22s ease, box-shadow .22s ease;
}

.vt-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--vt-shadow);
}

.vt-card-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #e9ebf0;
}

.vt-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.vt-card:hover .vt-card-image img {
	transform: scale(1.035);
}

.vt-card-body {
	padding: 24px;
}

.vt-card h2,
.vt-card h3 {
	font-size: 21px;
	line-height: 1.3;
}

.vt-card p {
	color: var(--vt-muted);
	font-size: 14px;
	line-height: 1.6;
}

.vt-editorial-intro,
.vt-about-grid {
	display: grid;
	grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
	gap: 90px;
}

.vt-editorial-intro h2,
.vt-about-grid h2 {
	font-size: clamp(36px, 4.5vw, 58px);
}

.vt-rich-copy {
	color: #3c4559;
	font-size: 18px;
}

.vt-rich-copy p:first-child {
	color: var(--vt-ink);
	font-size: 21px;
}

.vt-category-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.vt-horizontal-card {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 20px;
	align-items: start;
}

.vt-horizontal-image {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	background: #e9ebf0;
}

.vt-horizontal-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vt-horizontal-card h3 {
	font-size: 18px;
	line-height: 1.35;
}

.vt-horizontal-card p {
	color: var(--vt-muted);
	font-size: 13px;
	line-height: 1.55;
}

.vt-trust-section {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: var(--vt-ink);
}

.vt-trust-section::before {
	position: absolute;
	top: -200px;
	right: -160px;
	width: 540px;
	height: 540px;
	content: "";
	background: radial-gradient(circle, rgba(15,157,138,.3), transparent 65%);
}

.vt-trust-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.vt-trust-copy h2 {
	font-size: clamp(38px, 4.2vw, 56px);
}

.vt-trust-copy p {
	color: #bcc6da;
}

.vt-trust-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.vt-trust-cards > div {
	padding: 24px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	background: rgba(255,255,255,.055);
}

.vt-trust-cards span {
	color: var(--vt-orange);
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.vt-trust-cards h3 {
	margin-top: 16px;
	font-size: 18px;
}

.vt-trust-cards p {
	margin: 0;
	color: #aeb8cd;
	font-size: 13px;
	line-height: 1.55;
}

.vt-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.vt-faq-grid details,
.vt-faq-list details {
	padding: 20px 22px;
	border: 1px solid var(--vt-line);
	border-radius: 14px;
	background: #fff;
}

.vt-faq-grid summary,
.vt-faq-list summary {
	position: relative;
	padding-right: 28px;
	cursor: pointer;
	font-family: "Manrope", sans-serif;
	font-weight: 800;
	list-style: none;
}

.vt-faq-grid summary::after,
.vt-faq-list summary::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "+";
	color: var(--vt-orange-dark);
	font-size: 22px;
}

.vt-faq-grid details[open] summary::after,
.vt-faq-list details[open] summary::after {
	content: "−";
}

.vt-faq-grid details p,
.vt-faq-list details p {
	margin: 14px 0 0;
	color: var(--vt-muted);
	font-size: 14px;
}

.vt-newsletter {
	padding: 58px 0;
	color: #fff;
	background: linear-gradient(115deg, #151e3d, #0b1020);
}

.vt-newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.vt-newsletter h2 {
	font-size: 38px;
}

.vt-newsletter p {
	margin: 0;
	color: #b9c3d8;
}

.vt-newsletter-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.vt-footer {
	position: relative;
	color: #c4cbe0;
	background: #080d1a;
}

.vt-footer-accent {
	height: 4px;
	background: linear-gradient(90deg, var(--vt-orange), var(--vt-teal), var(--vt-orange));
}

.vt-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr .7fr .8fr 1fr;
	gap: 64px;
	padding-block: 74px;
}

.vt-footer-brand img {
	width: 300px;
	margin-bottom: 22px;
}

.vt-footer-brand p,
.vt-footer-note p {
	font-size: 14px;
}

.vt-footer h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: 15px;
	letter-spacing: .02em;
}

.vt-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vt-footer li {
	margin: 0 0 9px;
}

.vt-footer li a {
	color: #b7c1d8 !important;
	font-size: 14px;
}

.vt-footer li a:hover {
	color: var(--vt-orange) !important;
}

.vt-trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.vt-trust-badges span {
	padding: 5px 9px;
	color: #dbe2f1;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
}

.vt-footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-block: 20px;
	border-top: 1px solid rgba(255,255,255,.09);
	font-size: 12px;
}

.vt-footer-bottom p {
	margin: 0;
}

.vt-article-header,
.vt-archive-hero,
.vt-page-hero {
	padding: 76px 0 66px;
	color: #fff;
	background:
		linear-gradient(130deg, rgba(11,16,32,.98), rgba(21,30,61,.96)),
		radial-gradient(circle at 85% 20%, rgba(15,157,138,.28), transparent 30%);
}

.vt-article-header-inner {
	max-width: 980px;
}

.vt-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
	color: #9faac0;
	font-size: 12px;
}

.vt-breadcrumbs a {
	color: #dce3ef !important;
}

.vt-article-category {
	display: inline-block;
	margin-bottom: 18px;
	color: #ffac6d !important;
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.vt-article-header h1,
.vt-archive-hero h1,
.vt-page-hero h1 {
	max-width: 980px;
	font-size: clamp(40px, 6vw, 70px);
}

.vt-article-deck {
	max-width: 780px;
	color: #c4cde0;
	font-size: 20px;
}

.vt-article-byline {
	display: flex;
	gap: 13px;
	align-items: center;
	margin-top: 30px;
}

.vt-author-mark {
	display: grid;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	color: #fff;
	background: linear-gradient(135deg, var(--vt-orange), var(--vt-teal));
	border-radius: 13px;
	place-items: center;
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.vt-article-byline strong,
.vt-article-byline span {
	display: block;
}

.vt-article-byline strong {
	font-size: 14px;
}

.vt-article-byline span {
	color: #9faac0;
	font-size: 12px;
}

.vt-article-featured {
	overflow: hidden;
	max-width: 1180px;
	margin-top: 54px;
	border-radius: 26px;
	box-shadow: var(--vt-shadow);
}

.vt-article-featured img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.vt-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 80px;
	padding-block: 70px 100px;
}

.vt-article-main {
	max-width: 780px;
}

.vt-article-content {
	color: #30394b;
	font-size: 18px;
	line-height: 1.82;
}

.vt-article-content > p:first-child.vt-lead,
.vt-article-content > p:first-child {
	color: #1d2638;
	font-size: 21px;
	line-height: 1.75;
}

.vt-article-content h2 {
	margin-top: 2.2em;
	margin-bottom: .7em;
	color: var(--vt-ink);
	font-size: 34px;
}

.vt-article-content h3 {
	margin-top: 1.7em;
	color: var(--vt-ink);
	font-size: 22px;
}

.vt-article-content a {
	color: var(--vt-orange-dark) !important;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vt-article-content ul,
.vt-article-content ol {
	margin: 0 0 1.8em;
	padding-left: 1.3em;
}

.vt-article-content li {
	margin-bottom: .7em;
}

.vt-key-takeaway {
	margin: 32px 0 42px;
	padding: 22px 24px;
	color: #1d3440;
	background: #edf8f5;
	border-left: 4px solid var(--vt-teal);
	border-radius: 0 14px 14px 0;
}

.vt-steps {
	padding: 0 !important;
	list-style: none;
	counter-reset: vtsteps;
}

.vt-steps li {
	position: relative;
	margin-bottom: 14px;
	padding: 20px 22px 20px 66px;
	background: #faf8f3;
	border: 1px solid #ece8df;
	border-radius: 14px;
	counter-increment: vtsteps;
}

.vt-steps li::before {
	position: absolute;
	top: 20px;
	left: 20px;
	display: grid;
	width: 32px;
	height: 32px;
	content: counter(vtsteps);
	color: #fff;
	background: var(--vt-ink);
	border-radius: 9px;
	place-items: center;
	font-size: 13px;
	font-weight: 800;
}

.vt-steps strong,
.vt-steps span {
	display: block;
}

.vt-steps span {
	margin-top: 5px;
	color: #4f596d;
	font-size: 16px;
}

.vt-mistakes li::marker {
	color: var(--vt-orange);
}

.vt-checklist {
	padding: 24px 28px 22px 52px !important;
	background: #fff8f1;
	border: 1px solid #ffe0c7;
	border-radius: 18px;
}

.vt-checklist li::marker {
	color: var(--vt-teal);
	content: "✓  ";
	font-weight: 800;
}

.vt-faq-list {
	display: grid;
	gap: 12px;
}

.vt-related-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: 42px;
	padding: 22px;
	background: #f6f4ef;
	border-radius: 14px;
	font-size: 14px;
}

.vt-author-box {
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 24px;
	margin-top: 70px;
	padding: 32px;
	background: #f5f2eb;
	border-radius: 22px;
}

.vt-author-mark-large {
	width: 74px;
	height: 74px;
	border-radius: 22px;
	font-size: 18px;
}

.vt-author-box h2 {
	font-size: 25px;
}

.vt-author-box p {
	color: var(--vt-muted);
	font-size: 14px;
}

.vt-author-expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0;
}

.vt-author-expertise strong {
	flex-basis: 100%;
	color: var(--vt-ink);
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.vt-author-expertise span {
	padding: 7px 10px;
	border: 1px solid rgba(11, 16, 32, .12);
	border-radius: 999px;
	background: #fff;
	color: #33405a;
	font-size: 12px;
	font-weight: 700;
}

.vt-sidebar {
	display: grid;
	align-content: start;
	gap: 18px;
}

.vt-article-layout .vt-sidebar {
	position: sticky;
	top: 178px;
}

.vt-sidebar-card {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--vt-line);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(11,16,32,.04);
}

.vt-sidebar-card h2 {
	font-size: 20px;
}

.vt-sidebar-card p {
	color: var(--vt-muted);
	font-size: 13px;
}

.vt-reading-badge {
	display: inline-flex;
	padding: 6px 10px;
	color: #146457;
	background: #e8f7f3;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
}

.vt-sidebar-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vt-sidebar-links li {
	border-top: 1px solid var(--vt-line);
}

.vt-sidebar-links li:first-child {
	border-top: 0;
}

.vt-sidebar-links a {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 700;
}

.vt-sidebar-links a span {
	color: var(--vt-orange);
}

.vt-sidebar-trust {
	color: #fff;
	background: var(--vt-ink);
	border-color: var(--vt-ink);
}

.vt-sidebar-trust p {
	color: #b8c1d4;
}

.vt-sidebar-trust a {
	color: #ffac6d !important;
	font-size: 13px;
	font-weight: 800;
}

.vt-related-section {
	background: #f7f5f0;
}

.vt-archive-description {
	max-width: 720px;
	color: #c4cde0;
	font-size: 18px;
}

.vt-archive-description p:last-child {
	margin-bottom: 0;
}

.vt-archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 60px;
	padding-block: 70px 100px;
}

.vt-archive-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.vt-archive-card h2 {
	font-size: 22px;
}

.vt-pagination {
	margin-top: 44px;
}

.vt-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vt-pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid var(--vt-line);
	border-radius: 10px;
	place-items: center;
	font-size: 13px;
	font-weight: 800;
}

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

.vt-empty-state {
	padding: 60px;
	text-align: center;
	background: #f6f4ef;
	border-radius: 24px;
}

.vt-page-layout {
	max-width: 900px;
	padding-block: 70px 100px;
}

.vt-page-content {
	padding: 44px;
	background: #fff;
	border: 1px solid var(--vt-line);
	border-radius: 22px;
	box-shadow: 0 10px 34px rgba(11,16,32,.05);
}

.vt-404 {
	padding: 120px 0;
	text-align: center;
}

.vt-404 h1 {
	max-width: 800px;
	margin-inline: auto;
	font-size: clamp(42px, 6vw, 72px);
}

.vt-404 p {
	color: var(--vt-muted);
	font-size: 19px;
}

.vt-404 .vt-hero-actions {
	justify-content: center;
}

@media (max-width: 1100px) {
	.vt-topic-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.vt-topic-card:nth-child(3) {
		border-right: 0;
	}

	.vt-topic-card:nth-child(-n+3) {
		border-bottom: 1px solid var(--vt-line);
	}

	.vt-footer-grid {
		grid-template-columns: 1.2fr .8fr .8fr;
	}

	.vt-footer-note {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.admin-bar .vt-header {
		top: 46px;
	}

	.vt-topbar {
		display: none;
	}

	.vt-header-main {
		min-height: 72px;
	}

	.vt-brand img {
		width: 260px;
	}

	.vt-menu-toggle,
	.vt-header-search {
		display: grid;
		width: 42px;
		height: 42px;
		padding: 0;
		color: #fff;
		background: transparent;
		border: 1px solid rgba(255,255,255,.16);
		border-radius: 10px;
		place-items: center;
	}

	.vt-menu-toggle {
		gap: 4px;
		align-content: center;
	}

	.vt-menu-toggle > span:not(.screen-reader-text) {
		display: block;
		width: 18px;
		height: 2px;
		background: #fff;
		border-radius: 2px;
	}

	.vt-header-search svg {
		width: 19px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-width: 1.8;
	}

	.vt-nav {
		display: none;
		border-top: 1px solid rgba(255,255,255,.1);
	}

	.vt-nav.is-open {
		display: block;
	}

	.vt-nav ul {
		display: grid;
		gap: 0;
		padding-block: 10px;
	}

	.vt-nav li {
		border-bottom: 1px solid rgba(255,255,255,.08);
	}

	.vt-nav li:last-child {
		border-bottom: 0;
	}

	.vt-nav a {
		justify-content: center;
	}

	.vt-hero {
		padding: 64px 0 80px;
	}

	.vt-hero-grid,
	.vt-trust-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.vt-hero-story {
		min-height: 440px;
	}

	.vt-feature-grid,
	.vt-category-posts {
		grid-template-columns: 1fr 1fr;
	}

	.vt-editorial-intro,
	.vt-about-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.vt-article-layout,
	.vt-archive-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.vt-article-main {
		max-width: none;
	}

	.vt-article-layout .vt-sidebar {
		position: static;
	}
}

@media (max-width: 700px) {
	.vt-container {
		width: min(calc(100% - 28px), var(--vt-container));
	}

	.vt-brand img {
		width: 210px;
	}

	.vt-hero h1 {
		font-size: 43px;
	}

	.vt-hero-lead {
		font-size: 18px;
	}

	.vt-hero-proof {
		display: grid;
		gap: 8px;
	}

	.vt-story-overlay {
		padding: 26px;
	}

	.vt-topic-grid {
		grid-template-columns: 1fr 1fr;
	}

	.vt-topic-card,
	.vt-topic-card:nth-child(3) {
		border-right: 1px solid var(--vt-line);
		border-bottom: 1px solid var(--vt-line);
	}

	.vt-topic-card:nth-child(2n) {
		border-right: 0;
	}

	.vt-topic-card:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.vt-section {
		padding: 68px 0;
	}

	.vt-section-heading {
		display: block;
	}

	.vt-section-heading > p,
	.vt-section-heading .vt-text-link {
		display: inline-block;
		margin-top: 16px;
	}

	.vt-feature-grid,
	.vt-category-posts,
	.vt-faq-grid,
	.vt-archive-grid {
		grid-template-columns: 1fr;
	}

	.vt-horizontal-card {
		grid-template-columns: 100px 1fr;
	}

	.vt-trust-cards {
		grid-template-columns: 1fr;
	}

	.vt-newsletter-inner,
	.vt-footer-bottom {
		display: block;
	}

	.vt-newsletter-actions {
		margin-top: 24px;
	}

	.vt-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 44px 28px;
	}

	.vt-footer-brand,
	.vt-footer-note {
		grid-column: 1 / -1;
	}

	.vt-footer-bottom p + p {
		margin-top: 5px;
	}

	.vt-article-header,
	.vt-archive-hero,
	.vt-page-hero {
		padding: 54px 0 50px;
	}

	.vt-article-header h1,
	.vt-archive-hero h1,
	.vt-page-hero h1 {
		font-size: 40px;
	}

	.vt-article-deck {
		font-size: 17px;
	}

	.vt-article-featured {
		width: calc(100% - 28px);
		margin-top: 28px;
		border-radius: 18px;
	}

	.vt-article-layout {
		padding-block: 48px 70px;
	}

	.vt-article-content {
		font-size: 17px;
	}

	.vt-article-content h2 {
		font-size: 29px;
	}

	.vt-author-box {
		grid-template-columns: 1fr;
	}

	.vt-page-content {
		padding: 26px;
	}
}

@media (max-width: 430px) {
	.vt-header-main {
		grid-template-columns: 42px 1fr 42px;
	}

	.vt-brand img {
		width: 176px;
	}

	.vt-topic-grid {
		grid-template-columns: 1fr;
	}

	.vt-topic-card,
	.vt-topic-card:nth-child(n) {
		border-right: 0;
		border-bottom: 1px solid var(--vt-line);
	}

	.vt-topic-card:last-child {
		border-bottom: 0;
	}

	.vt-hero-actions,
	.vt-newsletter-actions {
		display: grid;
	}

	.vt-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

.screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
}
