/*
Theme Name: VegasStock for GeneratePress
Theme URI: https://vegastock.com/
Template: generatepress
Author: Maters Alpha
Description: A complete editorial child theme for VegasStock, built on GeneratePress.
Version: 1.3.0
Text Domain: vegasstock
*/

:root {
	--vs-brand-950: #071b34;
	--vs-brand-900: #0b2444;
	--vs-brand-800: #103a6c;
	--vs-brand-700: #164f96;
	--vs-brand-600: #1464d2;
	--vs-brand-500: #1674e8;
	--vs-brand-100: #dbeafe;
	--vs-brand-050: #f2f7ff;
	--vs-mint-600: #009e84;
	--vs-mint-100: #d7f7ee;
	--vs-violet-700: #6d28d9;
	--vs-violet-100: #ede9fe;
	--vs-orange-700: #a13c12;
	--vs-orange-100: #ffedd5;
	--vs-ink-950: #101828;
	--vs-ink-900: #182230;
	--vs-ink-800: #1d2939;
	--vs-ink-700: #344054;
	--vs-ink-600: #475467;
	--vs-ink-500: #667085;
	--vs-ink-400: #98a2b3;
	--vs-line-strong: #cfd6df;
	--vs-line: #e4e7ec;
	--vs-canvas: #f6f8fb;
	--vs-surface: #fff;
	--vs-surface-muted: #f2f4f7;
	--vs-rise: #b42318;
	--vs-rise-bg: #fef3f2;
	--vs-fall: #175cd3;
	--vs-fall-bg: #eff8ff;
	--vs-warning: #9a3412;
	--vs-focus: #f59e0b;
	--vs-font-sans: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--vs-font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	--vs-shadow-sm: 0 1px 2px rgba(16, 24, 40, .04), 0 3px 10px rgba(16, 24, 40, .04);
	--vs-shadow-lg: 0 18px 50px rgba(7, 27, 52, .14);
	--vs-radius-sm: 8px;
	--vs-radius-md: 12px;
	--vs-radius-lg: 20px;
	--vs-radius-xl: 28px;
	--vs-container: 1200px;
	--vs-prose: 760px;
	--vs-sidebar: 300px;
	--vs-gutter: 24px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 150px;
}

body.vegasstock-site {
	margin: 0;
	background: var(--vs-canvas);
	color: var(--vs-ink-950);
	font-family: var(--vs-font-sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;
}

body.vs-no-scroll {
	overflow: hidden;
}

body.vegasstock-site a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .16em;
}

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

body.vegasstock-site button,
body.vegasstock-site input,
body.vegasstock-site textarea,
body.vegasstock-site select {
	font: inherit;
}

body.vegasstock-site button {
	color: inherit;
}

body.vegasstock-site h1,
body.vegasstock-site h2,
body.vegasstock-site h3,
body.vegasstock-site h4,
body.vegasstock-site p {
	margin-top: 0;
}

[hidden] {
	display: none !important;
}

.vs-container {
	width: min(calc(100% - (var(--vs-gutter) * 2)), var(--vs-container));
	margin-inline: auto;
}

.vs-main {
	display: block;
	min-height: 52vh;
	overflow: clip;
}

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

.screen-reader-text:focus,
.vs-skip-link:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	color: var(--vs-ink-950);
	font-weight: 800;
	box-shadow: var(--vs-shadow-lg);
}

:where(a, button, input, textarea, select, summary):focus-visible {
	outline: 3px solid var(--vs-focus);
	outline-offset: 3px;
}

.vs-eyebrow {
	margin-bottom: 8px;
	color: var(--vs-brand-600);
	font-family: var(--vs-font-mono);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.vs-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 10px 20px;
	border: 1px solid var(--vs-brand-600);
	border-radius: var(--vs-radius-sm);
	background: var(--vs-brand-600);
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.vs-button:hover {
	border-color: var(--vs-brand-800);
	background: var(--vs-brand-800);
	transform: translateY(-1px);
}

.vs-button svg,
.vs-text-link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.vs-button--secondary {
	border-color: var(--vs-line-strong);
	background: #fff;
	color: var(--vs-ink-800) !important;
}

.vs-button--secondary:hover {
	border-color: var(--vs-brand-600);
	background: var(--vs-brand-050);
}

.vs-button--light {
	border-color: #fff;
	background: #fff;
	color: var(--vs-brand-900) !important;
}

.vs-button--light:hover {
	border-color: var(--vs-mint-100);
	background: var(--vs-mint-100);
}

.vs-text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--vs-brand-600) !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.vs-text-link:hover {
	color: var(--vs-brand-800) !important;
}

/* Header */
.vs-risk-strip {
	background: var(--vs-brand-950);
	color: rgba(255, 255, 255, .78);
	font-size: 12px;
}

.vs-risk-strip__inner {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 36px;
}

.vs-risk-strip__inner p {
	margin: 0;
}

.vs-risk-strip__label {
	flex: 0 0 auto;
	padding: 2px 8px;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 999px;
	color: #fff;
	font-weight: 800;
}

.vs-risk-strip a {
	margin-left: auto;
	color: #fff !important;
	font-weight: 700;
}

.vs-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 1px 0 var(--vs-line);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

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

.vs-site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 30px;
	min-height: 74px;
}

.vs-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--vs-brand-950) !important;
	text-decoration: none !important;
}

.vs-brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 13px;
	background: var(--vs-brand-600);
	box-shadow: inset 0 -5px 14px rgba(7, 27, 52, .18);
}

.vs-brand__mark svg {
	width: 36px;
	height: 36px;
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.3;
}

.vs-brand__mark circle {
	fill: var(--vs-mint-100);
	stroke: var(--vs-mint-100);
}

.vs-brand__copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.vs-brand__copy strong {
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -.06em;
}

.vs-brand__copy small {
	margin-top: 5px;
	color: var(--vs-ink-500);
	font-family: var(--vs-font-mono);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .22em;
}

.vs-site-header__tagline {
	margin: 0;
	padding-left: 30px;
	border-left: 1px solid var(--vs-line);
	color: var(--vs-ink-500);
	font-size: 13px;
}

.vs-site-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vs-icon-button {
	display: inline-grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--vs-line);
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease;
}

.vs-icon-button:hover {
	border-color: var(--vs-brand-600);
	background: var(--vs-brand-050);
}

.vs-icon-button svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.vs-menu-toggle {
	display: none;
}

.vs-nav-bar {
	border-top: 1px solid var(--vs-line);
}

.vs-nav-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 50px;
}

.vs-primary-nav {
	min-width: 0;
}

.vs-menu,
.vs-primary-nav ul {
	display: flex;
	align-items: stretch;
	gap: 30px;
	min-height: 50px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-menu li,
.vs-primary-nav li {
	display: flex;
	align-items: stretch;
	margin: 0;
}

.vs-menu a,
.vs-primary-nav a {
	position: relative;
	display: flex;
	align-items: center;
	color: var(--vs-ink-800) !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.vs-menu a::after,
.vs-primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--vs-brand-600);
	content: "";
	transform: scaleX(0);
	transition: transform .2s ease;
}

.vs-menu a:hover::after,
.vs-primary-nav a:hover::after,
.vs-menu .current-menu-item > a::after,
.vs-primary-nav .current-menu-item > a::after,
.vs-menu .current-post-ancestor > a::after {
	transform: scaleX(1);
}

.vs-nav-search {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 235px;
	height: 34px;
	padding: 0 8px 0 12px;
	border: 1px solid var(--vs-line);
	border-radius: 8px;
	background: var(--vs-surface-muted);
	color: var(--vs-ink-500) !important;
	font-size: 12px !important;
	cursor: pointer;
}

.vs-nav-search svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.vs-nav-search kbd {
	margin-left: auto;
	padding: 1px 6px;
	border: 1px solid var(--vs-line-strong);
	border-bottom-width: 2px;
	border-radius: 4px;
	background: #fff;
	color: var(--vs-ink-500);
	font-family: var(--vs-font-mono);
	font-size: 10px;
}

.vs-mobile-menu {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	padding: 26px 0 30px;
	border-top: 1px solid var(--vs-line);
	background: #fff;
	box-shadow: var(--vs-shadow-lg);
}

.vs-mobile-menu__label {
	margin-bottom: 10px;
	color: var(--vs-ink-400);
	font-family: var(--vs-font-mono);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
}

.vs-mobile-menu__list,
.vs-mobile-menu nav ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-mobile-menu__list a,
.vs-mobile-menu nav a {
	display: block;
	padding: 13px 0;
	border-bottom: 1px solid var(--vs-line);
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
}

.vs-mobile-menu__legal {
	display: flex;
	gap: 18px;
	margin-top: 22px;
	font-size: 13px;
}

/* Search dialog */
.vs-search-dialog {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: start center;
	padding: min(15vh, 120px) 24px 30px;
}

.vs-search-dialog__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 27, 52, .72);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.vs-search-dialog__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 720px);
	padding: 46px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--vs-radius-xl);
	background: #fff;
	box-shadow: var(--vs-shadow-lg);
}

.vs-search-dialog__panel h2 {
	margin-bottom: 8px;
	font-size: clamp(28px, 4vw, 42px);
	letter-spacing: -.05em;
}

.vs-search-dialog__panel > p:not(.vs-eyebrow) {
	margin-bottom: 24px;
	color: var(--vs-ink-600);
}

.vs-search-dialog__close {
	position: absolute;
	top: 22px;
	right: 22px;
}

.vs-search-form {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.vs-search-form__icon {
	position: absolute;
	left: 17px;
	z-index: 1;
	display: grid;
	place-items: center;
	color: var(--vs-ink-500);
}

.vs-search-form__icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.vs-search-form__input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	height: 52px;
	padding: 0 18px 0 49px;
	border: 1px solid var(--vs-line-strong);
	border-radius: var(--vs-radius-sm);
	background: #fff;
	color: var(--vs-ink-950);
	font-size: 15px;
}

.vs-search-form .vs-button {
	flex: 0 0 auto;
	white-space: nowrap;
}

.vs-search-form__input:focus {
	border-color: var(--vs-brand-600);
}

.vs-search-dialog__topics {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
}

.vs-search-dialog__topics span {
	margin-right: 4px;
	color: var(--vs-ink-500);
	font-size: 12px;
	font-weight: 700;
}

.vs-search-dialog__topics a {
	padding: 5px 11px;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	background: var(--vs-surface-muted);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

/* Home intro */
.vs-home-intro {
	position: relative;
	padding: 78px 0 108px;
	overflow: hidden;
	background-color: var(--vs-brand-950);
	background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), radial-gradient(circle at 78% 20%, rgba(22,116,232,.38), transparent 32%);
	background-size: 48px 48px, 48px 48px, auto;
	color: #fff;
}

.vs-home-intro::after {
	position: absolute;
	right: -110px;
	bottom: -170px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 50%;
	box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
	content: "";
}

.vs-home-intro__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
	align-items: end;
	gap: 80px;
}

.vs-home-intro .vs-eyebrow {
	color: #79c2ff;
}

.vs-home-intro h1 {
	margin: 0;
	font-size: clamp(42px, 5.6vw, 74px);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: 1.08;
}

.vs-home-intro h1 em {
	position: relative;
	color: #8ce8d3;
	font-style: normal;
}

.vs-home-intro h1 em::after {
	position: absolute;
	right: 0;
	bottom: -5px;
	left: 0;
	height: 3px;
	border-radius: 999px;
	background: #8ce8d3;
	content: "";
}

.vs-home-intro__inner > p {
	margin: 0 0 4px;
	color: rgba(255,255,255,.72);
	font-size: 16px;
	line-height: 1.85;
}

/* Shared section heading */
.vs-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 28px;
}

.vs-section-heading h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 38px);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: 1.2;
}

.vs-section-heading > div > p:last-child:not(.vs-eyebrow) {
	margin: 9px 0 0;
	color: var(--vs-ink-600);
	font-size: 14px;
}

/* Cards */
.vs-card {
	position: relative;
	min-width: 0;
}

.vs-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--vs-radius-md);
	background: var(--vs-brand-050);
	text-decoration: none;
}

.vs-card__image,
.vs-card__placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform .35s ease;
}

.vs-card:hover .vs-card__image,
.vs-card:hover .vs-card__placeholder {
	transform: scale(1.025);
}

.vs-card__placeholder {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 24px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--vs-brand-900), var(--vs-brand-600));
	color: #fff;
}

.vs-card__placeholder::before {
	position: absolute;
	top: -35%;
	right: -15%;
	width: 75%;
	aspect-ratio: 1;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%;
	box-shadow: 0 0 0 28px rgba(255,255,255,.035), 0 0 0 56px rgba(255,255,255,.025);
	content: "";
}

.vs-card__placeholder--crypto {
	background: linear-gradient(135deg, #3b1a73, var(--vs-violet-700));
}

.vs-card__placeholder--korea-stocks {
	background: linear-gradient(135deg, #073b34, var(--vs-mint-600));
}

.vs-card__placeholder--investing-basics {
	background: linear-gradient(135deg, #67250b, var(--vs-orange-700));
}

.vs-card__placeholder strong,
.vs-card__placeholder small {
	position: relative;
	z-index: 1;
}

.vs-card__placeholder strong {
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -.03em;
}

.vs-card__placeholder small {
	margin-top: 3px;
	opacity: .7;
	font-family: var(--vs-font-mono);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .14em;
}

.vs-card__placeholder-chart {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: flex;
	align-items: end;
	gap: 6px;
	height: 58px;
	opacity: .42;
}

.vs-card__placeholder-chart i {
	display: block;
	width: 7px;
	border-radius: 2px 2px 0 0;
	background: #fff;
}

.vs-card__placeholder-chart i:nth-child(1) { height: 22%; }
.vs-card__placeholder-chart i:nth-child(2) { height: 45%; }
.vs-card__placeholder-chart i:nth-child(3) { height: 36%; }
.vs-card__placeholder-chart i:nth-child(4) { height: 72%; }
.vs-card__placeholder-chart i:nth-child(5) { height: 100%; }

.vs-card__body {
	padding-top: 17px;
}

.vs-card__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.vs-card__eyebrow time {
	color: var(--vs-ink-500);
	font-family: var(--vs-font-mono);
	font-size: 11px;
}

.vs-badge {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--vs-brand-100);
	color: var(--vs-brand-700) !important;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.vs-badge--crypto {
	background: var(--vs-violet-100);
	color: var(--vs-violet-700) !important;
}

.vs-badge--korea-stocks {
	background: var(--vs-mint-100);
	color: #087766 !important;
}

.vs-badge--investing-basics,
.vs-badge--notice {
	background: var(--vs-orange-100);
	color: var(--vs-orange-700) !important;
}

.vs-card__title {
	margin: 0;
	font-size: 20px;
	font-weight: 850;
	letter-spacing: -.04em;
	line-height: 1.42;
}

.vs-card__title a {
	text-decoration: none;
}

.vs-card__title a:hover {
	color: var(--vs-brand-600);
}

.vs-card__summary {
	display: -webkit-box;
	margin: 9px 0 0;
	overflow: hidden;
	color: var(--vs-ink-600);
	font-size: 14px;
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.vs-card--featured {
	min-width: 0;
}

.vs-card--featured .vs-card__media {
	border-radius: var(--vs-radius-lg);
}

.vs-card--featured .vs-card__placeholder,
.vs-card--featured .vs-card__image {
	aspect-ratio: 16 / 9.4;
}

.vs-card--featured .vs-card__body {
	padding-top: 22px;
}

.vs-card--featured .vs-card__title {
	font-size: clamp(26px, 3.2vw, 42px);
	line-height: 1.25;
}

.vs-card--featured .vs-card__summary {
	max-width: 720px;
	font-size: 16px;
	-webkit-line-clamp: 2;
}

.vs-card--featured .vs-text-link {
	margin-top: 18px;
}

.vs-card--horizontal {
	display: grid;
	grid-template-columns: minmax(180px, 42%) 1fr;
	align-items: start;
	gap: 22px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--vs-line);
}

.vs-card--horizontal .vs-card__body {
	padding-top: 2px;
}

.vs-card--horizontal .vs-card__media {
	border-radius: var(--vs-radius-sm);
}

.vs-card--horizontal .vs-card__title {
	font-size: clamp(18px, 2vw, 24px);
}

.vs-card--horizontal .vs-card__summary {
	-webkit-line-clamp: 2;
}

.vs-card--ranked {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 12px;
	padding: 15px 0;
	border-bottom: 1px solid var(--vs-line);
}

.vs-card--ranked:last-child {
	border-bottom: 0;
}

.vs-card__rank {
	color: var(--vs-brand-600);
	font-family: var(--vs-font-mono);
	font-size: 18px;
	font-weight: 900;
}

.vs-card--ranked .vs-card__body {
	padding: 0;
}

.vs-card--ranked .vs-card__eyebrow {
	margin-bottom: 6px;
}

.vs-card--ranked .vs-card__eyebrow time {
	display: none;
}

.vs-card--ranked .vs-card__title {
	font-size: 14px;
	line-height: 1.55;
}

.vs-card-grid {
	display: grid;
	gap: 34px 24px;
}

.vs-card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vs-card-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Home sections */
.vs-home-feature {
	position: relative;
	z-index: 2;
	margin-top: -48px;
	padding-bottom: 72px;
}

.vs-home-feature > .vs-container {
	padding: 34px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-xl);
	background: #fff;
	box-shadow: var(--vs-shadow-lg);
}

.vs-feature-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(320px, .85fr);
	gap: 34px;
}

.vs-feature-layout--solo {
	display: block;
}

.vs-feature-layout--solo .vs-card--featured {
	max-width: 900px;
	margin-inline: auto;
}

.vs-feature-layout__side {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.vs-feature-layout__side .vs-card--horizontal {
	display: block;
}

.vs-feature-layout__side .vs-card--horizontal .vs-card__summary {
	display: none;
}

.vs-feature-layout__side .vs-card--horizontal .vs-card__title {
	font-size: 18px;
}

.vs-feature-layout__side .vs-card--horizontal .vs-card__media .vs-card__placeholder,
.vs-feature-layout__side .vs-card--horizontal .vs-card__media .vs-card__image {
	aspect-ratio: 16 / 7.8;
}

.vs-topic-bar {
	padding: 20px 0 76px;
}

.vs-topic-bar > .vs-container {
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: center;
	gap: 34px;
}

.vs-topic-bar__heading h2 {
	margin: 0;
	font-size: 22px;
	letter-spacing: -.04em;
}

.vs-topic-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-md);
	background: #fff;
	box-shadow: var(--vs-shadow-sm);
}

.vs-topic {
	display: grid;
	grid-template-columns: 38px 1fr 18px;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 17px 14px;
	border-right: 1px solid var(--vs-line);
	text-decoration: none;
	transition: background-color .2s ease;
}

.vs-topic:first-child {
	border-radius: var(--vs-radius-md) 0 0 var(--vs-radius-md);
}

.vs-topic:last-child {
	border-right: 0;
	border-radius: 0 var(--vs-radius-md) var(--vs-radius-md) 0;
}

.vs-topic:hover {
	background: var(--vs-brand-050);
}

.vs-topic__icon {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 10px;
	background: var(--vs-brand-100);
	color: var(--vs-brand-700);
	font-family: var(--vs-font-mono);
	font-size: 12px;
	font-weight: 900;
}

.vs-topic strong,
.vs-topic small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vs-topic strong {
	font-size: 13px;
}

.vs-topic small {
	margin-top: 1px;
	color: var(--vs-ink-500);
	font-size: 10px;
}

.vs-topic > svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: var(--vs-ink-400);
	stroke-width: 1.8;
}

.vs-home-latest,
.vs-category-showcase {
	padding: 76px 0;
}

.vs-home-latest {
	background: #fff;
}

.vs-category-showcase--tint {
	background: #fff;
}

.vs-inline-empty {
	padding: 28px 30px;
	border: 1px dashed var(--vs-line-strong);
	border-radius: var(--vs-radius-md);
	background: var(--vs-canvas);
}

.vs-inline-empty p {
	margin: 0;
	color: var(--vs-ink-600);
}

.vs-inline-empty strong {
	color: var(--vs-ink-900);
}

.vs-home-principles {
	padding: 88px 0;
	background: var(--vs-brand-950);
	color: #fff;
}

.vs-home-principles__grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 80px;
}

.vs-home-principles .vs-eyebrow {
	color: #79c2ff;
}

.vs-home-principles h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: 1.2;
}

.vs-principle-list > div {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(255,255,255,.13);
}

.vs-principle-list > div:first-child {
	padding-top: 0;
}

.vs-principle-list span {
	color: #79c2ff;
	font-family: var(--vs-font-mono);
	font-weight: 900;
}

.vs-principle-list p {
	margin: 0;
	color: rgba(255,255,255,.7);
	font-size: 14px;
}

.vs-principle-list strong {
	display: block;
	margin-bottom: 5px;
	color: #fff;
	font-size: 17px;
}

.vs-rss-panel {
	padding: 54px 0;
	background: var(--vs-brand-600);
	color: #fff;
}

.vs-rss-panel__inner {
	display: grid;
	grid-template-columns: 70px 1fr auto;
	align-items: center;
	gap: 24px;
}

.vs-rss-panel__icon {
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 20px;
	background: rgba(255,255,255,.11);
}

.vs-rss-panel__icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.vs-rss-panel .vs-eyebrow {
	color: rgba(255,255,255,.68);
}

.vs-rss-panel h2 {
	margin-bottom: 4px;
	font-size: 29px;
	letter-spacing: -.045em;
}

.vs-rss-panel p:last-child {
	margin: 0;
	color: rgba(255,255,255,.75);
	font-size: 14px;
}

/* Calm editorial home (v1.1) */
.vs-home-clean-hero {
	padding: 58px 0 62px;
	border-bottom: 1px solid var(--vs-line);
	background: #fff;
}

.vs-home-clean-hero__inner {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	align-items: stretch;
	gap: 56px;
}

.vs-home-clean-hero__intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px 0;
}

.vs-home-clean-hero__intro h1 {
	margin: 0;
	font-size: clamp(39px, 3.4vw, 50px);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: 1.18;
	overflow-wrap: normal;
	word-break: keep-all;
}

.vs-home-clean-hero__intro h1 em {
	color: var(--vs-brand-600);
	font-style: normal;
}

.vs-home-clean-hero__intro > p:last-child {
	margin: 25px 0 0;
	color: var(--vs-ink-600);
	font-size: 14px;
	line-height: 1.8;
}

.vs-home-lead {
	display: grid;
	grid-template-columns: minmax(330px, 1.08fr) minmax(290px, .92fr);
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-lg);
	background: #fff;
}

.vs-home-lead__media {
	display: block;
	min-height: 350px;
	overflow: hidden;
	background: var(--vs-brand-050);
	text-decoration: none;
}

.vs-home-lead__media .vs-card__image,
.vs-home-lead__media .vs-card__placeholder {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
}

.vs-home-lead__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	padding: 34px 36px;
}

.vs-home-lead__label {
	margin-bottom: 14px;
	color: var(--vs-brand-600);
	font-family: var(--vs-font-mono);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .11em;
}

.vs-home-lead h2 {
	margin: 2px 0 0;
	font-size: clamp(25px, 2.35vw, 34px);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: 1.32;
}

.vs-home-lead h2 a {
	text-decoration: none;
}

.vs-home-lead h2 a:hover {
	color: var(--vs-brand-600);
}

.vs-home-lead__summary {
	display: -webkit-box;
	margin: 15px 0 21px;
	overflow: hidden;
	color: var(--vs-ink-600);
	font-size: 14px;
	line-height: 1.75;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.vs-home-topic-nav {
	border-bottom: 1px solid var(--vs-line);
	background: #fff;
}

.vs-home-topic-nav__inner {
	display: flex;
	align-items: center;
	min-height: 68px;
}

.vs-home-topic-nav__label {
	flex: 0 0 auto;
	margin-right: 26px;
	color: var(--vs-ink-500);
	font-family: var(--vs-font-mono);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
}

.vs-home-topic-nav__links {
	display: flex;
	align-items: center;
	min-width: 0;
}

.vs-home-topic-nav__links a {
	position: relative;
	padding: 4px 18px;
	color: var(--vs-ink-700) !important;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.vs-home-topic-nav__links a:first-child {
	padding-left: 0;
}

.vs-home-topic-nav__links a:not(:first-child)::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: var(--vs-ink-400);
	content: "";
	transform: translateY(-50%);
}

.vs-home-topic-nav__links a:hover {
	color: var(--vs-brand-600) !important;
}

.vs-home-topic-nav__all {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-left: auto;
	color: var(--vs-brand-600) !important;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.vs-home-topic-nav__all svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.vs-home-clean-latest {
	padding: 70px 0 76px;
}

.vs-section-heading--quiet {
	margin-bottom: 26px;
}

.vs-section-heading--quiet h2 {
	font-size: 31px;
}

.vs-home-standard {
	padding: 38px 0;
	border-top: 1px solid var(--vs-line);
	background: #fff;
}

.vs-home-standard__inner {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr) auto;
	align-items: center;
	gap: 36px;
}

.vs-home-standard__heading h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -.045em;
}

.vs-home-standard__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-home-standard__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 20px;
	border-left: 1px solid var(--vs-line);
}

.vs-home-standard__list span {
	color: var(--vs-brand-600);
	font-family: var(--vs-font-mono);
	font-size: 10px;
	font-weight: 900;
}

.vs-home-standard__list strong {
	font-size: 12px;
	font-weight: 750;
	line-height: 1.55;
}

.vs-home-standard__links {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}

.vs-home-standard__links a {
	color: var(--vs-ink-600) !important;
	font-size: 11px;
	font-weight: 750;
}

.vs-home-standard__links a:hover {
	color: var(--vs-brand-600) !important;
}

/* Breadcrumb and page headers */
.vs-breadcrumb {
	margin-bottom: 26px;
	overflow-x: auto;
	color: var(--vs-ink-500);
	font-size: 12px;
	white-space: nowrap;
}

.vs-breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-breadcrumb li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.vs-breadcrumb li:not(:last-child)::after {
	color: var(--vs-ink-400);
	content: "/";
}

.vs-breadcrumb a {
	text-decoration: none;
}

.vs-breadcrumb a:hover {
	color: var(--vs-brand-600);
}

.vs-page-hero {
	padding: 58px 0 52px;
	border-bottom: 1px solid var(--vs-line);
	background: #fff;
}

.vs-page-hero h1 {
	max-width: 850px;
	margin: 0;
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: 1.15;
}

.vs-page-hero .vs-container > p:last-child:not(.vs-eyebrow) {
	max-width: 760px;
	margin: 18px 0 0;
	color: var(--vs-ink-600);
	font-size: 16px;
}

.vs-page-hero--single {
	padding-bottom: 60px;
}

.vs-subcategory-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 22px;
}

.vs-subcategory-row a {
	padding: 7px 12px;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.vs-subcategory-row span {
	margin-left: 5px;
	color: var(--vs-ink-500);
}

/* Listings */
.vs-listing-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--vs-sidebar);
	align-items: start;
	gap: 54px;
	padding-top: 56px;
	padding-bottom: 88px;
}

.vs-list-stack {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vs-list-stack .vs-card--horizontal {
	grid-template-columns: 240px 1fr;
}

.vs-listing-sidebar {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.vs-sidebar-box {
	padding: 24px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-md);
	background: #fff;
	box-shadow: var(--vs-shadow-sm);
}

.vs-sidebar-box h2 {
	margin-bottom: 15px;
	font-size: 19px;
	letter-spacing: -.04em;
}

.vs-sidebar-box--search .vs-search-form {
	display: block;
}

.vs-sidebar-box--search .vs-search-form__icon {
	top: 23px;
	left: 15px;
	transform: translateY(-50%);
}

.vs-sidebar-box--search .vs-search-form__input {
	height: 46px;
	padding: 0 14px 0 44px;
	font-size: 14px;
}

.vs-sidebar-box--search .vs-button {
	width: 100%;
	min-height: 46px;
	margin-top: 8px;
	padding: 8px 16px;
	font-size: 14px;
	line-height: 1.2;
}

.vs-sidebar-box--risk {
	background: var(--vs-brand-950);
	color: #fff;
}

.vs-sidebar-box--risk > span,
.vs-aside-risk > span {
	display: grid;
	width: 32px;
	height: 32px;
	margin-bottom: 15px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 50%;
	color: #8ce8d3;
	font-family: var(--vs-font-mono);
	font-weight: 900;
}

.vs-sidebar-box--risk p {
	color: rgba(255,255,255,.7);
	font-size: 13px;
}

.vs-sidebar-box--risk a {
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
}

.vs-search-page-form {
	padding: 24px 0;
	border-bottom: 1px solid var(--vs-line);
	background: var(--vs-brand-050);
}

.vs-search-page-form .vs-search-form {
	max-width: 720px;
}

.navigation.pagination {
	margin-top: 38px;
}

.navigation.pagination .nav-links,
.navigation.pagination .page-numbers:not(.page-numbers .page-numbers),
.navigation.pagination ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navigation.pagination a.page-numbers,
.navigation.pagination span.page-numbers,
.navigation.pagination .page-numbers li > * {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	place-items: center;
	border: 1px solid var(--vs-line);
	border-radius: 8px;
	background: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.navigation.pagination .current {
	border-color: var(--vs-brand-600) !important;
	background: var(--vs-brand-600) !important;
	color: #fff;
}

.vs-empty-state {
	padding: 64px 30px;
	border: 1px dashed var(--vs-line-strong);
	border-radius: var(--vs-radius-lg);
	background: #fff;
	text-align: center;
}

.vs-empty-state__mark {
	display: grid;
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;
	place-items: center;
	border-radius: 18px;
	background: var(--vs-brand-100);
	color: var(--vs-brand-700);
	font-family: var(--vs-font-mono);
	font-size: 24px;
	font-weight: 900;
}

.vs-empty-state h2 {
	margin-bottom: 8px;
	font-size: 24px;
	letter-spacing: -.04em;
}

.vs-empty-state > p {
	max-width: 520px;
	margin: 0 auto 22px;
	color: var(--vs-ink-600);
}

.vs-empty-state__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.vs-empty-state__links a {
	padding: 7px 12px;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.vs-page-intro {
	margin-bottom: 26px;
	padding: 19px 22px;
	border-left: 3px solid var(--vs-brand-600);
	background: var(--vs-brand-050);
	color: var(--vs-ink-600);
}

.vs-page-intro p:last-child {
	margin-bottom: 0;
}

/* Standard pages and prose */
.vs-page-shell {
	padding-top: 64px;
	padding-bottom: 96px;
}

.vs-page-content {
	max-width: var(--vs-container);
	margin-inline: auto;
	padding: 54px 60px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-lg);
	background: #fff;
	box-shadow: var(--vs-shadow-sm);
}

.vs-prose {
	color: var(--vs-ink-800);
	font-size: 17px;
	line-height: 1.9;
}

.vs-prose > *:first-child {
	margin-top: 0 !important;
}

.vs-prose > *:last-child {
	margin-bottom: 0 !important;
}

.vs-prose p,
.vs-prose ul,
.vs-prose ol,
.vs-prose blockquote,
.vs-prose figure,
.vs-prose .vs-table-wrap {
	margin-bottom: 24px;
}

.vs-prose h2 {
	margin: 52px 0 18px;
	padding-top: 4px;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: 1.35;
}

.vs-prose h3 {
	margin: 36px 0 14px;
	font-size: 23px;
	font-weight: 850;
	letter-spacing: -.04em;
	line-height: 1.4;
}

.vs-prose h4 {
	margin: 28px 0 10px;
	font-size: 19px;
	font-weight: 850;
}

.vs-prose a:not(.vs-button):not(.vs-badge) {
	color: var(--vs-brand-600);
	font-weight: 700;
}

.vs-prose ul,
.vs-prose ol {
	padding-left: 1.35em;
}

.vs-prose li {
	margin-bottom: 8px;
	padding-left: .2em;
}

.vs-prose blockquote,
.vs-prose .wp-block-quote {
	margin-inline: 0;
	padding: 24px 26px;
	border: 0;
	border-left: 4px solid var(--vs-brand-600);
	border-radius: 0 var(--vs-radius-md) var(--vs-radius-md) 0;
	background: var(--vs-brand-050);
	color: var(--vs-ink-800);
	font-size: 19px;
	font-weight: 700;
}

.vs-prose blockquote p:last-child {
	margin-bottom: 0;
}

.vs-prose figcaption {
	margin-top: 9px;
	color: var(--vs-ink-500);
	font-size: 12px;
	line-height: 1.55;
	text-align: center;
}

.vs-prose code {
	padding: 2px 5px;
	border-radius: 4px;
	background: var(--vs-surface-muted);
	font-family: var(--vs-font-mono);
	font-size: .88em;
}

.vs-prose pre {
	padding: 20px;
	overflow-x: auto;
	border-radius: var(--vs-radius-md);
	background: var(--vs-brand-950);
	color: #fff;
}

.vs-prose hr {
	margin: 46px 0;
	border: 0;
	border-top: 1px solid var(--vs-line);
}

.vs-lead {
	color: var(--vs-ink-700);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.75;
}

.vs-policy-date {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--vs-line);
	color: var(--vs-ink-500);
	font-size: 14px;
}

.vs-callout {
	margin: 30px 0;
	padding: 22px 24px;
	border: 1px solid #b9d6ff;
	border-radius: var(--vs-radius-md);
	background: var(--vs-brand-050);
}

.vs-callout--warning {
	border-color: #fed7aa;
	background: #fff7ed;
}

.vs-callout p:last-child {
	margin-bottom: 0;
}

.vs-table-wrap {
	max-width: 100%;
	overflow-x: auto;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-md);
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.vs-prose table {
	width: 100%;
	min-width: 620px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}

.vs-prose th,
.vs-prose td {
	padding: 13px 15px;
	border: 0;
	border-bottom: 1px solid var(--vs-line);
	text-align: left;
	vertical-align: top;
}

.vs-prose th {
	background: var(--vs-surface-muted);
	font-weight: 850;
}

.vs-prose tr:last-child td {
	border-bottom: 0;
}

/* Single article */
.vs-reading-progress {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1100;
	height: 3px;
	pointer-events: none;
}

.admin-bar .vs-reading-progress {
	top: 32px;
}

.vs-reading-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--vs-brand-500), var(--vs-mint-600));
}

.vs-article-shell {
	padding-top: 42px;
	padding-bottom: 96px;
}

.vs-article-header {
	max-width: 960px;
	margin: 0 auto 34px;
	text-align: center;
}

.vs-article-header__category {
	display: flex;
	justify-content: center;
	margin-bottom: 17px;
}

.vs-article-header h1 {
	margin: 0;
	font-size: clamp(37px, 5vw, 62px);
	font-weight: 900;
	letter-spacing: -.068em;
	line-height: 1.18;
}

.vs-article-header__dek {
	max-width: 800px;
	margin: 22px auto 0;
	color: var(--vs-ink-600);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.7;
}

.vs-article-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--vs-line);
	text-align: left;
}

.vs-article-meta__author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.vs-author-avatar {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--vs-brand-950);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
}

.vs-article-meta__author strong,
.vs-article-meta__author small {
	display: block;
}

.vs-article-meta__author strong {
	font-size: 13px;
}

.vs-article-meta__author small {
	color: var(--vs-ink-500);
	font-size: 11px;
}

.vs-article-meta__details {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 14px;
	padding-left: 28px;
	border-left: 1px solid var(--vs-line);
	color: var(--vs-ink-500);
	font-family: var(--vs-font-mono);
	font-size: 11px;
}

.vs-article-meta__details span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.vs-article-meta__details svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.vs-share-row {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.vs-share-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 40px;
	padding: 8px 13px;
	border: 1px solid var(--vs-line);
	border-radius: 8px;
	background: #fff;
	font-size: 12px;
	font-weight: 750;
	cursor: pointer;
}

.vs-share-button:hover {
	border-color: var(--vs-brand-600);
	background: var(--vs-brand-050);
}

.vs-share-button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.vs-article-notice {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	max-width: 960px;
	margin: 0 auto 34px;
	padding: 14px 18px;
	border: 1px solid #fed7aa;
	border-radius: var(--vs-radius-sm);
	background: #fff7ed;
	font-size: 12px;
}

.vs-article-notice strong {
	color: var(--vs-warning);
}

.vs-article-notice p {
	margin: 0;
	color: #7c2d12;
}

.vs-article-notice a {
	color: var(--vs-warning) !important;
	font-weight: 800;
}

.vs-article-hero-image {
	max-width: 1080px;
	margin: 0 auto 48px;
}

.vs-article-hero-image img {
	width: 100%;
	border-radius: var(--vs-radius-lg);
}

.vs-article-hero-image figcaption {
	margin-top: 10px;
	color: var(--vs-ink-500);
	font-size: 12px;
	text-align: center;
}

.vs-single-grid {
	display: grid;
	grid-template-columns: minmax(0, var(--vs-prose)) 250px;
	justify-content: center;
	align-items: start;
	gap: 64px;
}

.vs-article-content {
	min-width: 0;
	padding: 44px 50px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-lg);
	background: #fff;
	box-shadow: var(--vs-shadow-sm);
}

.vs-article-aside {
	position: sticky;
	top: 150px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.admin-bar .vs-article-aside {
	top: 182px;
}

.vs-toc,
.vs-aside-risk {
	padding: 21px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-md);
	background: #fff;
}

.vs-toc h2 {
	margin-bottom: 12px;
	font-size: 17px;
	letter-spacing: -.035em;
}

.vs-toc ol {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: toc;
}

.vs-toc li {
	counter-increment: toc;
}

.vs-toc a {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 6px;
	color: var(--vs-ink-600) !important;
	font-size: 12px;
	line-height: 1.55;
	text-decoration: none;
}

.vs-toc a::before {
	color: var(--vs-brand-600);
	font-family: var(--vs-font-mono);
	font-size: 10px;
	font-weight: 800;
	content: counter(toc, decimal-leading-zero);
}

.vs-toc a:hover,
.vs-toc a.is-active {
	color: var(--vs-brand-600) !important;
}

.vs-aside-risk {
	background: var(--vs-brand-950);
	color: #fff;
}

.vs-aside-risk strong {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
}

.vs-aside-risk p {
	margin: 0;
	color: rgba(255,255,255,.68);
	font-size: 12px;
}

.vs-article-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 44px;
	padding-top: 22px;
	border-top: 1px solid var(--vs-line);
}

.vs-article-tags > span {
	margin-right: 4px;
	color: var(--vs-ink-500);
	font-size: 12px;
	font-weight: 800;
}

.vs-article-tags a {
	padding: 5px 10px;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	background: var(--vs-surface-muted);
	font-size: 12px;
	text-decoration: none;
}

.vs-editorial-box {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 22px;
	max-width: 1074px;
	margin: 54px auto 0;
	padding: 28px;
	border: 1px solid #b9d6ff;
	border-radius: var(--vs-radius-lg);
	background: var(--vs-brand-050);
}

.vs-editorial-box__mark {
	display: grid;
	width: 60px;
	height: 60px;
	place-items: center;
	border-radius: 18px;
	background: var(--vs-brand-600);
	color: #fff;
	font-family: var(--vs-font-mono);
	font-size: 25px;
	font-weight: 900;
}

.vs-editorial-box h2 {
	margin-bottom: 5px;
	font-size: 21px;
	letter-spacing: -.04em;
}

.vs-editorial-box p:not(.vs-eyebrow) {
	margin-bottom: 8px;
	color: var(--vs-ink-600);
	font-size: 14px;
}

.vs-editorial-box a {
	color: var(--vs-brand-600) !important;
	font-size: 13px;
	font-weight: 800;
}

.vs-related {
	max-width: 1074px;
	margin: 72px auto 0;
	padding-top: 54px;
	border-top: 1px solid var(--vs-line);
}

.vs-post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 1074px;
	margin: 60px auto 0;
}

.vs-post-navigation > div:last-child {
	text-align: right;
}

.vs-post-navigation a {
	display: block;
	min-height: 100%;
	padding: 18px 20px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-md);
	background: #fff;
	text-decoration: none;
}

.vs-post-navigation a:hover {
	border-color: var(--vs-brand-600);
}

.vs-post-navigation span,
.vs-post-navigation strong {
	display: block;
}

.vs-post-navigation span {
	margin-bottom: 5px;
	color: var(--vs-ink-500);
	font-size: 11px;
}

.vs-post-navigation strong {
	font-size: 14px;
}

.vs-article-bottom-risk {
	max-width: 1074px;
	margin: 26px auto 0;
	padding: 24px 26px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-md);
	background: var(--vs-surface-muted);
}

.vs-article-bottom-risk h2 {
	margin-bottom: 7px;
	font-size: 15px;
}

.vs-article-bottom-risk p {
	margin: 0;
	color: var(--vs-ink-600);
	font-size: 12px;
}

.vs-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 12000;
	max-width: 340px;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--vs-brand-950);
	color: #fff;
	box-shadow: var(--vs-shadow-lg);
	font-size: 13px;
	font-weight: 700;
}

/* 404 */
.vs-error-page {
	padding: 80px 0;
	background: #fff;
}

.vs-error-page__inner {
	max-width: 760px;
	text-align: center;
}

.vs-error-page__code {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--vs-brand-100);
	font-family: var(--vs-font-mono);
	font-size: clamp(60px, 10vw, 110px);
	font-weight: 900;
	line-height: 1;
}

.vs-error-page__code i {
	display: grid;
	width: .9em;
	height: .9em;
	place-items: center;
	border-radius: .25em;
	background: var(--vs-brand-600);
	color: #fff;
	font-size: .7em;
	font-style: normal;
}

.vs-error-page h1 {
	margin-bottom: 16px;
	font-size: clamp(38px, 6vw, 62px);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: 1.2;
}

.vs-error-page__inner > p:not(.vs-eyebrow) {
	max-width: 600px;
	margin: 0 auto 28px;
	color: var(--vs-ink-600);
}

.vs-error-page .vs-search-form {
	max-width: 640px;
	margin-inline: auto;
}

.vs-error-page__actions,
.vs-error-page__topics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.vs-error-page__actions {
	margin-top: 18px;
}

.vs-error-page__topics {
	margin-top: 30px;
}

.vs-error-page__topics a {
	padding: 7px 12px;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.vs-error-latest {
	padding: 70px 0 90px;
}

/* Comments */
.comments-area {
	max-width: 760px;
	margin: 60px auto 0;
	padding: 34px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-lg);
	background: #fff;
}

.comments-title,
.comment-reply-title {
	font-size: 23px;
	letter-spacing: -.04em;
}

.comment-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list .comment {
	padding: 20px 0;
	border-bottom: 1px solid var(--vs-line);
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--vs-line-strong);
	border-radius: 8px;
}

.comment-form .submit {
	min-height: 46px;
	padding: 10px 20px;
	border: 0;
	border-radius: 8px;
	background: var(--vs-brand-600);
	color: #fff;
	font-weight: 800;
}

/* Footer */
.vs-footer {
	padding: 68px 0 26px;
	background: #08182d;
	color: rgba(255,255,255,.72);
}

.vs-footer__top {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 70px;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(255,255,255,.13);
}

.vs-footer .vs-brand {
	color: #fff !important;
}

.vs-footer .vs-brand__mark {
	background: var(--vs-brand-500);
}

.vs-footer .vs-brand__copy small {
	color: rgba(255,255,255,.5);
}

.vs-footer__brand > p {
	margin: 18px 0 0;
	color: rgba(255,255,255,.55);
	font-size: 13px;
}

.vs-footer__heading {
	margin-bottom: 13px;
	color: rgba(255,255,255,.42);
	font-family: var(--vs-font-mono);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
}

.vs-footer__nav ul {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 10px 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-footer__nav a {
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.vs-footer__nav a:hover {
	text-decoration: underline;
}

.vs-footer__company {
	padding: 30px 0;
	font-size: 12px;
}

.vs-footer__company p {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin-bottom: 5px;
}

.vs-footer__company strong {
	color: #fff;
}

.vs-footer__company a {
	color: #fff !important;
	font-weight: 700;
}

.vs-footer__company address {
	font-style: normal;
}

.vs-footer__risk {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: start;
	gap: 13px;
	padding: 18px 20px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--vs-radius-md);
	background: rgba(255,255,255,.055);
}

.vs-footer__risk-icon {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	color: #8ce8d3;
	font-family: var(--vs-font-mono);
	font-weight: 900;
}

.vs-footer__risk p {
	margin: 0;
	color: rgba(255,255,255,.66);
	font-size: 12px;
	line-height: 1.8;
}

.vs-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	color: rgba(255,255,255,.4);
	font-size: 11px;
}

.vs-footer__bottom p {
	margin: 0;
}

.vs-footer__bottom a {
	color: rgba(255,255,255,.7) !important;
	font-weight: 700;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 1180px) {
	:root {
		--vs-gutter: 22px;
	}

	.vs-home-clean-hero__inner {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 34px;
	}

	.vs-home-lead {
		grid-template-columns: minmax(290px, 1fr) minmax(260px, .9fr);
	}

	.vs-home-lead__body {
		padding: 30px;
	}

	.vs-home-standard__inner {
		grid-template-columns: 170px minmax(0, 1fr) auto;
		gap: 22px;
	}

	.vs-home-standard__list li {
		padding-inline: 14px;
	}

	.vs-menu,
	.vs-primary-nav ul {
		gap: 21px;
	}

	.vs-nav-search {
		min-width: 205px;
	}

	.vs-topic-bar > .vs-container {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.vs-topic-list {
		grid-template-columns: repeat(5, minmax(140px, 1fr));
		overflow-x: auto;
	}

	.vs-single-grid {
		grid-template-columns: minmax(0, var(--vs-prose)) 225px;
		gap: 32px;
	}
}

@media (max-width: 1023px) {
	.admin-bar .vs-site-header,
	.admin-bar .vs-reading-progress {
		top: 32px;
	}

	.vs-site-header__inner {
		min-height: 66px;
	}

	.vs-site-header__tagline,
	.vs-nav-bar {
		display: none;
	}

	.vs-menu-toggle {
		display: inline-grid;
	}

	.vs-home-clean-hero__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.vs-home-clean-hero__intro {
		max-width: 650px;
		padding: 0;
	}

	.vs-home-clean-hero__intro > p:last-child {
		max-width: 510px;
		margin-top: 16px;
	}

	.vs-home-standard__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.vs-home-standard__heading {
		display: flex;
		align-items: end;
		gap: 14px;
	}

	.vs-home-standard__heading .vs-eyebrow {
		margin-bottom: 2px;
	}

	.vs-home-standard__links {
		flex-direction: row;
		align-items: center;
		gap: 18px;
	}

	.vs-home-intro {
		padding: 64px 0 94px;
	}

	.vs-home-intro__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.vs-home-intro__inner > p {
		max-width: 680px;
	}

	.vs-feature-layout {
		grid-template-columns: 1fr;
	}

	.vs-feature-layout__side {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vs-listing-layout {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.vs-listing-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vs-listing-sidebar .vs-sidebar-box--risk {
		grid-column: 1 / -1;
	}

	.vs-single-grid {
		grid-template-columns: minmax(0, var(--vs-prose));
		gap: 24px;
	}

	.vs-article-aside {
		position: static;
		order: -1;
	}

	.vs-toc {
		padding: 22px 24px;
	}

	.vs-toc ol {
		columns: 2;
		column-gap: 26px;
	}

	.vs-toc li {
		margin-bottom: 8px;
		break-inside: avoid;
	}

	.vs-aside-risk {
		display: none;
	}

	.vs-home-principles__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}
}

@media (max-width: 782px) {
	.admin-bar .vs-site-header,
	.admin-bar .vs-reading-progress {
		top: 46px;
	}
}

@media (max-width: 767px) {
	:root {
		--vs-gutter: 17px;
	}

	html {
		scroll-padding-top: 90px;
	}

	body.vegasstock-site {
		font-size: 15px;
		word-break: normal;
		overflow-wrap: anywhere;
	}

	.vs-risk-strip__inner {
		min-height: 34px;
	}

	.vs-risk-strip__inner p {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.vs-risk-strip__inner a {
		display: none;
	}

	.vs-risk-strip__label {
		padding: 1px 6px;
		font-size: 10px;
	}

	.vs-site-header__inner {
		min-height: 60px;
	}

	.vs-brand {
		gap: 8px;
	}

	.vs-brand__mark {
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.vs-brand__mark svg {
		width: 31px;
		height: 31px;
	}

	.vs-brand__copy strong {
		font-size: 19px;
	}

	.vs-brand__copy small {
		display: none;
	}

	.vs-icon-button {
		width: 40px;
		height: 40px;
	}

	.vs-mobile-menu__list,
	.vs-mobile-menu nav ul {
		grid-template-columns: 1fr;
	}

	.vs-search-dialog {
		align-items: start;
		padding: 72px 14px 20px;
	}

	.vs-search-dialog__panel {
		padding: 34px 20px 24px;
		border-radius: 18px;
	}

	.vs-search-dialog__close {
		top: 14px;
		right: 14px;
	}

	.vs-search-form {
		align-items: stretch;
	}

	.vs-search-form__input {
		height: 48px;
		min-width: 0;
	}

	.vs-search-form .vs-button {
		min-height: 48px;
		padding-inline: 15px;
	}

	.vs-home-clean-hero {
		padding: 38px 0 42px;
	}

	.vs-home-clean-hero__inner {
		gap: 26px;
	}

	.vs-home-clean-hero__intro h1 {
		font-size: 39px;
	}

	.vs-home-clean-hero__intro > p:last-child {
		font-size: 13px;
	}

	.vs-home-lead {
		grid-template-columns: 1fr;
		border-radius: 14px;
	}

	.vs-home-lead__media {
		min-height: 0;
	}

	.vs-home-lead__media .vs-card__image,
	.vs-home-lead__media .vs-card__placeholder {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.vs-home-lead__body {
		padding: 24px 20px 26px;
	}

	.vs-home-lead__label {
		margin-bottom: 10px;
	}

	.vs-home-lead h2 {
		font-size: 26px;
	}

	.vs-home-lead__summary {
		margin: 12px 0 17px;
		-webkit-line-clamp: 2;
	}

	.vs-home-topic-nav__inner {
		min-height: 58px;
		overflow-x: auto;
	}

	.vs-home-topic-nav__label {
		display: none;
	}

	.vs-home-topic-nav__links {
		overflow: visible;
	}

	.vs-home-topic-nav__links a {
		padding-inline: 14px;
		font-size: 12px;
	}

	.vs-home-topic-nav__links a:first-child {
		padding-left: 0;
	}

	.vs-home-topic-nav__all {
		margin-left: 12px;
		padding-left: 14px;
		border-left: 1px solid var(--vs-line);
		font-size: 12px;
	}

	.vs-home-clean-latest {
		padding: 54px 0 60px;
	}

	.vs-section-heading--quiet h2 {
		font-size: 27px;
	}

	.vs-home-standard {
		padding: 34px 0;
	}

	.vs-home-standard__heading {
		display: block;
	}

	.vs-home-standard__list {
		grid-template-columns: 1fr;
	}

	.vs-home-standard__list li {
		min-height: 46px;
		padding: 0;
		border-top: 1px solid var(--vs-line);
		border-left: 0;
	}

	.vs-home-standard__list li:last-child {
		border-bottom: 1px solid var(--vs-line);
	}

	.vs-home-intro {
		padding: 52px 0 82px;
	}

	.vs-home-intro h1 {
		font-size: clamp(38px, 12vw, 55px);
	}

	.vs-home-intro__inner > p {
		font-size: 14px;
	}

	.vs-home-feature {
		margin-top: -34px;
		padding-bottom: 55px;
	}

	.vs-home-feature > .vs-container {
		width: min(calc(100% - 20px), var(--vs-container));
		padding: 20px;
		border-radius: 20px;
	}

	.vs-section-heading {
		align-items: start;
		margin-bottom: 22px;
	}

	.vs-section-heading h2 {
		font-size: 27px;
	}

	.vs-section-heading .vs-text-link {
		margin-top: 5px;
		font-size: 0;
	}

	.vs-section-heading .vs-text-link svg {
		width: 22px;
		height: 22px;
	}

	.vs-feature-layout__side {
		grid-template-columns: 1fr;
	}

	.vs-feature-layout__side .vs-card--horizontal {
		display: grid;
	}

	.vs-card--featured .vs-card__title {
		font-size: 27px;
	}

	.vs-card--featured .vs-card__summary {
		font-size: 14px;
	}

	.vs-topic-bar {
		padding-bottom: 56px;
	}

	.vs-topic-list {
		grid-template-columns: repeat(5, 165px);
	}

	.vs-home-latest,
	.vs-category-showcase {
		padding: 58px 0;
	}

	.vs-card-grid--3,
	.vs-card-grid--4 {
		grid-template-columns: 1fr;
	}

	.vs-card-grid .vs-card {
		padding-bottom: 24px;
		border-bottom: 1px solid var(--vs-line);
	}

	.vs-card-grid .vs-card:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.vs-card--horizontal,
	.vs-list-stack .vs-card--horizontal {
		grid-template-columns: 126px 1fr;
		gap: 14px;
		padding-bottom: 18px;
	}

	.vs-card--horizontal .vs-card__title {
		display: -webkit-box;
		overflow: hidden;
		font-size: 16px;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.vs-card--horizontal .vs-card__summary {
		display: none;
	}

	.vs-card--horizontal .vs-card__eyebrow time {
		display: none;
	}

	.vs-card__placeholder {
		padding: 16px;
	}

	.vs-card__placeholder strong,
	.vs-card__placeholder small {
		display: none;
	}

	.vs-card__placeholder-chart {
		right: 14px;
		bottom: 14px;
		height: 40px;
	}

	.vs-home-principles {
		padding: 65px 0;
	}

	.vs-home-principles h2 {
		font-size: 36px;
	}

	.vs-principle-list > div {
		grid-template-columns: 38px 1fr;
	}

	.vs-rss-panel__inner {
		grid-template-columns: 52px 1fr;
		gap: 16px;
	}

	.vs-rss-panel__icon {
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}

	.vs-rss-panel h2 {
		font-size: 23px;
	}

	.vs-rss-panel .vs-button {
		grid-column: 1 / -1;
		width: 100%;
	}

	.vs-page-hero {
		padding: 38px 0 36px;
	}

	.vs-page-hero h1 {
		font-size: 38px;
	}

	.vs-page-hero .vs-container > p:last-child:not(.vs-eyebrow) {
		font-size: 14px;
	}

	.vs-listing-layout {
		gap: 38px;
		padding-top: 38px;
		padding-bottom: 65px;
	}

	.vs-listing-sidebar {
		grid-template-columns: 1fr;
	}

	.vs-listing-sidebar .vs-sidebar-box--risk {
		grid-column: auto;
	}

	.vs-page-shell {
		padding-top: 28px;
		padding-bottom: 65px;
	}

	.vs-page-content {
		padding: 28px 20px;
		border-radius: 14px;
	}

	.vs-prose {
		font-size: 16px;
		line-height: 1.85;
	}

	.vs-prose h2 {
		margin-top: 42px;
		font-size: 27px;
	}

	.vs-prose h3 {
		font-size: 21px;
	}

	.vs-lead {
		font-size: 18px;
	}

	.vs-article-shell {
		padding-top: 24px;
		padding-bottom: 65px;
	}

	.vs-article-header h1 {
		font-size: 36px;
	}

	.vs-article-header__dek {
		font-size: 17px;
	}

	.vs-article-meta {
		align-items: start;
		justify-content: start;
		gap: 15px;
		text-align: left;
	}

	.vs-article-meta__details {
		flex-direction: column;
		gap: 2px;
		padding-left: 15px;
	}

	.vs-article-notice {
		grid-template-columns: 1fr auto;
		gap: 5px 12px;
	}

	.vs-article-notice p {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.vs-article-hero-image {
		margin-bottom: 28px;
	}

	.vs-article-content {
		padding: 28px 20px;
		border-radius: 14px;
	}

	.vs-toc ol {
		columns: auto;
	}

	.vs-editorial-box {
		grid-template-columns: 46px 1fr;
		gap: 15px;
		margin-top: 36px;
		padding: 20px;
		border-radius: 14px;
	}

	.vs-editorial-box__mark {
		width: 44px;
		height: 44px;
		border-radius: 13px;
		font-size: 19px;
	}

	.vs-related {
		margin-top: 54px;
		padding-top: 40px;
	}

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

	.vs-post-navigation > div:last-child {
		text-align: left;
	}

	.vs-error-page {
		padding: 55px 0;
	}

	.vs-error-page h1 {
		font-size: 39px;
	}

	.vs-footer {
		padding-top: 52px;
	}

	.vs-footer__top {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.vs-footer__nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vs-footer__company p {
		display: grid;
		gap: 4px;
	}

	.vs-footer__company p > span {
		display: none;
	}

	.vs-footer__risk {
		grid-template-columns: 1fr;
	}

	.vs-footer__bottom {
		align-items: start;
		flex-direction: column;
	}

	.vs-toast {
		right: 14px;
		bottom: 14px;
		left: 14px;
		max-width: none;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.vs-site-header__inner {
		gap: 10px;
	}

	.vs-site-header__actions {
		gap: 4px;
	}

	.vs-search-dialog__topics span {
		width: 100%;
	}

	.vs-feature-layout__side .vs-card--horizontal {
		grid-template-columns: 110px 1fr;
	}

	.vs-card--horizontal,
	.vs-list-stack .vs-card--horizontal {
		grid-template-columns: 112px 1fr;
	}

	.vs-article-header h1 {
		font-size: 32px;
	}

	.vs-article-meta {
		flex-direction: column;
	}

	.vs-article-meta__details {
		width: 100%;
		padding: 12px 0 0;
		border-top: 1px solid var(--vs-line);
		border-left: 0;
	}

	.vs-share-row {
		justify-content: stretch;
	}

	.vs-share-button {
		flex: 1;
		justify-content: center;
	}

	.vs-editorial-box {
		grid-template-columns: 1fr;
	}
}

/* Minimal editorial home and single-row navigation (v1.2) */
html {
	scroll-padding-top: 84px;
}

.vs-site-header--compact {
	background: #fff;
	box-shadow: 0 1px 0 var(--vs-line);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.vs-site-header--compact .vs-site-header__inner {
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 36px;
	min-height: 68px;
}

.vs-site-header--compact .vs-brand {
	gap: 9px;
}

.vs-site-header--compact .vs-brand__mark {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	box-shadow: none;
}

.vs-site-header--compact .vs-brand__mark svg {
	width: 29px;
	height: 29px;
}

.vs-site-header--compact .vs-brand__copy strong {
	font-size: 20px;
}

.vs-site-header--compact .vs-brand__copy small {
	display: none;
}

.vs-site-header--compact .vs-primary-nav {
	justify-self: center;
}

.vs-site-header--compact .vs-menu,
.vs-site-header--compact .vs-primary-nav ul {
	gap: 28px;
	min-height: 68px;
}

.vs-site-header--compact .vs-menu a,
.vs-site-header--compact .vs-primary-nav a {
	color: var(--vs-ink-700) !important;
	font-size: 13px;
	font-weight: 700;
}

.vs-site-header--compact .vs-menu a::after,
.vs-site-header--compact .vs-primary-nav a::after {
	height: 2px;
}

.vs-site-header--compact .vs-site-header__actions {
	gap: 2px;
}

.vs-site-header--compact .vs-icon-button {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 7px;
	background: transparent;
}

.vs-site-header--compact .vs-icon-button:hover {
	background: var(--vs-surface-muted);
}

.vs-home-index {
	background: #fff;
}

.vs-home-index__shell {
	max-width: 960px;
	padding-top: 58px;
	padding-bottom: 88px;
}

.vs-home-index__header {
	padding-bottom: 30px;
}

.vs-home-index__header h1 {
	margin: 0;
	font-size: 40px;
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: 1.2;
}

.vs-home-index__header p {
	margin: 10px 0 0;
	color: var(--vs-ink-500);
	font-size: 14px;
}

.vs-home-index__topics {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 54px;
	overflow-x: auto;
	border-top: 1px solid var(--vs-ink-900);
	border-bottom: 1px solid var(--vs-line);
	white-space: nowrap;
	scrollbar-width: none;
}

.vs-home-index__topics::-webkit-scrollbar {
	display: none;
}

.vs-home-index__topics a {
	color: var(--vs-ink-700) !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.vs-home-index__topics a:hover {
	color: var(--vs-brand-600) !important;
}

.vs-home-index__list {
	margin: 0;
}

.vs-home-index__item {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr) 28px;
	align-items: start;
	gap: 24px;
	padding: 30px 0 32px;
	border-bottom: 1px solid var(--vs-line);
}

.vs-home-index__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
	padding-top: 5px;
}

.vs-home-index__meta .vs-badge {
	padding: 0;
	background: transparent !important;
	color: var(--vs-brand-600) !important;
	font-size: 12px;
	font-weight: 800;
}

.vs-home-index__meta time {
	color: var(--vs-ink-400);
	font-family: var(--vs-font-mono);
	font-size: 11px;
}

.vs-home-index__body h2 {
	margin: 0;
	font-size: 25px;
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.38;
}

.vs-home-index__body h2 a {
	text-decoration: none;
}

.vs-home-index__body h2 a:hover {
	color: var(--vs-brand-600);
}

.vs-home-index__body p {
	max-width: 700px;
	margin: 10px 0 0;
	color: var(--vs-ink-500);
	font-size: 14px;
	line-height: 1.7;
}

.vs-home-index__arrow {
	display: grid;
	width: 28px;
	height: 28px;
	margin-top: 3px;
	place-items: center;
	color: var(--vs-ink-400) !important;
	text-decoration: none;
}

.vs-home-index__arrow:hover {
	color: var(--vs-brand-600) !important;
}

.vs-home-index__arrow svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.vs-home-index__empty {
	margin: 0;
	padding: 50px 0;
	border-bottom: 1px solid var(--vs-line);
	color: var(--vs-ink-500);
	font-size: 14px;
}

@media (max-width: 1023px) {
	.vs-site-header--compact .vs-primary-nav {
		display: none;
	}

	.vs-site-header--compact .vs-menu-toggle {
		display: inline-grid;
	}
}

@media (max-width: 767px) {
	html {
		scroll-padding-top: 70px;
	}

	.vs-site-header--compact .vs-site-header__inner {
		gap: 12px;
		min-height: 60px;
	}

	.vs-site-header--compact .vs-brand__mark {
		width: 32px;
		height: 32px;
	}

	.vs-site-header--compact .vs-brand__mark svg {
		width: 27px;
		height: 27px;
	}

	.vs-site-header--compact .vs-brand__copy strong {
		font-size: 19px;
	}

	.vs-home-index__shell {
		padding-top: 38px;
		padding-bottom: 62px;
	}

	.vs-home-index__header {
		padding-bottom: 24px;
	}

	.vs-home-index__header h1 {
		font-size: 33px;
	}

	.vs-home-index__header p {
		font-size: 13px;
		line-height: 1.65;
	}

	.vs-home-index__topics {
		gap: 22px;
		min-height: 50px;
	}

	.vs-home-index__item {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 25px 0 27px;
	}

	.vs-home-index__meta {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		padding-top: 0;
	}

	.vs-home-index__body h2 {
		font-size: 21px;
	}

	.vs-home-index__body p {
		display: -webkit-box;
		margin-top: 8px;
		overflow: hidden;
		font-size: 13px;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.vs-home-index__arrow {
		display: none;
	}
}

/* Single editorial cover and compact legal footer (v1.3) */
.vs-home-cover {
	border-bottom: 1px solid var(--vs-line);
	background: #f5f7fa;
}

.vs-home-cover__shell {
	max-width: var(--vs-container);
	padding-top: 56px;
	padding-bottom: 72px;
}

.vs-home-cover__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.vs-home-cover__header h1 {
	margin: 0;
	color: #0b1f33;
	font-size: 42px;
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: 1.15;
}

.vs-home-cover__header p {
	margin: 11px 0 0;
	color: #64748b;
	font-size: 14px;
}

.vs-home-cover__all,
.vs-home-cover__read {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--vs-brand-600) !important;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.vs-home-cover__all svg,
.vs-home-cover__read svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.vs-home-cover__lead {
	position: relative;
	display: flex;
	min-height: 280px;
	margin-top: 32px;
	overflow: hidden;
	border: 1px solid #dde3ea;
	border-top: 3px solid var(--vs-brand-600);
	border-radius: 4px;
	background: #fff;
}

.vs-home-cover__lead-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 820px;
	padding: 36px 42px 38px;
}

.vs-home-cover__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--vs-ink-400);
	font-family: var(--vs-font-mono);
	font-size: 11px;
}

.vs-home-cover__meta .vs-badge {
	padding: 0;
	background: transparent !important;
	color: var(--vs-brand-600) !important;
	font-family: var(--vs-font-sans);
	font-size: 12px;
	font-weight: 800;
}

.vs-home-cover__lead h2 {
	max-width: 720px;
	margin: 15px 0 0;
	font-size: 34px;
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: 1.3;
}

.vs-home-cover__lead h2 a,
.vs-home-cover__more-item h3 a {
	text-decoration: none;
}

.vs-home-cover__lead h2 a:hover,
.vs-home-cover__more-item h3 a:hover {
	color: var(--vs-brand-600);
}

.vs-home-cover__lead-content > p {
	max-width: 690px;
	margin: 13px 0 0;
	color: #64748b;
	font-size: 15px;
	line-height: 1.75;
}

.vs-home-cover__read {
	margin-top: 24px;
}

.vs-home-cover__number {
	position: absolute;
	right: 34px;
	bottom: -14px;
	color: #edf1f6;
	font-family: var(--vs-font-mono);
	font-size: 112px;
	font-weight: 900;
	letter-spacing: -.12em;
	line-height: 1;
	user-select: none;
}

.vs-home-cover__empty {
	margin-top: 32px;
	padding: 36px 40px;
	border: 1px solid #dde3ea;
	border-top: 3px solid var(--vs-brand-600);
	border-radius: 4px;
	background: #fff;
}

.vs-home-cover__empty p {
	margin: 5px 0 0;
	color: var(--vs-ink-500);
	font-size: 14px;
}

.vs-home-cover__more {
	margin-top: 42px;
}

.vs-home-cover__more > h2 {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -.04em;
}

.vs-home-cover__more-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--vs-ink-900);
}

.vs-home-cover__more-item {
	min-width: 0;
	padding: 22px 22px 6px 0;
}

.vs-home-cover__more-item:not(:nth-child(3n + 1)) {
	padding-left: 22px;
	border-left: 1px solid var(--vs-line);
}

.vs-home-cover__more-item h3 {
	margin: 10px 0 0;
	font-size: 18px;
	font-weight: 850;
	letter-spacing: -.04em;
	line-height: 1.45;
}

.vs-footer.vs-footer--compact {
	padding: 40px 0 22px;
	background: #07192b;
}

.vs-footer--compact .vs-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255,255,255,.14);
}

.vs-footer--compact .vs-footer__identity {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.vs-footer--compact .vs-footer__identity > p {
	margin: 0;
	color: rgba(255,255,255,.54);
	font-size: 12px;
	white-space: nowrap;
}

.vs-footer--compact .vs-brand__mark {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	box-shadow: none;
}

.vs-footer--compact .vs-brand__mark svg {
	width: 31px;
	height: 31px;
}

.vs-footer--compact .vs-brand__copy strong {
	font-size: 19px;
}

.vs-footer--compact .vs-brand__copy small {
	display: none;
}

.vs-footer--compact .vs-footer__nav {
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.vs-footer--compact .vs-footer__nav::-webkit-scrollbar {
	display: none;
}

.vs-footer--compact .vs-footer__nav ul {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
	width: max-content;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-footer--compact .vs-footer__nav li {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.vs-footer--compact .vs-footer__nav li:not(:last-child)::after {
	width: 1px;
	height: 11px;
	margin: 0 12px;
	background: rgba(255,255,255,.24);
	content: "";
}

.vs-footer--compact .vs-footer__nav a {
	padding: 8px 0;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.vs-footer--compact .vs-footer__company-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 9px;
	padding: 22px 0;
	color: rgba(255,255,255,.58);
	font-size: 11px;
}

.vs-footer--compact .vs-footer__company-line strong {
	color: #fff;
}

.vs-footer--compact .vs-footer__company-line a {
	color: #fff !important;
	font-weight: 700;
}

.vs-footer--compact .vs-footer__company-line address {
	font-style: normal;
}

.vs-footer--compact .vs-footer__risk {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
	padding: 18px 0;
	border: 0;
	border-top: 1px solid rgba(255,255,255,.14);
	border-bottom: 1px solid rgba(255,255,255,.14);
	border-radius: 0;
	background: transparent;
}

.vs-footer--compact .vs-footer__risk strong {
	color: #8ce8d3;
	font-size: 12px;
	font-weight: 800;
}

.vs-footer--compact .vs-footer__risk p {
	margin: 0;
	color: rgba(255,255,255,.58);
	font-size: 11px;
	line-height: 1.7;
}

.vs-footer--compact .vs-footer__bottom {
	padding-top: 18px;
	font-size: 10px;
}

@media (max-width: 767px) {
	.vs-home-cover__shell {
		padding-top: 38px;
		padding-bottom: 52px;
	}

	.vs-home-cover__header {
		align-items: flex-start;
		gap: 16px;
	}

	.vs-home-cover__header h1 {
		font-size: 32px;
		line-height: 1.2;
	}

	.vs-home-cover__header p {
		max-width: 245px;
		font-size: 13px;
		line-height: 1.65;
	}

	.vs-home-cover__all {
		margin-top: 6px;
		font-size: 12px;
	}

	.vs-home-cover__lead {
		min-height: 0;
		margin-top: 24px;
	}

	.vs-home-cover__lead-content {
		padding: 27px 22px 29px;
	}

	.vs-home-cover__lead h2 {
		margin-top: 12px;
		font-size: 26px;
		line-height: 1.35;
	}

	.vs-home-cover__lead-content > p {
		display: -webkit-box;
		margin-top: 10px;
		overflow: hidden;
		font-size: 13px;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.vs-home-cover__read {
		margin-top: 19px;
		font-size: 12px;
	}

	.vs-home-cover__number {
		display: none;
	}

	.vs-home-cover__more {
		margin-top: 34px;
	}

	.vs-home-cover__more-grid {
		grid-template-columns: 1fr;
	}

	.vs-home-cover__more-item,
	.vs-home-cover__more-item:not(:nth-child(3n + 1)) {
		padding: 18px 0;
		border-bottom: 1px solid var(--vs-line);
		border-left: 0;
	}

	.vs-footer.vs-footer--compact {
		padding: 32px 0 18px;
	}

	.vs-footer--compact .vs-footer__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
		padding-bottom: 22px;
	}

	.vs-footer--compact .vs-footer__identity {
		display: block;
	}

	.vs-footer--compact .vs-footer__identity > p {
		margin-top: 10px;
		font-size: 11px;
	}

	.vs-footer--compact .vs-footer__nav {
		width: 100%;
		overflow: hidden;
	}

	.vs-footer--compact .vs-footer__nav ul {
		justify-content: center;
		width: 100%;
	}

	.vs-footer--compact .vs-footer__nav li:not(:last-child)::after {
		margin: 0 9px;
	}

	.vs-footer--compact .vs-footer__nav a {
		font-size: 12px;
	}

	.vs-footer--compact .vs-footer__company-line {
		gap: 3px 7px;
		padding: 18px 0;
		font-size: 10.5px;
		line-height: 1.65;
	}

	.vs-footer--compact .vs-footer__risk {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 16px 0;
	}

	.vs-footer--compact .vs-footer__risk p {
		font-size: 10.5px;
		line-height: 1.65;
	}

	.vs-footer--compact .vs-footer__bottom {
		align-items: center;
		flex-direction: row;
		gap: 10px;
		font-size: 9.5px;
	}
}

@media (max-width: 359px) {
	.vs-home-cover__header {
		flex-direction: column;
	}

	.vs-home-cover__all {
		margin-top: 0;
	}

	.vs-footer--compact .vs-footer__nav a {
		font-size: 11px;
	}

	.vs-footer--compact .vs-footer__nav li:not(:last-child)::after {
		margin: 0 5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

@media print {
	.vs-risk-strip,
	.vs-site-header,
	.vs-reading-progress,
	.vs-share-row,
	.vs-article-aside,
	.vs-related,
	.vs-post-navigation,
	.vs-footer,
	.vs-search-dialog {
		display: none !important;
	}

	body.vegasstock-site,
	.vs-main,
	.vs-article-content {
		background: #fff !important;
	}

	.vs-article-content {
		padding: 0;
		border: 0;
		box-shadow: none;
	}
}
