:root {
	--vshc-ink: #121212;
	--vshc-accent: #00ff88;
	--vshc-muted: #686d6a;
	--vshc-soft: #f4f6f5;
	--vshc-line: #dfe3e1;
	--vshc-radius: 24px;
}

.vshc-site-main {
	width: 100%;
	background: #fff;
	color: var(--vshc-ink);
}

.vshc-site-main *,
.vshc-context-help * {
	box-sizing: border-box;
}

.vshc-shell {
	width: min(100% - 32px, 1320px);
	margin-inline: auto;
}

.vshc-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	padding-block: 22px;
	font-size: 14px;
	color: var(--vshc-muted);
}

.vshc-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.vshc-breadcrumbs a:hover,
.vshc-breadcrumbs a:focus-visible {
	color: var(--vshc-ink);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.vshc-hero {
	background: var(--vshc-ink);
	color: #fff;
	padding: clamp(56px, 8vw, 104px) 0;
}

.vshc-hero__inner {
	max-width: 920px;
	text-align: center;
}

.vshc-eyebrow {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .17em;
	text-transform: uppercase;
	color: #68706c;
}

.vshc-hero .vshc-eyebrow,
.vshc-contact-strip .vshc-eyebrow {
	color: var(--vshc-accent);
}

.vshc-hero h1,
.vshc-topic-hero h1,
.vshc-article__header h1 {
	margin: 0;
	max-width: 100%;
	font-size: clamp(38px, 6vw, 76px);
	line-height: 1.02;
	letter-spacing: -.045em;
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: auto;
}

.vshc-hero__intro {
	max-width: 760px;
	margin: 24px auto 0;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.6;
	color: #c6cbc8;
}

.vshc-search {
	display: grid;
	grid-template-columns: 1fr auto;
	max-width: 720px;
	margin: 34px auto 0;
	padding: 6px;
	background: #fff;
	border-radius: 16px;
}

.vshc-search input[type="search"] {
	width: 100%;
	min-height: 54px;
	padding: 0 18px;
	border: 0;
	border-radius: 12px;
	font: inherit;
	color: var(--vshc-ink);
	background: #fff;
}

.vshc-search button,
.vshc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 24px;
	border: 0;
	border-radius: 12px;
	background: var(--vshc-accent);
	color: var(--vshc-ink);
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

.vshc-search button:hover,
.vshc-search button:focus-visible,
.vshc-button:hover,
.vshc-button:focus-visible {
	background: #12dc80;
	color: var(--vshc-ink);
}

.vshc-section,
.vshc-related {
	padding-block: clamp(60px, 8vw, 104px);
}

.vshc-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.vshc-section-heading h2,
.vshc-contact-strip h2,
.vshc-faq h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.1;
	letter-spacing: -.035em;
}

.vshc-topic-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.vshc-topic-card {
	position: relative;
	min-height: 330px;
	padding: 30px;
	border: 1px solid var(--vshc-line);
	border-radius: var(--vshc-radius);
	background: #fff;
}

.vshc-topic-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: var(--vshc-ink);
	color: var(--vshc-accent);
	font-weight: 800;
}

.vshc-topic-card h3 {
	margin: 0 0 10px;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.15;
}

.vshc-topic-card h3 a,
.vshc-article-card h3 a {
	color: var(--vshc-ink);
	text-decoration: none;
}

.vshc-topic-card > p {
	margin: 0 0 20px;
	color: var(--vshc-muted);
	line-height: 1.6;
}

.vshc-topic-card ul {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.vshc-topic-card li + li {
	border-top: 1px solid var(--vshc-line);
}

.vshc-topic-card li a {
	display: block;
	padding: 11px 0;
	color: var(--vshc-ink);
	text-decoration: none;
}

.vshc-topic-card li a:hover,
.vshc-topic-card li a:focus-visible {
	text-decoration: underline;
	text-decoration-color: var(--vshc-accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.vshc-topic-card__empty {
	font-style: italic;
}

.vshc-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #087a4d;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: var(--vshc-accent);
	text-underline-offset: 5px;
}

.vshc-contact-strip {
	padding-block: 54px;
	background: var(--vshc-ink);
	color: #fff;
}

.vshc-contact-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.vshc-contact-strip p:last-child {
	margin: 12px 0 0;
	color: #b9bfbc;
}

.vshc-topic-hero {
	padding: clamp(44px, 6vw, 84px) 0;
	background: var(--vshc-soft);
}

.vshc-topic-hero__intro {
	max-width: 780px;
	margin-top: 20px;
	font-size: 20px;
	line-height: 1.6;
	color: var(--vshc-muted);
}

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

.vshc-article-card {
	overflow: hidden;
	border: 1px solid var(--vshc-line);
	border-radius: 20px;
	background: #fff;
}

.vshc-article-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--vshc-soft);
}

.vshc-article-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vshc-article-card__body {
	padding: 24px;
}

.vshc-article-card h3 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.25;
}

.vshc-article-card p {
	margin: 0 0 18px;
	color: var(--vshc-muted);
	line-height: 1.6;
}

.vshc-pagination {
	margin-top: 40px;
}

.vshc-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.vshc-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--vshc-line);
	border-radius: 11px;
	color: var(--vshc-ink);
	text-decoration: none;
}

.vshc-pagination .current {
	border-color: var(--vshc-ink);
	background: var(--vshc-ink);
	color: var(--vshc-accent);
}

.vshc-empty-state {
	padding: 54px;
	border-radius: var(--vshc-radius);
	background: var(--vshc-soft);
	text-align: center;
}

.vshc-article {
	padding-block: clamp(32px, 5vw, 70px) clamp(70px, 9vw, 120px);
}

.vshc-article__header {
	max-width: 960px;
	margin: 0 auto 48px;
	text-align: center;
}

.vshc-topic-pill {
	display: inline-flex;
	margin-bottom: 20px;
	padding: 8px 13px;
	border-radius: 999px;
	background: var(--vshc-soft);
	color: var(--vshc-ink);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.vshc-article__updated {
	margin: 18px 0 0;
	color: var(--vshc-muted);
}

.vshc-short-answer {
	max-width: 820px;
	margin: 34px auto 0;
	padding: 24px 28px;
	border-left: 5px solid var(--vshc-accent);
	border-radius: 0 16px 16px 0;
	background: var(--vshc-soft);
	text-align: left;
}

.vshc-short-answer p {
	margin: 8px 0 0;
	font-size: 18px;
	line-height: 1.65;
}

.vshc-article__media {
	max-width: 1120px;
	margin: 0 auto 52px;
}

.vshc-article__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--vshc-radius);
}

.vshc-article__media figcaption {
	margin-top: 10px;
	font-size: 14px;
	color: var(--vshc-muted);
	text-align: center;
}

.vshc-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 820px) minmax(250px, 320px);
	justify-content: center;
	gap: clamp(38px, 6vw, 80px);
}

.vshc-article__content {
	min-width: 0;
	font-size: 18px;
	line-height: 1.75;
}

.vshc-article__content > :first-child {
	margin-top: 0;
}

.vshc-article__content h2 {
	margin: 56px 0 18px;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.18;
	letter-spacing: -.025em;
}

.vshc-article__content h3 {
	margin: 38px 0 14px;
	font-size: 25px;
	line-height: 1.25;
}

.vshc-article__content p,
.vshc-article__content ul,
.vshc-article__content ol {
	margin-block: 0 22px;
}

.vshc-article__content li + li {
	margin-top: 9px;
}

.vshc-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

.vshc-article__content table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	font-size: 16px;
}

.vshc-article__content th,
.vshc-article__content td {
	min-width: 150px;
	padding: 14px;
	border: 1px solid var(--vshc-line);
	text-align: left;
}

.vshc-article__content th {
	background: var(--vshc-soft);
}

.vshc-article__aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.vshc-aside-card {
	padding: 24px;
	border: 1px solid var(--vshc-line);
	border-radius: 18px;
	background: #fff;
}

.vshc-aside-card p {
	color: var(--vshc-muted);
	line-height: 1.55;
}

.vshc-aside-card ul {
	margin: 14px 0 0;
	padding-left: 20px;
}

.vshc-aside-card li + li {
	margin-top: 10px;
}

.vshc-aside-card a {
	color: var(--vshc-ink);
}

.vshc-faq {
	margin-top: 70px;
	padding-top: 46px;
	border-top: 1px solid var(--vshc-line);
}

.vshc-faq__list {
	margin-top: 24px;
	border-top: 1px solid var(--vshc-line);
}

.vshc-faq details {
	border-bottom: 1px solid var(--vshc-line);
}

.vshc-faq summary {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	font-weight: 800;
	cursor: pointer;
}

.vshc-faq summary::-webkit-details-marker {
	display: none;
}

.vshc-faq__question {
	min-width: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: auto;
}

.vshc-faq summary .vshc-faq__toggle {
	flex: 0 0 auto;
	font-size: 26px;
	color: #087a4d;
}

.vshc-faq details[open] summary .vshc-faq__toggle {
	transform: rotate(45deg);
}

.vshc-faq details p {
	margin: 0;
	padding: 0 0 22px;
	color: var(--vshc-muted);
}

.vshc-related {
	border-top: 1px solid var(--vshc-line);
}

.vshc-context-help {
	width: 100%;
	margin: 22px 0;
	border: 1px solid #cfd6d2;
	border-left: 4px solid var(--vshc-accent);
	border-radius: 14px;
	background: #fff;
	color: var(--vshc-ink);
	font-size: 15px;
}

.vshc-context-help summary {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3px 16px;
	padding: 16px 52px 16px 18px;
	cursor: pointer;
}

.vshc-context-help summary::-webkit-details-marker {
	display: none;
}

.vshc-context-help__eyebrow {
	grid-column: 1 / -1;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: #087a4d;
}

.vshc-context-help__toggle {
	position: absolute;
	top: 50%;
	right: 18px;
	font-size: 24px;
	transform: translateY(-50%);
}

.vshc-context-help details[open] .vshc-context-help__toggle {
	transform: translateY(-50%) rotate(45deg);
}

.vshc-context-help__body {
	padding: 0 18px 18px;
}

.vshc-context-help__body p {
	margin: 0 0 14px;
	line-height: 1.55;
	color: var(--vshc-muted);
}

.vshc-context-help__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.vshc-dismiss {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vshc-muted);
	font: inherit;
	text-decoration: underline;
	cursor: pointer;
}

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

	.vshc-article__layout {
		grid-template-columns: 1fr;
	}

	.vshc-article__aside {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.vshc-shell {
		width: min(100% - 24px, 1320px);
	}

	.vshc-breadcrumbs {
		padding-block: 16px;
		font-size: 12px;
	}

	.vshc-hero {
		padding: 48px 0 54px;
	}

	.vshc-search {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.vshc-topic-grid,
	.vshc-article-grid,
	.vshc-article__aside {
		grid-template-columns: 1fr;
	}

	.vshc-topic-card {
		min-height: 0;
		padding: 24px;
	}

	.vshc-contact-strip__inner,
	.vshc-section-heading {
		align-items: stretch;
		flex-direction: column;
	}

	.vshc-contact-strip .vshc-button {
		width: 100%;
	}

	.vshc-article {
		padding-top: 22px;
	}

	.vshc-article__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.vshc-article__header h1 {
		font-size: clamp(34px, 11vw, 52px);
	}

	.vshc-short-answer {
		margin-top: 24px;
		padding: 20px;
	}

	.vshc-article__content {
		font-size: 17px;
		line-height: 1.7;
	}

	.vshc-article__content table {
		display: table;
		table-layout: fixed;
		overflow-x: visible;
		font-size: 13px;
		line-height: 1.35;
	}

	.vshc-article__content th,
	.vshc-article__content td {
		min-width: 0;
		padding: 9px 7px;
		overflow-wrap: anywhere;
		word-break: normal;
		hyphens: auto;
	}

	.vshc-context-help summary {
		padding-left: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vshc-site-main *,
	.vshc-context-help * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
