/*
 * TechVon standard single post.
 * Everything is scoped to .tvsingle so silo pages and special templates are unaffected.
 */

.tvsingle {
	--tv-color-primary: #1477f2;
	--tv-color-primary-dark: #075dcc;
	--tv-color-primary-soft: #e8f1fe;
	--tv-color-navy: #0b1736;
	--tv-color-muted: #5f7192;
	--tv-color-line: #d7e4f5;
	--tv-color-bg: #ffffff;
	--tv-color-bg-alt: #f6f9fd;
	--tv-color-ai: #7c3aed;
	--tv-color-ai-soft: #f2ecfe;
	--tv-color-web: #1477f2;
	--tv-color-web-soft: #e8f1fe;
	--tv-color-tech: #ff6235;
	--tv-color-tech-soft: #fff1eb;
	--tvs-accent: var(--tv-color-primary);
	--tvs-accent-dark: var(--tv-color-primary-dark);
	--tvs-soft: var(--tv-color-primary-soft);
	--tvs-navy: #071b3a;
	--tvs-text: #334e6f;
	--tvs-muted: #647892;
	--tvs-line: #d8e4f2;
	--tvs-bg: #f7f9fc;
	--tvs-container: 1240px;
	color: var(--tvs-text);
	background: #fff;
	font-family: Inter, Arial, sans-serif;
}

.tvsingle-theme--ai {
	--tvs-accent: #7c3aed;
	--tvs-accent-dark: #6423ca;
	--tvs-soft: #f3edff;
}

.tvsingle-theme--website {
	--tvs-accent: #1477f2;
	--tvs-accent-dark: #075fce;
	--tvs-soft: #eaf3ff;
}

.tvsingle-theme--tech {
	--tvs-accent: #ff6235;
	--tvs-accent-dark: #e5481d;
	--tvs-soft: #fff1eb;
}

.tvsingle-theme--neutral .tvsingle-category {
	color: #334155;
	border-color: #e2e8f0;
	background: #f8fafc;
}

.tvsingle-theme--neutral .tvsingle-category:hover,
.tvsingle-theme--neutral .tvsingle-category:focus {
	color: #334155;
	border-color: #cbd5e1;
	background: #f1f5f9;
}

.tvsingle,
.tvsingle * {
	box-sizing: border-box;
}

.tvsingle a,
.tvsingle button,
.tvsingle input {
	font: inherit;
}

.tvsingle a,
.tvsingle button {
	transition: color .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvsingle-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.tvsingle-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 3px;
	background: rgba(216, 228, 242, .6);
	pointer-events: none;
}

.tvsingle-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--tvs-accent);
	box-shadow: 0 0 10px color-mix(in srgb, var(--tvs-accent) 60%, transparent);
	transition: width .08s linear;
}

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

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

.tvsingle-breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	padding: 24px 0 28px;
	color: #8192a8;
	font-size: 12px;
	line-height: 1.4;
}

.tvsingle-breadcrumb a {
	color: var(--tvs-muted);
	text-decoration: none;
}

.tvsingle-breadcrumb a:hover,
.tvsingle-breadcrumb a:focus {
	color: var(--tvs-accent);
}

.tvsingle-breadcrumb [aria-current="page"] {
	min-width: 0;
	overflow: hidden;
	color: var(--tvs-accent);
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tvsingle-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 318px;
	gap: 36px;
	align-items: start;
	padding-bottom: 48px;
}

.tvsingle-article,
.tvsingle-sidebar {
	min-width: 0;
	max-width: 100%;
}

.tvsingle-header {
	position: relative;
	padding: 10px 0 24px;
}

.tvsingle-category {
	display: inline-flex;
	min-height: 27px;
	align-items: center;
	padding: 0 10px;
	border-radius: 5px;
	color: #fff;
	background: var(--tvs-accent);
	font-size: 10.5px;
	font-weight: 850;
	letter-spacing: .035em;
	text-decoration: none;
	text-transform: uppercase;
}

.tvsingle-category:hover,
.tvsingle-category:focus {
	color: #fff;
	background: var(--tvs-accent-dark);
}

.tvsingle-header h1 {
	max-width: 850px;
	margin: 15px 0 13px;
	color: var(--tvs-navy);
	font-size: clamp(2rem, 3.8vw, 3rem);
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1.12;
}

.tvsingle-excerpt {
	max-width: 820px;
	margin: 0 0 20px;
	color: var(--tvs-muted);
	font-size: 15px;
	line-height: 1.65;
}

.tvsingle-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	color: #71849d;
	font-size: 11.5px;
	font-weight: 650;
}

.tvsingle-meta > span:not(:first-child),
.tvsingle-meta > a:not(:first-child) {
	position: relative;
	padding-left: 14px;
}

.tvsingle-meta > span:not(:first-child)::before,
.tvsingle-meta > a:not(:first-child)::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #b5c3d3;
	content: "";
	transform: translateY(-50%);
}

.tvsingle-meta a {
	color: inherit;
	text-decoration: none;
}

.tvsingle-meta__author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--tvs-navy);
	font-weight: 800;
}

.tvsingle-meta__author img {
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}

.tvsingle-featured {
	margin: 0 0 27px;
	overflow: hidden;
	border: 1px solid var(--tvs-line);
	border-radius: 14px;
	background: var(--tvs-soft);
	box-shadow: 0 10px 28px rgba(7, 27, 58, .07);
}

.tvsingle-featured__image,
.tvsingle-featured > img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.tvsingle-featured__placeholder {
	display: flex;
	aspect-ratio: 16 / 9;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px;
	color: var(--tvs-accent-dark);
	background-color: var(--tvs-soft);
	background-image:
		linear-gradient(color-mix(in srgb, var(--tvs-accent) 9%, transparent) 1px, transparent 1px),
		linear-gradient(90deg, color-mix(in srgb, var(--tvs-accent) 9%, transparent) 1px, transparent 1px);
	background-size: 28px 28px;
	text-align: center;
}

.tvsingle-featured__placeholder span {
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tvsingle-featured__placeholder strong {
	max-width: 620px;
	color: var(--tvs-navy);
	font-size: clamp(1.25rem, 3vw, 2rem);
	line-height: 1.25;
}

.tvsingle-featured figcaption {
	padding: 9px 14px;
	color: #7d8da3;
	background: #fff;
	font-size: 11px;
	line-height: 1.45;
	text-align: center;
}

.tvsingle-share {
	display: flex;
	align-items: center;
	gap: 11px;
	font-family: inherit;
}

.tvsingle-share--desktop {
	position: absolute;
	top: 10px;
	left: -70px;
	width: 40px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tvsingle-share--mobile {
	display: none;
	margin-top: 18px;
	justify-content: center;
	flex-wrap: wrap;
}

.tvsingle-share__label {
	display: block;
	width: 100%;
	color: #8091a7;
	font-family: inherit;
	font-size: 9px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.tvsingle-share a,
.tvsingle-share button {
	display: flex;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 1px solid var(--tvs-line);
	border-radius: 999px;
	color: var(--tvs-accent);
	background: #fff;
	font-family: inherit;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	appearance: none;
	cursor: pointer;
}

.tvsingle-share a:hover,
.tvsingle-share a:focus,
.tvsingle-share button:hover,
.tvsingle-share button:focus,
.tvsingle-share button.is-copied {
	color: #fff;
	border-color: var(--tvs-accent);
	background: var(--tvs-accent);
	transform: translateY(-1px);
}

/* Article body: WordPress editor remains the only content source. */
.tvsingle-content {
	min-width: 0;
	max-width: 100%;
	color: #294462;
	font-size: 15.5px;
	line-height: 1.78;
	overflow-wrap: break-word;
}

.tvsingle-content > *:first-child {
	margin-top: 0;
}

.tvsingle-content h2,
.tvsingle-content h3,
.tvsingle-content h4 {
	color: var(--tvs-navy);
	font-weight: 850;
	letter-spacing: -.018em;
	scroll-margin-top: 100px;
}

.tvsingle-content h2 {
	margin: 38px 0 14px;
	font-size: clamp(1.45rem, 2.5vw, 1.85rem);
	line-height: 1.27;
}

.tvsingle-content h3 {
	margin: 29px 0 11px;
	font-size: clamp(1.15rem, 2vw, 1.38rem);
	line-height: 1.32;
}

.tvsingle-content h4 {
	margin: 24px 0 9px;
	font-size: 1.08rem;
}

.tvsingle-content p {
	margin: 0 0 17px;
}

.tvsingle-content a {
	color: var(--tvs-accent-dark);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: color-mix(in srgb, var(--tvs-accent) 35%, transparent);
	text-underline-offset: 3px;
}

.tvsingle-content a:hover,
.tvsingle-content a:focus {
	color: var(--tvs-accent);
	text-decoration-color: currentColor;
}

.tvsingle-content ul,
.tvsingle-content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.tvsingle-content li {
	margin: 7px 0;
	padding-left: 3px;
}

.tvsingle-content li::marker {
	color: var(--tvs-accent);
	font-weight: 800;
}

.tvsingle-content blockquote {
	margin: 25px 0;
	padding: 19px 22px;
	border: 0;
	border-left: 4px solid var(--tvs-accent);
	border-radius: 0 11px 11px 0;
	color: #39536f;
	background: var(--tvs-soft);
	font-size: 1.02em;
}

.tvsingle-content blockquote p:last-child {
	margin-bottom: 0;
}

.tvsingle-content figure,
.tvsingle-content .wp-caption,
.tvsingle-content .wp-block-image,
.tvsingle-content .wp-block-gallery {
	max-width: 100% !important;
	margin: 25px 0;
}

.tvsingle-content img,
.tvsingle-content picture,
.tvsingle-content video,
.tvsingle-content iframe {
	display: block;
	max-width: 100% !important;
	height: auto;
	margin-inline: auto;
}

.tvsingle-content img {
	border-radius: 10px;
}

.tvsingle-content figcaption,
.tvsingle-content .wp-caption-text {
	margin-top: 8px;
	color: #7f8ea2;
	font-size: 11.5px;
	line-height: 1.5;
	text-align: center;
}

.tvsingle-content .wp-block-embed__wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.tvsingle-content .wp-block-embed__wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.tvsingle-content .wp-block-table,
.tvsingle-content .tv-post-compare {
	max-width: 100%;
	margin: 25px 0;
	overflow-x: auto;
	border: 1px solid var(--tvs-line);
	border-radius: 11px;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.tvsingle-content table {
	width: 100%;
	min-width: 560px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	font-size: 12.5px;
	line-height: 1.45;
}

.tvsingle-content th,
.tvsingle-content td {
	padding: 12px 13px;
	border: 0;
	border-right: 1px solid #e6edf6;
	border-bottom: 1px solid #e6edf6;
	text-align: left;
	vertical-align: top;
}

.tvsingle-content th:last-child,
.tvsingle-content td:last-child {
	border-right: 0;
}

.tvsingle-content tr:last-child td {
	border-bottom: 0;
}

.tvsingle-content th {
	color: var(--tvs-navy);
	background: #f2f6fb;
	font-weight: 850;
}

.tvsingle-content code {
	padding: 2px 6px;
	border-radius: 5px;
	color: #b4234d;
	background: #f6f0f3;
	font-family: Consolas, Monaco, monospace;
	font-size: .88em;
}

.tvsingle-content pre {
	max-width: 100%;
	margin: 24px 0;
	padding: 18px 20px;
	overflow-x: auto;
	border-radius: 11px;
	color: #e7edf5;
	background: #101c2e;
	font-size: 13px;
	line-height: 1.6;
	white-space: pre;
}

.tvsingle-content pre code {
	padding: 0;
	color: inherit;
	background: transparent;
	white-space: inherit;
}

.tvsingle-content .wp-block-button {
	margin: 20px 0;
}

.tvsingle-content .wp-block-button__link,
.tvsingle-content a.tv-post-button {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 1px solid var(--tvs-accent);
	border-radius: 8px;
	color: #fff;
	background: var(--tvs-accent);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.tvsingle-content .wp-block-button__link:hover,
.tvsingle-content a.tv-post-button:hover {
	color: #fff;
	background: var(--tvs-accent-dark);
}

.tvsingle-content .tv-post-summary,
.tvsingle-content .tv-post-cta,
.tvsingle-content .tv-post-note,
.tvsingle-content .tv-post-recommend,
.tvsingle-content .tv-post-pros-cons {
	margin: 25px 0;
	padding: 20px 22px;
	border: 1px solid color-mix(in srgb, var(--tvs-accent) 22%, var(--tvs-line));
	border-radius: 11px;
	background: color-mix(in srgb, var(--tvs-soft) 68%, #fff);
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
}

.tvsingle-content .tv-post-summary {
	border-left: 4px solid var(--tvs-accent);
}

.tvsingle-content .tv-post-note {
	border-color: #c8dcf5;
	background: #f2f7fd;
}

.tvsingle-content .tv-post-recommend {
	border-color: #cce8d4;
	background: #f2fbf5;
}

.tvsingle-content .tv-post-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 23px 25px;
}

.tvsingle-content .tv-post-summary > :last-child,
.tvsingle-content .tv-post-cta > :last-child,
.tvsingle-content .tv-post-note > :last-child,
.tvsingle-content .tv-post-recommend > :last-child,
.tvsingle-content .tv-post-pros-cons > :last-child {
	margin-bottom: 0;
}

.tvsingle-content .tv-post-pros-cons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	background: #fff;
}

.tvsingle-content details {
	margin: 10px 0;
	overflow: hidden;
	border: 1px solid var(--tvs-line);
	border-radius: 9px;
	background: #fff;
}

.tvsingle-content details summary {
	position: relative;
	padding: 14px 42px 14px 16px;
	color: var(--tvs-navy);
	font-weight: 800;
	line-height: 1.45;
	list-style: none;
	cursor: pointer;
}

.tvsingle-content details summary::-webkit-details-marker {
	display: none;
}

.tvsingle-content details summary::after {
	position: absolute;
	top: 50%;
	right: 16px;
	color: var(--tvs-accent);
	content: "+";
	font-size: 18px;
	transform: translateY(-50%);
}

.tvsingle-content details[open] summary::after {
	content: "−";
}

.tvsingle-content details > :not(summary) {
	margin-right: 16px;
	margin-left: 16px;
}

.tvsingle-content details > :last-child {
	margin-bottom: 16px;
}

.tvsingle-content .alignwide,
.tvsingle-content .alignfull {
	width: 100% !important;
	max-width: 100% !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.tvsingle-page-links {
	margin-top: 24px;
	color: var(--tvs-muted);
	font-size: 13px;
}

/* TOC and sidebar. */
.tvsingle-sidebar__inner {
	position: sticky;
	top: 94px;
	display: grid;
	gap: 14px;
}

.admin-bar .tvsingle-sidebar__inner {
	top: 126px;
}

.tvsingle-side-card,
.tvsingle-toc {
	padding: 18px;
	border: 1px solid var(--tvs-line);
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 7px 20px rgba(7, 27, 58, .04);
}

.tvsingle-side-card h2,
.tvsingle-toc h2 {
	margin: 0 0 13px;
	color: var(--tvs-navy);
	font-size: 15px;
	font-weight: 850;
	line-height: 1.35;
}

.tvsingle-toc nav {
	display: grid;
	gap: 4px;
}

.tvsingle-toc a {
	position: relative;
	display: block;
	padding: 6px 8px 6px 13px;
	border-radius: 6px;
	color: var(--tvs-muted);
	font-size: 11.5px;
	font-weight: 650;
	line-height: 1.4;
	text-decoration: none;
}

.tvsingle-toc a::before {
	position: absolute;
	top: 12px;
	left: 3px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #b9c7d6;
	content: "";
}

.tvsingle-toc a.is-h3 {
	padding-left: 23px;
	font-size: 10.75px;
}

.tvsingle-toc a.is-h3::before {
	left: 13px;
}

.tvsingle-toc a:hover,
.tvsingle-toc a:focus,
.tvsingle-toc a.is-active {
	color: var(--tvs-accent-dark);
	background: var(--tvs-soft);
}

.tvsingle-toc a.is-active::before {
	background: var(--tvs-accent);
}

.tvsingle-toc--mobile {
	display: none;
	margin: 0 0 25px;
}

.tvsingle-side-author {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.tvsingle-side-author > img {
	display: block;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
}

.tvsingle-side-author h2 {
	margin-bottom: 5px;
}

.tvsingle-side-author p,
.tvsingle-journey p {
	margin: 0 0 9px;
	color: var(--tvs-muted);
	font-size: 10.75px;
	line-height: 1.5;
}

.tvsingle-side-author a,
.tvsingle-side-related__all {
	color: var(--tvs-accent-dark);
	font-family: inherit;
	font-size: 10px;
	font-weight: 850;
	line-height: 1.35;
	text-decoration: none;
}

.tvsingle-side-related__all {
	font-size: 9.5px;
	font-weight: 900;
}

.tvsingle-journey {
	background: linear-gradient(145deg, #fff, var(--tvs-soft));
}

.tvsingle-side-card__eyebrow {
	display: block;
	margin-bottom: 5px;
	color: var(--tvs-accent-dark);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tvsingle-journey ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
	margin: 13px 0 15px;
	padding: 0;
	list-style: none;
}

.tvsingle-journey li {
	color: var(--tvs-muted);
	font-size: 9.5px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

.tvsingle-journey li span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	margin: 0 auto 6px;
	border: 1px solid color-mix(in srgb, var(--tvs-accent) 32%, var(--tvs-line));
	border-radius: 50%;
	color: var(--tvs-accent);
	background: #fff;
}

.tvsingle-button {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0 12px;
	border-radius: 7px;
	color: #fff;
	background: var(--tvs-accent);
	font-family: inherit;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.tvsingle-button:hover,
.tvsingle-button:focus {
	color: #fff;
	background: var(--tvs-accent-dark);
}

.tvsingle-side-related__list {
	display: grid;
	gap: 10px;
}

.tvsingle-side-related__list > a {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.tvsingle-side-related__image {
	display: grid;
	width: 62px;
	aspect-ratio: 16 / 10;
	place-items: center;
	overflow: hidden;
	border-radius: 6px;
	color: var(--tvs-accent-dark);
	background: var(--tvs-soft);
	font-size: 10px;
}

.tvsingle-side-related__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tvsingle-side-related__list strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--tvs-navy);
	font-size: 10.75px;
	font-weight: 800;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tvsingle-side-related__list small {
	display: block;
	margin-top: 4px;
	color: #8a99ac;
	font-size: 9px;
}

.tvsingle-side-related__all {
	display: inline-flex;
	margin-top: 13px;
}

/* Bottom article support blocks. */
.tvsingle-author-box {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	margin-top: 42px;
	padding: 22px;
	border: 1px solid var(--tvs-line);
	border-radius: 12px;
	background: #f9fbfd;
}

.tvsingle-author-box > img {
	display: block;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
}

.tvsingle-author-box span {
	color: var(--tvs-accent-dark);
	font-size: 9.5px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tvsingle-author-box h2 {
	margin: 3px 0 6px;
	color: var(--tvs-navy);
	font-size: 17px;
	font-weight: 850;
}

.tvsingle-author-box p {
	margin: 0 0 7px;
	color: var(--tvs-muted);
	font-size: 12px;
	line-height: 1.55;
}

.tvsingle-author-box a {
	color: var(--tvs-accent-dark);
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
}

.tvsingle-author-box__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 9px 0;
}

.tvsingle-author-box__socials a {
	display: inline-flex;
	min-height: 25px;
	align-items: center;
	padding: 0 8px;
	border: 1px solid var(--tvs-line);
	border-radius: 999px;
	color: var(--tvs-muted);
	background: #fff;
	font-size: 9.5px;
}

.tvsingle-author-box__socials a:hover {
	color: #fff;
	border-color: var(--tvs-accent);
	background: var(--tvs-accent);
}

.tvsingle-post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.tvsingle-post-nav a {
	display: flex;
	min-width: 0;
	min-height: 82px;
	flex-direction: column;
	justify-content: center;
	padding: 14px 16px;
	border: 1px solid var(--tvs-line);
	border-radius: 10px;
	color: inherit;
	background: #fff;
	text-decoration: none;
}

.tvsingle-post-nav a:last-child {
	text-align: right;
}

.tvsingle-post-nav a:hover {
	border-color: var(--tvs-accent);
	box-shadow: 0 8px 20px rgba(7, 27, 58, .06);
}

.tvsingle-post-nav span {
	margin-bottom: 4px;
	color: var(--tvs-accent-dark);
	font-size: 10px;
	font-weight: 800;
}

.tvsingle-post-nav strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--tvs-navy);
	font-size: 12px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tvsingle-next-steps,
.tvsingle-lead,
.tvsingle-related {
	margin-top: 28px;
}

.tvsingle-next-steps {
	padding: 24px;
	border: 1px solid var(--tvs-line);
	border-radius: 13px;
	background: #fff;
}

.tvsingle-next-steps > h2,
.tvsingle-related__head h2 {
	margin: 0;
	color: var(--tvs-navy);
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-weight: 850;
}

.tvsingle-next-steps > h2 {
	margin-bottom: 17px;
	text-align: center;
}

.tvsingle-next-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 13px;
}

.tvsingle-next-steps__grid a {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15px;
	border: 1px solid var(--tvs-line);
	border-radius: 10px;
	color: inherit;
	background: #fff;
	text-align: center;
	text-decoration: none;
}

.tvsingle-next-steps__grid a:hover {
	border-color: var(--tvs-accent);
	background: var(--tvs-soft);
	transform: translateY(-2px);
}

.tvsingle-next-steps__grid span {
	color: var(--tvs-accent-dark);
	font-size: 9.5px;
	font-weight: 850;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.tvsingle-next-steps__grid strong {
	margin: 5px 0 9px;
	color: var(--tvs-navy);
	font-size: 13px;
	line-height: 1.35;
}

.tvsingle-next-steps__grid b {
	color: var(--tvs-accent);
	font-size: 10.5px;
}

.tvsingle-lead {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr);
	gap: 30px;
	align-items: center;
	padding: 28px 34px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--tvs-accent) 20%, var(--tvs-line));
	border-radius: 14px;
	background: linear-gradient(135deg, #fff, var(--tvs-soft));
	box-shadow: 0 9px 25px rgba(7, 27, 58, .045);
}

.tvsingle-lead__visual {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border: 1px solid color-mix(in srgb, var(--tvs-accent) 25%, var(--tvs-line));
	border-radius: 12px;
	color: var(--tvs-accent-dark);
	background: #fff;
	box-shadow: 0 10px 22px rgba(7, 27, 58, .07);
	text-align: center;
	transform: rotate(-2deg);
}

.tvsingle-lead__visual span {
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .1em;
}

.tvsingle-lead__visual strong {
	margin: 7px 0;
	color: var(--tvs-navy);
	font-size: 17px;
	line-height: 1.25;
}

.tvsingle-lead__visual i {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	background: var(--tvs-accent);
	font-style: normal;
}

.tvsingle-lead__content h2 {
	margin: 0 0 7px;
	color: var(--tvs-navy);
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 850;
	line-height: 1.25;
}

.tvsingle-lead__content > p {
	margin: 0 0 14px;
	color: var(--tvs-muted);
	font-size: 12.5px;
	line-height: 1.55;
}

.tvsingle-lead__form,
.tvsingle-lead__shortcode form,
.tvsingle-lead__shortcode .tv-newsletter-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 9px;
	align-items: center;
}

.tvsingle-lead__form input,
.tvsingle-lead__shortcode input[type="email"],
.tvsingle-lead__shortcode input[type="text"] {
	width: 100%;
	height: 43px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid #cddbeb;
	border-radius: 8px;
	outline: 0;
	color: var(--tvs-navy);
	background: #fff;
	font-size: 12px;
}

.tvsingle-lead__form input:focus,
.tvsingle-lead__shortcode input:focus {
	border-color: var(--tvs-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--tvs-accent) 12%, transparent);
}

.tvsingle-lead__form button,
.tvsingle-lead__shortcode input[type="submit"],
.tvsingle-lead__shortcode button {
	display: inline-flex;
	height: 43px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 17px;
	border: 1px solid var(--tvs-accent);
	border-radius: 8px;
	color: #fff;
	background: var(--tvs-accent);
	font-size: 11.5px;
	font-weight: 850;
	cursor: pointer;
}

.tvsingle-lead__content small {
	display: block;
	margin-top: 8px;
	color: #8493a6;
	font-size: 9.5px;
}

.tvsingle-lead__shortcode .wpcf7-spinner {
	display: none;
}

.tvsingle-lead__shortcode .wpcf7-response-output,
.tvsingle-lead__shortcode .wpcf7-not-valid-tip {
	margin: 7px 0 0;
	font-size: 10px;
}

.tvsingle-related {
	padding: 28px 0 48px;
}

.tvsingle-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 17px;
}

.tvsingle-related__head > a {
	color: var(--tvs-accent-dark);
	font-size: 11.5px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.tvsingle-related__grid {
	display: grid;
	grid-auto-columns: minmax(190px, 214px);
	grid-auto-flow: column;
	gap: 13px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 2px 14px;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-color: color-mix(in srgb, var(--tvs-accent) 42%, #d9e4f1) transparent;
	scrollbar-width: thin;
}

.tvsingle-related__grid::-webkit-scrollbar {
	height: 6px;
}

.tvsingle-related__grid::-webkit-scrollbar-track {
	background: transparent;
}

.tvsingle-related__grid::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: color-mix(in srgb, var(--tvs-accent) 42%, #d9e4f1);
}

.tvsingle-related__card {
	min-width: 190px;
	overflow: hidden;
	border: 1px solid var(--tvs-line);
	border-radius: 10px;
	background: #fff;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
}

.tvsingle-related__card:hover {
	border-color: var(--tvs-accent);
	box-shadow: 0 10px 24px rgba(7, 27, 58, .07);
	transform: translateY(-2px);
}

.tvsingle-related__image {
	display: grid;
	aspect-ratio: 16 / 9;
	place-items: center;
	overflow: hidden;
	color: var(--tvs-accent-dark);
	background: var(--tvs-soft);
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.tvsingle-related__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tvsingle-related__body {
	padding: 11px;
}

.tvsingle-related__body > span {
	display: block;
	margin-bottom: 6px;
	color: var(--tvs-accent-dark);
	font-size: 8.5px;
	font-weight: 850;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.tvsingle-related__body h3 {
	margin: 0;
	font-size: 11.5px;
	font-weight: 850;
	line-height: 1.4;
}

.tvsingle-related__body h3 a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--tvs-navy);
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.tvsingle-related__body p {
	margin: 8px 0 0;
	color: #8493a6;
	font-size: 8.75px;
}

@media (max-width: 1260px) {
	.tvsingle-share--desktop {
		display: none;
	}

	.tvsingle-share--mobile {
		display: flex;
	}
}

@media (max-width: 1080px) {
	.tvsingle-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.tvsingle-sidebar__inner {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tvsingle-sidebar .tvsingle-toc {
		display: none;
	}

	.tvsingle-toc--mobile {
		display: block;
	}

	.tvsingle-side-related {
		grid-column: 1 / -1;
	}

	.tvsingle-side-related__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 767px) {
	.admin-bar .tvsingle-progress {
		top: 46px;
	}

	.tvsingle-container {
		width: min(calc(100% - 32px), var(--tvs-container));
	}

	.tvsingle-breadcrumb {
		padding: 17px 0 20px;
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: none;
	}

	.tvsingle-breadcrumb::-webkit-scrollbar {
		display: none;
	}

	.tvsingle-layout {
		gap: 28px;
		padding-bottom: 28px;
	}

	.tvsingle-header {
		padding-top: 4px;
	}

	.tvsingle-header h1 {
		font-size: clamp(1.75rem, 8.3vw, 2.3rem);
	}

	.tvsingle-excerpt {
		font-size: 14px;
	}

	.tvsingle-meta {
		gap: 9px 13px;
	}

	.tvsingle-featured {
		border-radius: 11px;
	}

	.tvsingle-content {
		font-size: 15px;
		line-height: 1.73;
	}

	.tvsingle-content h2 {
		margin-top: 32px;
	}

	.tvsingle-content table {
		min-width: 520px;
	}

	.tvsingle-content .tv-post-cta,
	.tvsingle-content .tv-post-pros-cons {
		grid-template-columns: 1fr;
	}

	.tvsingle-content .tv-post-cta {
		display: block;
	}

	.tvsingle-sidebar__inner,
	.tvsingle-side-related__list,
	.tvsingle-next-steps__grid,
	.tvsingle-post-nav {
		grid-template-columns: 1fr;
	}

	.tvsingle-side-related {
		grid-column: auto;
	}

	.tvsingle-post-nav a:last-child {
		text-align: left;
	}

	.tvsingle-author-box {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 14px;
		padding: 17px;
	}

	.tvsingle-author-box > img {
		width: 64px;
		height: 64px;
	}

	.tvsingle-next-steps {
		padding: 19px;
	}

	.tvsingle-lead {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 23px 19px;
	}

	.tvsingle-lead__visual {
		width: min(210px, 78%);
		min-height: 130px;
		margin-inline: auto;
	}

	.tvsingle-lead__content {
		text-align: center;
	}

	.tvsingle-lead__form,
	.tvsingle-lead__shortcode form,
	.tvsingle-lead__shortcode .tv-newsletter-row {
		grid-template-columns: 1fr;
	}

	.tvsingle-lead__form button,
	.tvsingle-lead__shortcode input[type="submit"],
	.tvsingle-lead__shortcode button {
		width: 100%;
	}

	.tvsingle-related__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.tvsingle-related__grid {
		grid-auto-columns: minmax(220px, 76vw);
	}
}

@media (max-width: 480px) {
	.tvsingle-related__grid {
		grid-auto-columns: minmax(218px, 84vw);
	}

	.tvsingle-share__label {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tvsingle *,
	.tvsingle *::before,
	.tvsingle *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
