/*
 * VirtualRun Theme - main stylesheet.
 * Plain CSS, no framework, no build step. Mobile-first: base rules
 * target small screens, larger breakpoints layer on with min-width
 * media queries. Design direction: deep navy + premium blue, white
 * cards on soft gray, small green for success states only, orange
 * reserved for high-energy CTA highlights.
 */

/* ==========================================================
   1. Brand variables
   ========================================================== */
:root {
	--vr-navy: #071B33;
	--vr-blue: #1266F1;
	--vr-blue-dark: #0B4BC4;
	--vr-blue-soft: #EAF2FF;
	--vr-cyan: #28D4FF;
	--vr-orange: #FF8A1F;
	--vr-green: #13B981;
	--vr-text: #102033;
	--vr-muted: #667085;
	--vr-bg: #F5F8FC;
	--vr-white: #FFFFFF;
	--vr-border: #D9E3F0;

	--vr-radius: 14px;
	--vr-radius-sm: 8px;
	--vr-shadow: 0 1px 2px rgba(7, 27, 51, 0.06);
	--vr-shadow-lg: 0 16px 40px rgba(7, 27, 51, 0.14);
	--vr-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ==========================================================
   2. Base / reset
   ========================================================== */
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--vr-font);
	color: var(--vr-text);
	background: var(--vr-bg);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--vr-font);
	color: var(--vr-navy);
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--vr-blue);
	text-decoration: none;
}

a:hover {
	color: var(--vr-blue-dark);
}

/*
 * v0.1.1 fix: the global "ul, ol { list-style: none; }" reset that
 * used to live here broke ordinary bullets/numbers inside blog posts
 * and pages. Lists are no longer reset globally - only the specific
 * navigation/card/meta lists below (which are meant to look like
 * plain rows, not bulleted content) have their markers removed.
 * Normal content lists get real, readable styling in section 16b.
 */
.vr-primary-menu,
.vr-mobile-menu-list,
.vr-footer-links,
.vr-footer-menu,
.vr-card-meta,
.vr-single-meta,
.vr-single-details-list,
.vr-social-links,
.vr-steps-grid,
.vr-institution-grid,
.vr-leaderboard-grid,
.vr-leaderboard-rows,
.vr-who-for-list,
.vr-internal-links-list,
.vr-faq-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
}

/* Focus states - accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--vr-cyan);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.vr-skip-link {
	position: absolute;
	top: -50px;
	left: 0;
	background: var(--vr-navy);
	color: var(--vr-white);
	padding: 10px 16px;
	z-index: 10000;
	transition: top 0.15s ease;
}

.vr-skip-link:focus {
	top: 0;
	position: fixed;
}

/* ==========================================================
   3. Layout helpers
   ========================================================== */
.vr-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.vr-content-area {
	padding: 40px 20px 60px;
}

.alignwide {
	max-width: 1180px;
}

.alignfull {
	width: 100%;
	max-width: 100%;
}

/* ==========================================================
   4. Buttons
   ========================================================== */
.vr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--vr-radius-sm);
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
	white-space: nowrap;
}

.vr-btn:hover {
	transform: translateY(-1px);
}

.vr-btn-primary {
	background: var(--vr-blue);
	color: var(--vr-white) !important;
}

.vr-btn-primary:hover {
	background: var(--vr-blue-dark);
}

.vr-btn-outline {
	background: transparent;
	border-color: var(--vr-blue);
	color: var(--vr-blue) !important;
}

.vr-btn-outline:hover {
	background: var(--vr-blue-soft);
}

.vr-btn-outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--vr-white) !important;
}

.vr-btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
}

.vr-btn-ghost {
	background: transparent;
	border-color: transparent;
	color: var(--vr-navy) !important;
}

.vr-btn-ghost:hover {
	background: var(--vr-blue-soft);
}

.vr-btn-lg {
	padding: 15px 28px;
	font-size: 16px;
}

.vr-btn-sm {
	padding: 9px 16px;
	font-size: 13.5px;
}

/* ==========================================================
   5. Header
   ========================================================== */
.vr-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: var(--vr-white);
	border-bottom: 1px solid var(--vr-border);
}

.vr-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 20px;
}

.vr-site-title {
	font-weight: 800;
	font-size: 20px;
	color: var(--vr-navy) !important;
}

.vr-custom-logo img {
	display: block;
	max-height: 44px;
	width: auto;
}

.vr-primary-nav {
	display: none;
}

.vr-primary-menu {
	display: flex;
	gap: 26px;
}

.vr-primary-menu a {
	color: var(--vr-text);
	font-weight: 600;
	font-size: 14.5px;
}

.vr-primary-menu a:hover {
	color: var(--vr-blue);
}

.vr-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vr-header-actions .vr-btn-primary {
	display: none;
}

.vr-mobile-menu-toggle {
	background: transparent;
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius-sm);
	width: 42px;
	height: 42px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.vr-hamburger-bar {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--vr-navy);
	border-radius: 2px;
}

.vr-mobile-menu {
	border-top: 1px solid var(--vr-border);
	background: var(--vr-white);
	padding: 16px 20px 24px;
}

.vr-mobile-menu[hidden] {
	display: none;
}

.vr-mobile-menu-list li {
	border-bottom: 1px solid var(--vr-border);
}

.vr-mobile-menu-list a {
	display: block;
	padding: 14px 4px;
	font-weight: 600;
	color: var(--vr-text);
}

.vr-mobile-cta {
	margin-top: 16px;
	width: 100%;
}

@media (min-width: 900px) {
	.vr-primary-nav {
		display: block;
	}

	.vr-header-actions .vr-btn-primary {
		display: inline-flex;
	}

	.vr-mobile-menu-toggle {
		display: none;
	}

	.vr-mobile-menu {
		display: none !important;
	}
}

/* ==========================================================
   6. Hero
   ========================================================== */
.vr-hero {
	background: linear-gradient(160deg, var(--vr-navy) 0%, var(--vr-blue-dark) 65%, var(--vr-blue) 100%);
	color: var(--vr-white);
	padding: 56px 0 40px;
	overflow: hidden;
}

.vr-hero-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.vr-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--vr-cyan);
	margin-bottom: 14px;
}

.vr-hero-headline {
	color: var(--vr-white);
	font-size: 34px;
	line-height: 1.15;
	margin-bottom: 16px;
}

.vr-hero-subtext {
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	max-width: 560px;
	margin-bottom: 26px;
}

.vr-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.vr-hero-visual {
	position: relative;
	min-height: 260px;
}

.vr-hero-visual-core {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 60% 40%, rgba(40, 212, 255, 0.25), transparent 60%);
	border-radius: 50%;
	filter: blur(10px);
}

.vr-float-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--vr-white);
	color: var(--vr-text);
	border-radius: var(--vr-radius-sm);
	padding: 12px 16px;
	box-shadow: var(--vr-shadow-lg);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
	max-width: 240px;
}

.vr-float-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--vr-blue-soft);
	color: var(--vr-blue);
	font-size: 12px;
	flex-shrink: 0;
}

.vr-icon-success {
	background: rgba(19, 185, 129, 0.15);
	color: var(--vr-green);
}

.vr-float-card-2 {
	margin-left: 30px;
}

.vr-float-card-3 {
	margin-left: 10px;
}

.vr-float-card-4 {
	margin-left: 40px;
}

/* Search / discovery bar */
.vr-search-bar {
	background: var(--vr-white);
	border-radius: var(--vr-radius);
	box-shadow: var(--vr-shadow-lg);
	padding: 16px;
	margin-top: 10px;
	color: var(--vr-text);
}

.vr-search-bar-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vr-search-field input,
.vr-search-field select {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius-sm);
	font-size: 14px;
	font-family: inherit;
	background: var(--vr-white);
	color: var(--vr-text);
}

.vr-search-submit {
	width: 100%;
}

@media (min-width: 900px) {
	.vr-hero-inner {
		flex-direction: row;
		align-items: center;
	}

	.vr-hero-copy {
		flex: 1 1 55%;
	}

	.vr-hero-visual {
		flex: 1 1 45%;
	}

	.vr-hero-headline {
		font-size: 46px;
	}

	.vr-search-bar-form {
		flex-direction: row;
		align-items: center;
	}

	.vr-search-field-wide {
		flex: 1 1 30%;
	}

	.vr-search-field {
		flex: 1 1 18%;
	}

	.vr-search-submit {
		width: auto;
		flex-shrink: 0;
	}
}

/* ==========================================================
   7. Sections (generic)
   ========================================================== */
.vr-section {
	padding: 56px 0;
}

.vr-section:nth-of-type(even) {
	background: var(--vr-white);
}

.vr-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.vr-section-header-center {
	flex-direction: column;
	text-align: center;
}

.vr-section-title {
	font-size: 26px;
	margin-bottom: 0;
}

.vr-section-subtitle {
	color: var(--vr-muted);
	font-size: 15px;
	max-width: 560px;
}

.vr-section-link {
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
}

.vr-section-cta-row {
	text-align: center;
	margin-top: 32px;
}

.vr-plugin-required-notice {
	background: var(--vr-blue-soft);
	color: var(--vr-blue-dark);
	border-radius: var(--vr-radius-sm);
	padding: 16px;
	font-weight: 600;
	text-align: center;
}

/* ==========================================================
   8. Cards (shared by shortcodes' own CSS pattern and theme
   CPT archive/single templates - same visual language)
   ========================================================== */
.vr-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.vr-card {
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--vr-shadow);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.vr-card:hover {
	box-shadow: var(--vr-shadow-lg);
	transform: translateY(-2px);
}

.vr-card-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--vr-navy);
}

.vr-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vr-card-thumb-placeholder {
	background: linear-gradient(135deg, var(--vr-navy), var(--vr-blue-dark));
}

.vr-card-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.vr-card-title {
	font-size: 18px;
	margin-bottom: 0;
}

.vr-card-title a {
	color: var(--vr-navy);
}

.vr-card-excerpt {
	color: var(--vr-muted);
	font-size: 13.5px;
	margin-bottom: 0;
}

.vr-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 4px 0;
}

.vr-badge {
	display: inline-block;
	background: var(--vr-blue);
	color: var(--vr-white);
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
}

.vr-badge-outline {
	background: transparent;
	color: var(--vr-blue-dark);
	border: 1px solid var(--vr-blue);
}

.vr-meta-item {
	font-size: 12.5px;
	color: var(--vr-muted);
}

.vr-card-cta {
	margin-top: auto;
	display: inline-block;
	text-align: center;
	background: var(--vr-blue);
	color: var(--vr-white) !important;
	font-weight: 700;
	font-size: 13.5px;
	padding: 10px 14px;
	border-radius: var(--vr-radius-sm);
}

.vr-card-cta:hover {
	background: var(--vr-blue-dark);
}

.vr-card-cta-external {
	background: var(--vr-orange);
}

.vr-card-cta-external:hover {
	background: #e67a12;
}

@media (min-width: 700px) {
	.vr-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.vr-card-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================
   9. How it works
   ========================================================== */
.vr-steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.vr-step-card {
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius);
	padding: 22px;
	text-align: center;
}

.vr-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--vr-blue-soft);
	color: var(--vr-blue-dark);
	font-weight: 800;
	margin-bottom: 12px;
}

.vr-step-title {
	font-size: 16px;
	margin-bottom: 8px;
}

.vr-step-text {
	color: var(--vr-muted);
	font-size: 13.5px;
	margin-bottom: 0;
}

@media (min-width: 700px) {
	.vr-steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.vr-steps-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ==========================================================
   10. Institutions
   ========================================================== */
.vr-institution-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.vr-institution-card {
	background: linear-gradient(160deg, var(--vr-navy), var(--vr-blue-dark));
	color: var(--vr-white);
	border-radius: var(--vr-radius);
	padding: 24px;
}

.vr-institution-card-title {
	color: var(--vr-white);
	font-size: 17px;
	margin-bottom: 8px;
}

.vr-institution-card-text {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13.5px;
	margin-bottom: 0;
}

@media (min-width: 700px) {
	.vr-institution-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.vr-institution-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ==========================================================
   11. Leaderboard preview
   ========================================================== */
.vr-leaderboard-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.vr-leaderboard-card {
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius);
	padding: 22px;
}

.vr-leaderboard-card-title {
	font-size: 16px;
	margin-bottom: 12px;
}

.vr-leaderboard-rows li {
	padding: 8px 0;
	border-bottom: 1px solid var(--vr-border);
	font-size: 13.5px;
	color: var(--vr-text);
}

.vr-leaderboard-rows li:last-child {
	border-bottom: none;
}

@media (min-width: 900px) {
	.vr-leaderboard-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================
   12. Achievement share preview
   ========================================================== */
.vr-achievement-inner {
	display: flex;
	flex-direction: column;
	gap: 28px;
	align-items: center;
	text-align: center;
}

.vr-share-card {
	background: var(--vr-white);
	border-radius: var(--vr-radius);
	box-shadow: var(--vr-shadow-lg);
	padding: 26px;
	max-width: 320px;
	width: 100%;
	border-top: 4px solid var(--vr-orange);
}

.vr-share-card-badge {
	display: inline-block;
	background: rgba(19, 185, 129, 0.12);
	color: var(--vr-green);
	font-weight: 700;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.vr-share-card-headline {
	font-weight: 800;
	font-size: 17px;
	color: var(--vr-navy);
	margin-bottom: 10px;
}

.vr-share-card-cta {
	color: var(--vr-blue);
	font-weight: 700;
	font-size: 13.5px;
	margin-bottom: 0;
}

@media (min-width: 900px) {
	.vr-achievement-inner {
		flex-direction: row;
		text-align: left;
		justify-content: space-between;
	}

	.vr-achievement-copy {
		max-width: 480px;
	}
}

/* ==========================================================
   12b. AI/SEO-friendly content sections (What is VirtualRun,
   Who It Is For, FAQ preview, internal links row) - new in v0.1.1.
   Plain crawlable text sections, not just visual cards.
   ========================================================== */
.vr-section-what-is .vr-section-text {
	max-width: 760px;
	font-size: 16px;
	color: var(--vr-text);
}

.vr-who-for-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.vr-who-for-list li {
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius-sm);
	padding: 14px 16px;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	color: var(--vr-navy);
}

.vr-faq-list {
	max-width: 780px;
	margin: 0 auto;
}

.vr-faq-item {
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius-sm);
	padding: 4px 18px;
	margin-bottom: 12px;
}

.vr-faq-item summary {
	cursor: pointer;
	font-weight: 700;
	padding: 14px 0;
	color: var(--vr-navy);
	list-style: none;
}

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

.vr-faq-item summary::after {
	content: "+";
	float: right;
	font-weight: 800;
	color: var(--vr-blue);
}

.vr-faq-item[open] summary::after {
	content: "-";
}

.vr-faq-answer {
	color: var(--vr-muted);
	font-size: 14px;
	padding-bottom: 16px;
	margin: 0;
}

.vr-internal-links-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 18px;
}

.vr-internal-links-list a {
	display: inline-block;
	background: var(--vr-blue-soft);
	color: var(--vr-blue-dark) !important;
	font-weight: 600;
	font-size: 13.5px;
	padding: 8px 16px;
	border-radius: 999px;
}

.vr-internal-links-list a:hover {
	background: var(--vr-blue);
	color: var(--vr-white) !important;
}

@media (min-width: 700px) {
	.vr-who-for-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Archive/CPT summary paragraph */
.vr-archive-summary {
	color: var(--vr-muted);
	font-size: 15px;
	max-width: 640px;
	margin-top: 10px;
}

.vr-single-thumb-logo {
	max-width: 220px;
}

/* ==========================================================
   13. Final CTA
   ========================================================== */
.vr-section-final-cta {
	background: linear-gradient(135deg, var(--vr-blue-dark), var(--vr-blue));
}

.vr-final-cta-inner {
	text-align: center;
}

.vr-final-cta-title {
	color: var(--vr-white);
	font-size: 26px;
	margin-bottom: 22px;
}

.vr-final-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* ==========================================================
   14. Footer
   ========================================================== */
.vr-site-footer {
	background: var(--vr-navy);
	color: rgba(255, 255, 255, 0.75);
	padding: 48px 0 24px;
}

.vr-footer-brand .vr-site-title {
	color: var(--vr-white) !important;
}

.vr-footer-logo img {
	max-height: 40px;
}

.vr-footer-text {
	max-width: 420px;
	font-size: 13.5px;
	margin-top: 12px;
}

.vr-footer-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin: 32px 0;
}

.vr-footer-columns .widget-title {
	color: var(--vr-white);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
}

.vr-footer-links li {
	margin-bottom: 8px;
}

.vr-footer-links a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13.5px;
}

.vr-footer-links a:hover {
	color: var(--vr-cyan);
}

.vr-footer-nav {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 20px;
	margin-top: 8px;
}

.vr-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.vr-footer-menu a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.vr-footer-bottom {
	margin-top: 20px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 900px) {
	.vr-footer-columns {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ==========================================================
   15. CPT single/archive templates
   ========================================================== */
.vr-archive-header {
	margin-bottom: 28px;
}

.vr-archive-title {
	font-size: 28px;
}

.vr-single-thumb {
	border-radius: var(--vr-radius);
	overflow: hidden;
	margin-bottom: 24px;
}

.vr-single-thumb img {
	width: 100%;
	display: block;
}

.vr-single-header {
	margin-bottom: 24px;
}

.vr-single-title {
	font-size: 28px;
	margin-bottom: 12px;
}

.vr-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.vr-single-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.vr-single-description {
	font-size: 15.5px;
}

.vr-single-details-card {
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius);
	padding: 22px;
	position: sticky;
	top: 90px;
}

.vr-single-details-title {
	font-size: 16px;
	margin-bottom: 14px;
}

.vr-single-details-list li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--vr-border);
	font-size: 13.5px;
}

.vr-single-details-list li:last-child {
	border-bottom: none;
}

.vr-single-details-list span {
	color: var(--vr-muted);
}

.vr-single-cta-placeholder {
	margin-top: 18px;
	background: var(--vr-blue-soft);
	color: var(--vr-blue-dark);
	font-weight: 700;
	font-size: 13.5px;
	text-align: center;
	padding: 12px;
	border-radius: var(--vr-radius-sm);
}

@media (min-width: 900px) {
	.vr-single-layout {
		grid-template-columns: 2fr 1fr;
	}
}

/* ==========================================================
   16b. Content lists (normal bullets/numbers restored)
   v0.1.1 fix: since ul/ol are no longer reset globally, content
   areas get real, readable list styling here instead of relying on
   the browser default (which is fine, but this keeps spacing/
   indentation consistent with the rest of the design system).
   ========================================================== */
.vr-content ul,
.entry-content ul,
.vr-page-content ul,
.vr-single-description ul,
.vr-post-excerpt ul,
.vr-post-card-body ul {
	list-style: disc;
	margin: 0 0 1.2em;
	padding-left: 1.4em;
}

.vr-content ol,
.entry-content ol,
.vr-page-content ol,
.vr-single-description ol,
.vr-post-excerpt ol,
.vr-post-card-body ol {
	list-style: decimal;
	margin: 0 0 1.2em;
	padding-left: 1.4em;
}

.vr-content li,
.entry-content li,
.vr-page-content li,
.vr-single-description li,
.vr-post-excerpt li,
.vr-post-card-body li {
	margin-bottom: 0.4em;
	line-height: 1.6;
}

.vr-content ul ul,
.vr-content ol ol,
.entry-content ul ul,
.entry-content ol ol {
	margin-top: 0.4em;
	margin-bottom: 0.4em;
}

/* ==========================================================
   16. Standard blog content (index/archive/single/search)
   ========================================================== */
.vr-post-list {
	display: grid;
	gap: 24px;
}

.vr-post-card {
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius);
	overflow: hidden;
}

.vr-post-thumb img {
	width: 100%;
	display: block;
}

.vr-post-card-body {
	padding: 20px;
}

.vr-post-title {
	font-size: 20px;
}

.vr-post-title a {
	color: var(--vr-navy);
}

.vr-post-meta {
	color: var(--vr-muted);
	font-size: 12.5px;
	margin-bottom: 10px;
}

.vr-post-meta span {
	margin-right: 10px;
}

.vr-page-content,
.vr-page-card {
	background: var(--vr-white);
	border-radius: var(--vr-radius);
}

.vr-page-title {
	font-size: 28px;
}

.vr-no-results {
	text-align: center;
	padding: 40px 0;
}

.vr-comments-area {
	margin-top: 40px;
	background: var(--vr-white);
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius);
	padding: 24px;
}

.vr-comment-list {
	margin-bottom: 20px;
}

/* ==========================================================
   17. 404
   ========================================================== */
.vr-404-inner {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
	padding: 40px 0;
}

.vr-404-eyebrow {
	color: var(--vr-blue);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12.5px;
	letter-spacing: 0.08em;
}

.vr-404-title {
	font-size: 30px;
}

.vr-404-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin: 20px 0 28px;
	flex-wrap: wrap;
}

/* ==========================================================
   18. Search form (used by 404.php / search.php get_search_form)
   ========================================================== */
.search-form {
	display: flex;
	gap: 8px;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 11px 12px;
	border: 1px solid var(--vr-border);
	border-radius: var(--vr-radius-sm);
	font-family: inherit;
}

.search-form button {
	padding: 11px 18px;
	background: var(--vr-blue);
	color: var(--vr-white);
	border: none;
	border-radius: var(--vr-radius-sm);
	font-weight: 700;
	cursor: pointer;
}
