/**
 * TrueVitaHub
 * Single AI Tool Detail Page
 *
 * @package TrueVitaHub
 */


/* ==========================================================
   SINGLE TOOL PAGE
========================================================== */

.tvh-single-tool {
	width: 100%;
	background: #ffffff;
	color: #0f172a;
}

.tvh-single-tool .tvh-container {
	width: min(1200px, calc(100% - 40px));
	margin: 0 auto;
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.tvh-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 40px;
	align-items: start;
}

.tvh-single-content {
	min-width: 0;
}

.tvh-single-sidebar {
	min-width: 0;
	position: sticky;
	top: 100px;
}


/* ==========================================================
   BREADCRUMB
========================================================== */

.tvh-single-tool .tvh-breadcrumb {
	padding: 25px 0 10px;
	font-size: 14px;
	color: #64748b;
}

.tvh-single-tool .tvh-breadcrumb a {
	color: #2563eb;
	text-decoration: none;
}

.tvh-single-tool .tvh-breadcrumb a:hover {
	text-decoration: underline;
}


/* ==========================================================
   HERO
========================================================== */

.tvh-tool-hero {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	padding: 45px 0;
	border-bottom: 1px solid #e2e8f0;
}

.tvh-tool-hero-left {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	min-width: 0;
}

.tvh-tool-logo {
	flex: 0 0 auto;
}

.tvh-tool-logo img,
.tvh-tool-placeholder {
	width: 92px;
	height: 92px;
	border-radius: 20px;
}

.tvh-tool-logo img {
	display: block;
	object-fit: contain;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 10px;
}

.tvh-tool-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2563eb;
	color: #ffffff;
	font-size: 32px;
	font-weight: 800;
}

.tvh-tool-info {
	min-width: 0;
}

.tvh-tool-info h1 {
	margin: 0;
	color: #0f172a;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.tvh-tool-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.tvh-tool-badges span {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.tvh-featured-badge {
	background: #fff4d6;
	color: #b7791f;
}

.tvh-trending-badge {
	background: #ffe7e0;
	color: #d9480f;
}

.tvh-latest-badge {
	background: #e7f5ff;
	color: #1971c2;
}

.tvh-editor-badge {
	background: #f3e8ff;
	color: #7b2cbf;
}

.tvh-recommended-badge {
	background: #e6fcf5;
	color: #087f5b;
}

.tvh-sponsored-badge {
	background: #f8f9fa;
	color: #495057;
}

.tvh-tool-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}

.tvh-tool-meta .tvh-badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 13px;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.tvh-tool-meta .tvh-pricing {
	background: #f0fdf4;
	color: #15803d;
}

.tvh-rating {
	font-weight: 700;
	color: #334155;
}

.tvh-tool-description {
	max-width: 760px;
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 1.75;
	color: #64748b;
}

.tvh-tool-details {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.tvh-tool-details li {
	margin-bottom: 8px;
	color: #475569;
	font-size: 15px;
	line-height: 1.6;
}

.tvh-tool-details strong {
	color: #0f172a;
}

.tvh-tool-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 0 0 220px;
}

.tvh-tool-actions .tvh-sidebar-card {
	margin: 0;
}


/* ==========================================================
   BUTTONS
========================================================== */

.tvh-btn-primary,
.tvh-btn-outline,
.tvh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
	box-sizing: border-box;
}

.tvh-btn-primary {
	background: #2563eb;
	color: #ffffff !important;
	border: 1px solid #2563eb;
}

.tvh-btn-primary:hover {
	background: #1d4ed8;
	color: #ffffff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.tvh-btn-outline {
	background: #ffffff;
	color: #2563eb !important;
	border: 1px solid #2563eb;
}

.tvh-btn-outline:hover {
	background: #eff6ff;
	color: #1d4ed8 !important;
}

.tvh-btn-full {
	width: 100%;
}


/* ==========================================================
   SECTION COMMON
========================================================== */

.tvh-section-header {
	margin-bottom: 30px;
}

.tvh-section-header h2 {
	margin: 0;
	color: #0f172a;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.tvh-section-description {
	max-width: 700px;
	margin: 10px 0 0;
	color: #64748b;
	font-size: 16px;
	line-height: 1.7;
}


/* ==========================================================
   OVERVIEW
========================================================== */

.tvh-overview {
	padding: 60px 0;
}

.tvh-overview-summary {
	margin-bottom: 30px;
}

.tvh-overview-summary p {
	margin: 0;
	color: #475569;
	font-size: 18px;
	line-height: 1.8;
}

.tvh-overview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 35px;
}

.tvh-overview-item {
	padding: 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}

.tvh-label {
	display: block;
	margin-bottom: 8px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tvh-overview-item strong {
	display: block;
	color: #0f172a;
	font-size: 17px;
	line-height: 1.5;
}

.tvh-overview-content {
	color: #334155;
	font-size: 16px;
	line-height: 1.9;
}

.tvh-overview-content p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   FEATURES
========================================================== */

.tvh-features {
	padding: 60px 0;
	border-top: 1px solid #f1f5f9;
}

.tvh-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
	margin-bottom: 40px;
}

.tvh-feature-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	color: #334155;
	font-size: 15px;
	line-height: 1.6;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.tvh-feature-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.tvh-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 50%;
	background: #2563eb;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
}

.tvh-feature-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.tvh-meta-block h3 {
	margin: 0 0 15px;
	color: #0f172a;
	font-size: 19px;
	font-weight: 700;
}

.tvh-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tvh-tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 13px;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}


/* ==========================================================
   GALLERY
========================================================== */

.tvh-gallery{
	padding:60px 0;
}

.tvh-gallery-featured{
	margin-bottom:24px;
	overflow:hidden;
	border:1px solid #e2e8f0;
	border-radius:18px;
	background:#ffffff;
}

.tvh-gallery-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:16px;
	margin-bottom:30px;
}

.tvh-gallery-item{
	min-width:0;
	overflow:hidden;
	border:1px solid #e2e8f0;
	border-radius:16px;
	background:#ffffff;
}

.tvh-gallery-image-button{
	display:block;
	width:100%;
	margin:0;
	padding:0;
	border:0;
	background:transparent;
	cursor:zoom-in;
	line-height:0;
	overflow:hidden;
}

.tvh-gallery-image-button img{
	display:block;
	width:100%;
	height:auto;
	aspect-ratio:16 / 10;
	object-fit:cover;
	transition:transform .25s ease;
}

.tvh-gallery-featured .tvh-gallery-image-button img{
	aspect-ratio:16 / 9;
}

.tvh-gallery-image-button:hover img{
	transform:scale(1.025);
}

.tvh-gallery-video{
	margin-top:30px;
	overflow:hidden;
	border:1px solid #e2e8f0;
	border-radius:18px;
	background:#000000;
}

.tvh-gallery-video video{
	display:block;
	width:100%;
	max-width:100%;
	height:auto;
}

.tvh-gallery-youtube{
	background:#ffffff;
}

.tvh-gallery-youtube iframe{
	display:block;
	width:100%;
	min-height:420px;
	border:0;
}


/* ==========================================================
   LIGHTBOX
========================================================== */

.tvh-lightbox{
	position:fixed;
	inset:0;
	z-index:999999;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:30px;
	background:rgba(15,23,42,.92);
	box-sizing:border-box;
}

.tvh-lightbox[hidden]{
	display:none;
}

.tvh-lightbox img{
	display:block;
	max-width:94vw;
	max-height:88vh;
	width:auto;
	height:auto;
	object-fit:contain;
	border-radius:10px;
	box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.tvh-lightbox-close{
	position:absolute;
	top:20px;
	right:25px;
	z-index:2;
	width:44px;
	height:44px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0;
	border:1px solid rgba(255,255,255,.25);
	border-radius:50%;
	background:rgba(255,255,255,.12);
	color:#ffffff;
	font-size:30px;
	line-height:1;
	cursor:pointer;
}

.tvh-lightbox-close:hover{
	background:rgba(255,255,255,.22);
}


/* ==========================================================
   GALLERY RESPONSIVE
========================================================== */

@media (max-width:767px){

	.tvh-gallery{
		padding:45px 0;
	}

	.tvh-gallery-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
		gap:12px;
	}

	.tvh-gallery-youtube iframe{
		min-height:250px;
	}

	.tvh-lightbox{
		padding:15px;
	}

	.tvh-lightbox img{
		max-width:96vw;
		max-height:82vh;
	}

	.tvh-lightbox-close{
		top:12px;
		right:12px;
		width:40px;
		height:40px;
		font-size:26px;
	}

}

@media (max-width:480px){

	.tvh-gallery-grid{
		grid-template-columns:1fr;
	}

}

/* ==========================================================
   PROS & CONS
========================================================== */

.tvh-pros-cons{
	padding:60px 0;
	border-top:1px solid #f1f5f9;
}

.tvh-pros-cons-grid{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:24px;
}

.tvh-pros-box,
.tvh-cons-box{
	padding:28px;
	background:#ffffff;
	border:1px solid #e2e8f0;
	border-radius:20px;
	box-sizing:border-box;
}

.tvh-pros-box{
	border-top:4px solid #22c55e;
}

.tvh-cons-box{
	border-top:4px solid #ef4444;
}

.tvh-pros-box h3,
.tvh-cons-box h3{
	margin:0 0 20px;
	color:#0f172a;
	font-size:23px;
	font-weight:750;
	line-height:1.3;
}

.tvh-pros-box ul,
.tvh-cons-box ul{
	list-style:none;
	margin:0;
	padding:0;
}

.tvh-pros-box li,
.tvh-cons-box li{
	display:flex;
	align-items:flex-start;
	gap:12px;
	padding:12px 0;
	border-bottom:1px solid #f1f5f9;
	color:#334155;
	font-size:15px;
	line-height:1.6;
}

.tvh-pros-box li:last-child,
.tvh-cons-box li:last-child{
	border-bottom:0;
	padding-bottom:0;
}

.tvh-icon{
	display:flex;
	align-items:center;
	justify-content:center;
	width:24px;
	height:24px;
	flex:0 0 24px;
	border-radius:50%;
	font-size:12px;
	font-weight:800;
}

.tvh-icon-success{
	background:#dcfce7;
	color:#15803d;
}

.tvh-icon-danger{
	background:#fee2e2;
	color:#b91c1c;
}

@media (max-width:767px){

	.tvh-pros-cons-grid{
		grid-template-columns:1fr;
	}

	.tvh-pros-box,
	.tvh-cons-box{
		padding:20px;
	}

}

/* ==========================================================
   ALTERNATIVES
========================================================== */

.tvh-alternatives {
	padding: 60px 0;
	border-top: 1px solid #f1f5f9;
}

.tvh-alternatives-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.tvh-alternative-card {
	display: flex;
	flex-direction: column;
	padding: 22px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.tvh-alternative-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.tvh-alternative-card__top {
	display: flex;
	align-items: center;
	gap: 15px;
}

.tvh-alternative-card__logo {
	flex: 0 0 auto;
}

.tvh-alternative-card__logo img,
.tvh-alternative-card__placeholder {
	width: 56px;
	height: 56px;
	border-radius: 14px;
}

.tvh-alternative-card__logo img {
	display: block;
	object-fit: contain;
	padding: 7px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
}

.tvh-alternative-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eff6ff;
	color: #2563eb;
	font-size: 21px;
	font-weight: 800;
}

.tvh-alternative-card__info {
	min-width: 0;
}

.tvh-alternative-card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.3;
}

.tvh-alternative-card__title a {
	color: #0f172a;
	text-decoration: none;
}

.tvh-alternative-card__title a:hover {
	color: #2563eb;
}

.tvh-alternative-card__rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 7px;
	font-size: 13px;
	color: #64748b;
}

.tvh-alternative-card__rating span {
	color: #f59e0b;
	letter-spacing: 1px;
}

.tvh-alternative-card__description {
	margin: 18px 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.7;
}

.tvh-alternative-card__footer {
	margin-top: auto;
	padding-top: 5px;
}

.tvh-alternative-card__footer .tvh-btn {
	width: 100%;
}

.tvh-alternative-card__unavailable {
	display: block;
	color: #94a3b8;
	font-size: 13px;
}


/* ==========================================================
   FAQ
========================================================== */

.tvh-faq {
	padding: 60px 0;
	border-top: 1px solid #f1f5f9;
}

.tvh-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tvh-faq-item {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}

.tvh-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 20px 22px;
	color: #0f172a;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
	list-style: none;
}

.tvh-faq-question::-webkit-details-marker {
	display: none;
}

.tvh-faq-question::marker {
	display: none;
	content: "";
}

.tvh-faq-question:hover {
	color: #2563eb;
}

.tvh-faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 50%;
	background: #eff6ff;
	color: #2563eb;
	font-size: 21px;
	font-weight: 500;
	transition: transform 0.2s ease;
}

.tvh-faq-item[open] .tvh-faq-icon {
	transform: rotate(45deg);
}

.tvh-faq-answer {
	padding: 0 22px 22px;
	border-top: 1px solid #f1f5f9;
	color: #475569;
	font-size: 15px;
	line-height: 1.8;
}

.tvh-faq-answer p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   RELATED TOOLS
========================================================== */

.tvh-related-tools{
	padding:70px 0;
	border-top:1px solid #e2e8f0;
	margin-top:70px;
}

.tvh-related-tools .tvh-tool-grid{
	margin-top:35px;
}

.tvh-related .tvh-tool-card{
	margin-top:0;
}


/* ==========================================================
   SIDEBAR
========================================================== */

.tvh-tool-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.tvh-sidebar-card {
	padding: 22px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
}

.tvh-sidebar-card h3 {
	margin: 0 0 12px;
	color: #0f172a;
	font-size: 19px;
	font-weight: 750;
}

.tvh-sidebar-card p {
	margin: 0 0 16px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.7;
}

.tvh-sidebar-cta {
	border-color: #dbeafe;
	background: linear-gradient(
		180deg,
		#f8fbff 0%,
		#ffffff 100%
	);
}

.tvh-sidebar-visit {
	width: 100%;
}

.tvh-sidebar-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.tvh-sidebar-stars {
	color: #f59e0b;
	font-size: 15px;
	letter-spacing: 1px;
}

.tvh-sidebar-rating strong {
	color: #0f172a;
	font-size: 20px;
}

.tvh-sidebar-rating strong span {
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
}

.tvh-sidebar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tvh-sidebar-tag {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.tvh-sidebar-company {
	color: #0f172a !important;
	font-size: 16px !important;
	font-weight: 700;
}

.tvh-sidebar-recommended {
	border-color: #bbf7d0;
	background: #f0fdf4;
}

.tvh-sidebar-badge {
	margin-bottom: 8px;
	color: #15803d;
	font-size: 14px;
	font-weight: 800;
}

.tvh-sidebar-sponsored {
	background: #f8fafc;
}

.tvh-sidebar-sponsored small {
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tvh-sidebar-share h3 {
	margin-bottom: 14px;
}

.tvh-share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tvh-share-copy {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #ffffff;
	color: #334155;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.tvh-share-copy:hover {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #2563eb;
}


/* ==========================================================
   MOBILE / TABLET
========================================================== */

@media (max-width: 1100px) {

	.tvh-single-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 28px;
	}

	.tvh-tool-hero {
		gap: 25px;
	}

	.tvh-tool-info h1 {
		font-size: 36px;
	}

}


@media (max-width: 991px) {

	.tvh-single-tool .tvh-container {
		width: min(100% - 32px, 760px);
	}

	.tvh-single-layout {
		grid-template-columns: 1fr;
	}

	.tvh-single-sidebar {
		position: static;
	}

	.tvh-tool-hero {
		flex-direction: column;
	}

	.tvh-tool-actions {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.tvh-tool-actions .tvh-sidebar-card {
		flex: 1 1 280px;
	}

	.tvh-overview-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tvh-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


@media (max-width: 767px) {

	.tvh-single-tool .tvh-container {
		width: min(100% - 24px, 620px);
	}

	.tvh-tool-hero {
		padding: 30px 0;
	}

	.tvh-tool-hero-left {
		flex-direction: column;
		gap: 18px;
		width: 100%;
	}

	.tvh-tool-logo img,
	.tvh-tool-placeholder {
		width: 76px;
		height: 76px;
	}

	.tvh-tool-info h1 {
		font-size: 30px;
	}

	.tvh-tool-description {
		font-size: 15px;
	}

	.tvh-tool-actions {
		flex-direction: column;
		width: 100%;
	}

	.tvh-tool-actions .tvh-sidebar-card {
		width: 100%;
	}

	.tvh-section-header h2 {
		font-size: 27px;
	}

	.tvh-overview,
	.tvh-features,
	.tvh-gallery,
	.tvh-pros-cons,
	.tvh-alternatives,
	.tvh-faq,
	.tvh-related {
		padding: 45px 0;
	}

	.tvh-overview-grid {
		grid-template-columns: 1fr;
	}

	.tvh-feature-grid {
		grid-template-columns: 1fr;
	}

	.tvh-feature-meta {
		grid-template-columns: 1fr;
	}

	.tvh-gallery-grid {
		grid-template-columns: 1fr;
	}

	.tvh-pros-cons-grid {
		grid-template-columns: 1fr;
	}

	.tvh-alternatives-grid {
		grid-template-columns: 1fr;
	}

	.tvh-related-grid {
		grid-template-columns: 1fr;
	}

	.tvh-faq-question {
		padding: 17px;
		font-size: 15px;
	}

	.tvh-faq-answer {
		padding: 0 17px 18px;
		font-size: 14px;
	}

}


@media (max-width: 480px) {

	.tvh-single-tool .tvh-container {
		width: calc(100% - 20px);
	}

	.tvh-tool-info h1 {
		font-size: 27px;
	}

	.tvh-tool-meta {
		gap: 7px;
	}

	.tvh-tool-meta .tvh-badge,
	.tvh-tool-badges span {
		font-size: 12px;
		padding: 6px 10px;
	}

	.tvh-overview-item {
		padding: 17px;
	}

	.tvh-feature-card {
		padding: 16px;
	}

	.tvh-pros-card,
	.tvh-cons-card {
		padding: 20px;
	}

	.tvh-alternative-card {
		padding: 18px;
	}

	.tvh-sidebar-card {
		padding: 18px;
	}

	.tvh-lightbox {
		padding: 15px;
	}

	.tvh-lightbox-close {
		top: 12px;
		right: 12px;
	}

}

/* ==========================================================
   RELATED AI TOOL CARDS
========================================================== */

.tvh-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.tvh-related-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	box-sizing: border-box;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.tvh-related-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.tvh-related-card__top {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.tvh-related-card__logo {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
}

.tvh-related-card__logo img,
.tvh-related-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	box-sizing: border-box;
	border-radius: 14px;
}

.tvh-related-card__logo img {
	object-fit: contain;
	padding: 7px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
}

.tvh-related-card__placeholder {
	background: #eff6ff;
	color: #2563eb;
	font-size: 21px;
	font-weight: 800;
}

.tvh-related-card__heading {
	min-width: 0;
	flex: 1;
}

.tvh-related-card__heading h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.3;
}

.tvh-related-card__heading h3 a {
	color: #0f172a;
	text-decoration: none;
}

.tvh-related-card__heading h3 a:hover {
	color: #2563eb;
}

.tvh-related-card__company {
	display: block;
	margin-top: 5px;
	color: #64748b;
	font-size: 12px;
	line-height: 1.4;
}

.tvh-related-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 0 0 auto;
	color: #0f172a;
	font-size: 13px;
}

.tvh-related-card__rating span {
	color: #f59e0b;
	font-size: 15px;
}

.tvh-related-card__description {
	margin: 18px 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.7;
}

.tvh-related-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: auto;
	margin-bottom: 18px;
}

.tvh-related-card__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 11px;
	font-weight: 700;
}

.tvh-related-card__pricing {
	background: #f0fdf4;
	color: #15803d;
}

.tvh-related-card__footer {
	display: flex;
	gap: 8px;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
}

.tvh-related-card__details,
.tvh-related-card__visit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 13px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	box-sizing: border-box;
	transition: 0.2s ease;
}

.tvh-related-card__details {
	flex: 1;
	background: #2563eb;
	color: #ffffff !important;
	border: 1px solid #2563eb;
}

.tvh-related-card__details:hover {
	background: #1d4ed8;
	color: #ffffff !important;
}

.tvh-related-card__visit {
	flex: 1;
	background: #ffffff;
	color: #2563eb !important;
	border: 1px solid #cbd5e1;
}

.tvh-related-card__visit:hover {
	background: #eff6ff;
	border-color: #93c5fd;
}


/* ==========================================================
   RELATED RESPONSIVE
========================================================== */

@media (max-width: 767px) {

	.tvh-related-grid {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 480px) {

	.tvh-related-card {
		padding: 17px;
	}

	.tvh-related-card__top {
		align-items: flex-start;
	}

	.tvh-related-card__rating {
		display: none;
	}

	.tvh-related-card__footer {
		flex-direction: column;
	}

	.tvh-related-card__details,
	.tvh-related-card__visit {
		width: 100%;
	}

}