/**
 * TechVon Website & MMO Silo â Section 1: Hero
 * Scoped under .tvw to avoid conflicts with .tvai (AI Silo) and other pages.
 * Source of truth: techvon-website-silo-reference.html (Section 01)
 */

.tvw {
	/* CSS Custom Properties (scoped variables) */
	--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;
	--tvw-primary: #1477f2;
	--tvw-primary-dark: #075fce;
	--tvw-primary-soft: #eaf3ff;
	--tvw-navy: #071b3a;
	--tvw-text: #16304f;
	--tvw-muted: #617796;
	--tvw-line: #d7e4f4;
	--tvw-surface: #f5f8fc;
	--tvw-white: #ffffff;
	--tvw-green: #13a765;
	--tvw-orange: #f59e0b;
	--tvw-purple: #7c3aed;
	--tvw-radius: 8px;
	--tvw-shadow: 0 8px 24px rgba(7, 27, 58, .07);
	--tvw-container: 1320px;
	--tvw-gutter: 48px;
}

/* ============================================================
   Base Reset / Utilities (scoped)
   ============================================================ */
.tvw *,
.tvw *::before,
.tvw *::after { box-sizing: border-box; }

.tvw a { color: inherit; text-decoration: none; }
.tvw button,
.tvw input { font: inherit; }
.tvw img { display: block; max-width: 100%; }

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

/* Hero inner â same width as container */
.tvw .tvw-hero__inner {
	width: min(calc(100% - var(--tvw-gutter)), var(--tvw-container));
	margin-inline: auto;
}

/* Trust container â same width as container */
.tvw .tvw-trust__container {
	width: min(calc(100% - var(--tvw-gutter)), var(--tvw-container));
	margin-inline: auto;
}

/* Section spacing */
.tvw-section { padding: 36px 0; }
.tvw-section--alt { background: var(--tvw-surface); }

/* Section heading */
.tvw-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}
.tvw-section__title {
	margin: 0;
	color: var(--tvw-navy);
	font-size: 28px;
	line-height: 1.18;
}
.tvw-section__sub { margin: 7px 0 0; color: var(--tvw-muted); }
.tvw-view-all {
	flex: 0 0 auto;
	color: var(--tvw-primary);
	font-weight: 750;
	white-space: nowrap;
}

/* ============================================================
   Buttons
   ============================================================ */
.tvw .tvw-btn {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 1px solid var(--tvw-primary);
	border-radius: 8px;
	padding: 0 22px;
	color: var(--tvw-primary);
	background: var(--tvw-white);
	font-weight: 750;
	text-decoration: none;
	cursor: pointer;
	transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.tvw .tvw-btn--primary {
	color: #fff !important;
	background: var(--tvw-primary, #1477f2);
	border-color: var(--tvw-primary, #1477f2);
}

.tvw .tvw-btn--primary:hover,
.tvw .tvw-btn--primary:focus {
	color: #fff !important;
	background: #075fce;
	border-color: #075fce;
}

.tvw .tvw-btn:not(.tvw-btn--primary) {
	color: var(--tvw-primary, #1477f2);
	background: #fff;
	border-color: #9ec5ff;
}

.tvw .tvw-btn:not(.tvw-btn--primary):hover,
.tvw .tvw-btn:not(.tvw-btn--primary):focus {
	color: #075fce;
	background: #f7fbff;
	border-color: #1477f2;
}

/* ============================================================
   Chips / Tags
   ============================================================ */
.tvw .tvw-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 14px;
	border: 1px solid #b9d4f7;
	border-radius: 999px;
	color: var(--tvw-primary, #1477f2) !important;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.tvw .tvw-chip:hover,
.tvw .tvw-chip:focus {
	color: #075fce !important;
	background: #f7fbff;
	border-color: #1477f2;
}

.tvw-tag--purple { color: var(--tvw-purple); background: #f3edff; border-color: #e4d7ff; }
.tvw-tag--green { color: #0a8b51; background: #eaf9f1; border-color: #c6efd9; }
.tvw-tag--orange { color: #b86d00; background: #fff5df; border-color: #f8deb0; }

/* ============================================================
   Placeholder (generic)
   ============================================================ */
.tvw-placeholder {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	min-height: 160px;
	border: 1px solid #c7daf3;
	border-radius: var(--tvw-radius);
	color: var(--tvw-primary);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .07) 1px, transparent 1px);
	background-size: 32px 32px;
	font-weight: 800;
	text-align: center;
}
.tvw-placeholder small { display: block; color: var(--tvw-muted); font-weight: 600; }

/* ============================================================
   SECTION 01 - HERO
   ============================================================ */
.tvw-hero {
	padding: 28px 0 24px;
	background: #f6f9fd;
}

/* Hero container â matches .tvai-hero-container */
.tvw .tvw-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid var(--tvw-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(7, 27, 58, .08);
}

/* Left column â content on white */
.tvw .tvw-hero__content {
	padding: 56px 48px;
	background: #fff;
}

.tvw-hero-title {
	max-width: 650px;
	margin: 0;
	color: var(--tvw-navy);
	font-size: 45px;
	line-height: 1.05;
}

.tvw-hero__desc {
	max-width: 650px;
	margin: 16px 0 20px;
	color: var(--tvw-muted);
}

.tvw-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
}

/* Search */
.tvw .tvw-search {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) 54px;
	align-items: center;
	width: 100%;
	max-width: 610px;
	height: 48px;
	border: 1px solid #c7daf3;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 3px 10px rgba(7, 27, 58, .035);
	margin-bottom: 14px;
}

.tvw .tvw-search__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 100%;
	color: #617796;
}

.tvw .tvw-search__icon svg,
.tvw .tvw-search__submit svg {
	display: block;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.tvw .tvw-search input[type="search"],
.tvw .tvw-search input {
	min-width: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	padding: 0 14px 0 0 !important;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0 !important;
	color: var(--tvw-navy, #071b3a);
	background: transparent !important;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
}

.tvw .tvw-search input[type="search"]::placeholder {
	color: #7b8daa;
	opacity: 1;
	font-weight: 500;
}

.tvw .tvw-search input[type="search"]::-webkit-search-decoration,
.tvw .tvw-search input[type="search"]::-webkit-search-cancel-button,
.tvw .tvw-search input[type="search"]::-webkit-search-results-button,
.tvw .tvw-search input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

.tvw .tvw-search__submit {
	display: grid;
	place-items: center;
	width: 54px;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	box-shadow: none !important;
	line-height: 1;
	cursor: pointer;
}

.tvw .tvw-search__submit:hover,
.tvw .tvw-search__submit:focus {
	background: #075fce;
}

/* Chips */
.tvw-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Hero Media */
.tvw-hero__media {
	position: relative;
	min-height: 520px;
	background: var(--tvw-primary-soft);
}

.tvw .tvw-hero__photo {
	width: 100%;
	height: 100%;
	min-height: 520px;
	border: 0;
	border-radius: 0;
}

/* Floating Badges */
.tvw-hero__badges {
	position: absolute;
	top: 70px;
	right: 18px;
	display: grid;
	gap: 10px;
}
.tvw-hero__badge {
	border: 1px solid #d3e2f4;
	border-radius: 7px;
	padding: 9px 12px;
	background: rgba(255, 255, 255, .94);
	color: var(--tvw-text);
	font-size: 12px;
	font-weight: 750;
	box-shadow: var(--tvw-shadow);
}

/* Hero Image Position â object-position modifiers */
.tvw .tvw-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tvw .tvw-hero__image.tvw-hero__photo--pos-center { object-position: center; }
.tvw .tvw-hero__image.tvw-hero__photo--pos-top { object-position: center top; }
.tvw .tvw-hero__image.tvw-hero__photo--pos-bottom { object-position: center bottom; }
.tvw .tvw-hero__image.tvw-hero__photo--pos-left { object-position: left center; }
.tvw .tvw-hero__image.tvw-hero__photo--pos-right { object-position: right center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet / small desktop */
@media (max-width: 1024px) {
	.tvw-container { width: min(calc(100% - 32px), var(--tvw-container)); }
	.tvw-section { padding: 30px 0; }
	.tvw-hero__content { padding: 44px 32px 32px; }
	.tvw-hero-title { font-size: 40px; }
	.tvw-hero__media { min-height: 420px; }
	.tvw-hero__photo { min-height: 420px; }
	.tvw-hero__badges { top: 50px; right: 14px; }
}

/* Mobile â up to 768px */
@media (max-width: 768px) {
	.tvw-container { width: min(calc(100% - 24px), 1320px); }
	.tvw-section { padding: 24px 0; }

	.tvw-hero {
		padding: 16px 0 20px;
		background: #f6f9fd;
	}

	.tvw .tvw-hero__inner {
		grid-template-columns: 1fr;
		border-radius: 14px;
		overflow: hidden;
	}

	.tvw .tvw-hero__content {
		padding: 30px 20px 22px;
		text-align: center;
	}

	.tvw-hero-title,
	.tvw-hero__desc {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.tvw-hero-title {
		font-size: clamp(2rem, 9vw, 2.65rem);
		line-height: 1.08;
		letter-spacing: 0;
		max-width: none;
	}

	.tvw-hero__desc {
		margin-top: 14px;
		font-size: 15px;
		line-height: 1.65;
		max-width: none;
	}

	.tvw-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 18px;
		justify-items: center;
	}

	.tvw .tvw-btn {
		width: 100%;
		min-height: 46px;
		justify-content: center;
		text-align: center;
	}

	.tvw .tvw-search {
		max-width: none;
		width: 100%;
		height: 46px;
		grid-template-columns: 42px minmax(0, 1fr) 50px;
		margin-top: 16px;
		margin-left: auto;
		margin-right: auto;
	}

	.tvw .tvw-search input[type="search"] {
		font-size: 14px;
		text-align: left;
	}

	.tvw-hero__chips {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-top: 12px;
		justify-content: center;
	}

	.tvw .tvw-chip {
		min-height: 28px;
		padding: 0 12px;
		font-size: 12.5px;
		text-align: center;
		justify-content: center;
	}

	.tvw-hero__media {
		min-height: 260px;
	}

	.tvw .tvw-hero__photo {
		min-height: 260px;
		border-radius: 0;
	}

	.tvw-hero__badges {
		position: absolute;
		top: 16px;
		right: 16px;
		display: grid;
		gap: 8px;
	}

	.tvw-hero__badge {
		min-height: 34px;
		padding: 8px 10px;
		font-size: 12px;
		border-radius: 8px;
	}

	.tvw-placeholder,
	.tvw-placeholder span,
	.tvw-placeholder small {
		text-align: center;
	}
}

/* Small Mobile â up to 480px */
@media (max-width: 480px) {
	.tvw-container { width: min(calc(100% - 20px), 1320px); }

	.tvw .tvw-hero__inner {
		border-radius: 12px;
	}

	.tvw .tvw-hero__content {
		padding: 26px 18px 20px;
	}

	.tvw-hero-title {
		font-size: clamp(1.9rem, 10vw, 2.35rem);
	}

	.tvw-hero__media,
	.tvw .tvw-hero__photo {
		min-height: 230px;
	}

	.tvw-hero__badges {
		position: static;
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		padding: 0 18px 18px;
		background: var(--tvw-primary-soft);
	}

	.tvw-hero__badge {
		box-shadow: none;
	}
}

/* ============================================================
   SECTION 02 - TRUST BAR
   ============================================================ */
.tvw .tvw-trust {
	padding: 24px 0;
	background: #ffffff;
}

.tvw .tvw-trust__container {
	width: min(calc(100% - 48px), 1320px);
	margin-inline: auto;
}

.tvw .tvw-trust__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	background: #ffffff;
	border: 1px solid var(--tvw-line);
	border-radius: 16px;
	box-shadow: 0 4px 14px rgba(7, 27, 58, .05);
	overflow: hidden;
}

.tvw .tvw-trust__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	min-height: 80px;
	border: 0;
}

.tvw .tvw-trust__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	color: var(--tvw-primary, #1477f2);
	background: var(--tvw-primary-soft, #eaf3ff);
}

.tvw .tvw-trust__icon-img {
	width: 24px;
	height: 24px;
	display: block;
	object-fit: contain;
}

/* Text placeholder for icon (used when SVG not available) */
.tvw .tvw-trust__mark {
	color: var(--tvw-primary, #1477f2);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .02em;
}

.tvw .tvw-trust__content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.tvw .tvw-trust__value {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--tvw-navy, #071b3a);
	letter-spacing: -0.01em;
}

.tvw .tvw-trust__label {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--tvw-muted, #617796);
}

.tvw .tvw-trust__disclosure {
	margin: 16px auto 0;
	max-width: 720px;
	color: var(--tvw-muted, #617796);
	font-size: 12px;
	text-align: center;
}

/* Tablet â 768px: chuyáťn sang 2Ă2 */
@media (max-width: 768px) {
	.tvw .tvw-trust {
		padding: 20px 0;
	}

	.tvw .tvw-trust__container {
		width: min(calc(100% - 28px), 1320px);
	}

	.tvw .tvw-trust__inner {
		grid-template-columns: repeat(2, 1fr);
		border-radius: 14px;
	}

	.tvw .tvw-trust__item {
		gap: 10px;
		padding: 14px 14px;
		min-height: 68px;
	}

	.tvw .tvw-trust__icon {
		width: 40px;
		height: 40px;
	}

	.tvw .tvw-trust__icon-img {
		width: 22px;
		height: 22px;
	}

	.tvw .tvw-trust__value {
		font-size: 18px;
	}

	.tvw .tvw-trust__label {
		font-size: 12.5px;
	}

	.tvw .tvw-trust__disclosure {
		font-size: 11.5px;
	}
}

/* Mobile â 480px: giáťŻ 2Ă2, táťi Ć°u khoáşŁng cĂĄch */
@media (max-width: 480px) {
	.tvw .tvw-trust {
		padding: 16px 0;
	}

	.tvw .tvw-trust__inner {
		border-radius: 12px;
	}

	.tvw .tvw-trust__item {
		gap: 10px;
		padding: 12px 12px;
		min-height: 64px;
	}

	.tvw .tvw-trust__icon {
		width: 36px;
		height: 36px;
	}

	.tvw .tvw-trust__icon-img {
		width: 20px;
		height: 20px;
	}

	.tvw .tvw-trust__value {
		font-size: 16px;
	}

	.tvw .tvw-trust__label {
		font-size: 11.5px;
	}

	.tvw .tvw-trust__disclosure {
		font-size: 11px;
	}
}

/* ============================================================
   SECTION 03 - STAGE SELECTOR (BáşĄn Äang áť giai ÄoáşĄn nĂ o?)
   ============================================================ */
.tvw .tvw-stage {
	padding: 38px 0 44px;
	background: #f6f9fd;
}

.tvw .tvw-stage__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-stage__head {
	display: block;
	margin-bottom: 28px;
}

.tvw .tvw-stage__title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	line-height: 1.18;
	font-weight: 850;
	letter-spacing: 0;
}

.tvw .tvw-stage__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.tvw .tvw-stage__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding: 22px 20px 18px;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvw .tvw-stage__card:hover {
	border-color: #a9caf3;
	box-shadow: 0 12px 28px rgba(7, 27, 58, .07);
	transform: translateY(-1px);
}

.tvw .tvw-stage__card--featured {
	border-color: #8fbdff;
	box-shadow: 0 12px 30px rgba(20, 119, 242, .09);
}

.tvw .tvw-stage__badge {
	position: absolute;
	top: -13px;
	left: 18px;
	z-index: 2;
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 0 12px;
	border-radius: 999px;
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 6px 16px rgba(20, 119, 242, .18);
}

.tvw .tvw-stage__media {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border: 1px solid #c7daf3;
	border-radius: 12px;
	color: var(--tvw-primary, #1477f2);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .08) 1px, transparent 1px);
	background-size: 16px 16px;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .03em;
}

.tvw .tvw-stage__media span {
	display: inline-flex;
	min-width: 31px;
	min-height: 25px;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	background: rgba(255, 255, 255, .88);
}

.tvw .tvw-stage__title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: 1.08rem;
	line-height: 1.25;
	font-weight: 850;
}

.tvw .tvw-stage__desc {
	margin: 9px 0 14px;
	color: var(--tvw-muted, #617796);
	font-size: 13.5px;
	line-height: 1.5;
}

.tvw .tvw-stage__steps {
	display: grid;
	gap: 7px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	color: #36506f;
	font-size: 13px;
	line-height: 1.45;
}

.tvw .tvw-stage__steps li {
	position: relative;
	padding-left: 20px;
}

.tvw .tvw-stage__steps li::before {
	content: "";
	position: absolute;
	top: .58em;
	left: 2px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--tvw-primary, #1477f2);
	box-shadow: 0 0 0 3px #eaf3ff;
}

.tvw .tvw-stage__count {
	margin-top: auto;
	color: var(--tvw-muted, #617796);
	font-size: 12.5px;
	font-weight: 750;
}

.tvw .tvw-stage__cta {
	display: flex;
	width: 100%;
	max-width: 100%;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	margin-top: 12px;
	padding: 0 14px;
	border: 1px solid #9ec5ff;
	border-radius: 8px;
	color: var(--tvw-primary, #1477f2);
	background: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}

.tvw .tvw-stage__cta:hover,
.tvw .tvw-stage__cta:focus {
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	border-color: var(--tvw-primary, #1477f2);
}

.tvw .tvw-stage__card--featured .tvw-stage__cta {
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	border-color: var(--tvw-primary, #1477f2);
}

.tvw .tvw-stage__card--featured .tvw-stage__cta:hover,
.tvw .tvw-stage__card--featured .tvw-stage__cta:focus {
	color: #fff;
	background: #075fce;
	border-color: #075fce;
}

/* Ensure card stretches children and count spans full width */
.tvw .tvw-stage__card {
	align-items: stretch;
}

.tvw .tvw-stage__count {
	width: 100%;
}

/* Tablet â 1024px: chuyáťn sang 2Ă2 */
@media (max-width: 1024px) {
	.tvw .tvw-stage__head {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.tvw .tvw-stage__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Mobile â 640px: 1 cáťt */
@media (max-width: 640px) {
	.tvw .tvw-stage {
		padding: 30px 0 34px;
	}

	.tvw .tvw-stage__inner {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.tvw .tvw-stage__card {
		min-height: auto;
	}
}

/* ============================================================
   SECTION 04 - ROADMAP (Láť trĂŹnh xĂ˘y dáťąng Website táťŤ A-Z)
   ============================================================ */
.tvw .tvw-roadmap {
	padding: 38px 0 44px;
	background: #f6f9fd;
}

.tvw .tvw-roadmap__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-roadmap__title {
	margin: 0 0 28px;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	line-height: 1.18;
	font-weight: 850;
	letter-spacing: 0;
}

.tvw .tvw-roadmap__track {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
	overflow: visible;
}

.tvw .tvw-roadmap__step {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 250px;
	padding: 18px 12px 14px;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvw .tvw-roadmap__step:hover {
	border-color: #a9caf3;
	box-shadow: 0 12px 28px rgba(7, 27, 58, .07);
	transform: translateY(-1px);
}

.tvw .tvw-roadmap__step--featured {
	border-color: #8fbdff;
	box-shadow: 0 12px 30px rgba(20, 119, 242, .09);
}

/* Step header: number circle + step label + title */
.tvw .tvw-roadmap__step-head {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 50px;
	margin-bottom: 14px;
}

.tvw .tvw-roadmap__number {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	font-size: 12.5px;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 5px 12px rgba(20, 119, 242, .14);
}

.tvw .tvw-roadmap__step-label {
	display: block;
	margin-bottom: 4px;
	color: var(--tvw-primary, #1477f2);
	font-size: 13px;
	font-weight: 850;
	line-height: 1.1;
}

.tvw .tvw-roadmap__card-title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: .88rem;
	line-height: 1.18;
	font-weight: 850;
	text-align: left;
}

/* Label "Quan tráťng" â absolute badge on featured step */
.tvw .tvw-roadmap__label {
	position: absolute;
	top: -13px;
	left: 50%;
	z-index: 3;
	transform: translateX(-50%);
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 0 12px;
	border-radius: 999px;
	color: #fff;
	background: #f59e0b;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 6px 16px rgba(245, 158, 11, .2);
}

.tvw .tvw-roadmap__media {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 8px auto 12px;
	border: 1px solid #c7daf3;
	border-radius: 12px;
	color: var(--tvw-primary, #1477f2);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .08) 1px, transparent 1px);
	background-size: 16px 16px;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .03em;
}

.tvw .tvw-roadmap__media span {
	display: inline-flex;
	min-width: 31px;
	min-height: 25px;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	background: rgba(255, 255, 255, .88);
}

.tvw .tvw-roadmap__media-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
	border-radius: inherit;
}

.tvw .tvw-roadmap__media--image {
	overflow: hidden;
	border: 0;
	background: transparent;
	background-image: none;
}

.tvw .tvw-roadmap__media--image .tvw-roadmap__media-img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: cover;
	border-radius: inherit;
}

.tvw .tvw-roadmap__desc {
	margin: 0 0 14px;
	color: var(--tvw-muted, #617796);
	font-size: 12.5px;
	line-height: 1.42;
	text-align: center;
}

.tvw .tvw-roadmap__cta {
	display: flex;
	width: 100%;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 0 8px;
	border: 1px solid #9ec5ff;
	border-radius: 8px;
	color: var(--tvw-primary, #1477f2);
	background: #fff;
	font-size: 12.2px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}

.tvw .tvw-roadmap__cta:hover,
.tvw .tvw-roadmap__cta:focus {
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	border-color: var(--tvw-primary, #1477f2);
}

.tvw .tvw-roadmap__step--featured .tvw-roadmap__cta {
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	border-color: var(--tvw-primary, #1477f2);
}

.tvw .tvw-roadmap__step--featured .tvw-roadmap__cta:hover,
.tvw .tvw-roadmap__step--featured .tvw-roadmap__cta:focus {
	color: #fff;
	background: #075fce;
	border-color: #075fce;
}

/* Arrow connector between steps (desktop only) â simple arrow, no circle */
.tvw .tvw-roadmap__arrow {
	position: absolute;
	top: 50%;
	right: -18px;
	z-index: 5;
	display: block;
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
	color: var(--tvw-primary, #1477f2);
	background: transparent;
	box-shadow: none;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

.tvw .tvw-roadmap__step:last-child .tvw-roadmap__arrow {
	display: none;
}

/* Mobile — 640px: align number circle with Bước n label */
@media (max-width: 640px) {
	.tvw .tvw-roadmap__step-head {
		align-items: start;
	}

	.tvw .tvw-roadmap__number {
		transform: translateY(-2px);
	}
}

/* Tablet â 1180px: 3 cáťt x 2 hĂ ng */
@media (max-width: 1180px) {
	.tvw .tvw-roadmap__track {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.tvw .tvw-roadmap__step {
		min-height: 240px;
		padding: 20px 14px 16px;
	}

	.tvw .tvw-roadmap__step-head {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.tvw .tvw-roadmap__label {
		top: -12px;
		font-size: 11.5px;
		padding: 0 10px;
	}

	.tvw .tvw-roadmap__arrow {
		display: none;
	}
}

/* Section 6: Featured Website & MMO guides */
.tvw .tvw-guides {
	padding: 40px 0 46px;
	background: #f6f9fd;
}

.tvw .tvw-guides__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-guides__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.tvw .tvw-guides__title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 850;
	line-height: 1.18;
}

.tvw .tvw-guides__view-all {
	color: var(--tvw-primary, #1477f2);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.tvw .tvw-guides__view-all:hover,
.tvw .tvw-guides__view-all:focus {
	text-decoration: underline;
}

.tvw .tvw-guides__layout {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 18px;
	align-items: stretch;
}

.tvw .tvw-guides__featured,
.tvw .tvw-guides__small {
	overflow: hidden;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	color: inherit;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvw .tvw-guides__featured:hover,
.tvw .tvw-guides__featured:focus,
.tvw .tvw-guides__small:hover,
.tvw .tvw-guides__small:focus {
	border-color: #9ec5ff;
	box-shadow: 0 12px 28px rgba(7, 27, 58, .07);
	transform: translateY(-1px);
}

.tvw .tvw-guides__media {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--tvw-primary, #1477f2);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .08) 1px, transparent 1px);
	background-size: 28px 28px;
}

.tvw .tvw-guides__media--featured,
.tvw .tvw-guides__media--small {
	aspect-ratio: 16 / 9;
}

.tvw .tvw-guides__media--image {
	background: #eaf3ff;
	background-image: none;
}

.tvw .tvw-guides__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tvw .tvw-guides__media > span:not(.tvw-guides__tag) {
	display: inline-flex;
	min-width: 54px;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: rgba(255, 255, 255, .9);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .03em;
}

.tvw .tvw-guides__tag {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 0 11px;
	border: 1px solid #c7daf3;
	border-radius: 999px;
	color: var(--tvw-primary, #1477f2);
	background: rgba(255, 255, 255, .92);
	font-size: 11.5px;
	font-weight: 850;
}

.tvw .tvw-guides__body {
	padding: 18px 20px 20px;
}

.tvw .tvw-guides__featured-title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: 1.25rem;
	font-weight: 850;
	line-height: 1.28;
}

.tvw .tvw-guides__small-title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: .98rem;
	font-weight: 850;
	line-height: 1.3;
}

.tvw .tvw-guides__desc {
	margin: 10px 0 12px;
	color: var(--tvw-muted, #617796);
	font-size: 13.5px;
	line-height: 1.5;
}

.tvw .tvw-guides__meta {
	margin: 10px 0 0;
	color: var(--tvw-muted, #617796);
	font-size: 12.5px;
	font-weight: 650;
}

.tvw .tvw-guides__small-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.tvw .tvw-guides__small .tvw-guides__body {
	padding: 14px 16px 16px;
}

@media (max-width: 1024px) {
	.tvw .tvw-guides__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.tvw .tvw-guides {
		padding: 34px 0 38px;
	}

	.tvw .tvw-guides__head {
		display: block;
	}

	.tvw .tvw-guides__view-all {
		display: inline-flex;
		margin-top: 10px;
	}

	.tvw .tvw-guides__small-grid {
		grid-template-columns: 1fr;
	}

	.tvw .tvw-guides__body {
		padding: 16px;
	}
}

/* Section 5: Website & MMO topics */
.tvw .tvw-topics {
	padding: 38px 0 44px;
	background: #fff;
}

.tvw .tvw-topics__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-topics__title {
	margin: 0 0 22px;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 850;
	line-height: 1.18;
}

.tvw .tvw-topics__grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 14px;
}

.tvw .tvw-topics__card {
	display: grid;
	grid-column: span 2;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 14px;
	min-height: 126px;
	padding: 18px;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	color: inherit;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvw .tvw-topics__card:nth-child(5) {
	grid-column: 2 / span 2;
}

.tvw .tvw-topics__card:nth-child(6) {
	grid-column: 4 / span 2;
}

.tvw .tvw-topics__card:nth-child(7) {
	grid-column: 6 / span 2;
}

.tvw .tvw-topics__card:hover,
.tvw .tvw-topics__card:focus {
	border-color: #9ec5ff;
	box-shadow: 0 12px 28px rgba(7, 27, 58, .07);
	transform: translateY(-1px);
}

.tvw .tvw-topics__media {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid #c7daf3;
	border-radius: 12px;
	color: var(--tvw-primary, #1477f2);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .08) 1px, transparent 1px);
	background-size: 16px 16px;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .03em;
}

.tvw .tvw-topics__media span {
	display: inline-flex;
	min-width: 32px;
	min-height: 26px;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	background: rgba(255, 255, 255, .88);
}

.tvw .tvw-topics__media--image {
	overflow: hidden;
	border: 0;
	background: transparent;
	background-image: none;
}

.tvw .tvw-topics__media-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: inherit;
}

.tvw .tvw-topics__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.tvw .tvw-topics__card-title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: .98rem;
	font-weight: 850;
	line-height: 1.25;
}

.tvw .tvw-topics__desc {
	margin: 7px 0 10px;
	color: var(--tvw-muted, #617796);
	font-size: 13px;
	line-height: 1.45;
}

.tvw .tvw-topics__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	color: var(--tvw-primary, #1477f2);
	font-size: 12.5px;
	font-weight: 800;
}

.tvw .tvw-topics__arrow {
	font-size: 16px;
	line-height: 1;
}

@media (max-width: 1180px) {
	.tvw .tvw-topics__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tvw .tvw-topics__card,
	.tvw .tvw-topics__card:nth-child(5),
	.tvw .tvw-topics__card:nth-child(6),
	.tvw .tvw-topics__card:nth-child(7) {
		grid-column: auto;
	}
}

@media (max-width: 900px) {
	.tvw .tvw-topics__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.tvw .tvw-topics {
		padding: 32px 0 36px;
	}

	.tvw .tvw-topics__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tvw .tvw-topics__card {
		min-height: auto;
		padding: 16px;
	}
}

/* Mobile â 640px: 1 cáťt */
@media (max-width: 640px) {
	.tvw .tvw-roadmap {
		padding: 30px 0 34px;
	}

	.tvw .tvw-roadmap__track {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.tvw .tvw-roadmap__step {
		min-height: auto;
		padding: 22px 18px 18px;
	}

	.tvw .tvw-roadmap__step-head {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.tvw .tvw-roadmap__label {
		top: -12px;
		font-size: 11.5px;
		padding: 0 10px;
	}

	.tvw .tvw-roadmap__card-title {
		font-size: .95rem;
		min-height: 2.3em;
	}

	.tvw .tvw-roadmap__desc {
		font-size: 13px;
		line-height: 1.45;
	}

	.tvw .tvw-roadmap__cta {
		min-height: 40px;
		font-size: 12.5px;
	}

	.tvw .tvw-roadmap__arrow {
		display: none;
	}
}

/* Section 7: Hosting comparison */
.tvw .tvw-hosting {
	padding: 40px 0 46px;
	background: #fff;
}

.tvw .tvw-hosting__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-hosting__head {
	display: block;
	margin-bottom: 22px;
}

.tvw .tvw-hosting__title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 850;
	line-height: 1.18;
}

.tvw .tvw-hosting__table-wrap {
	overflow: hidden;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(7, 27, 58, .045);
}

.tvw .tvw-hosting__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.tvw .tvw-hosting__table th:nth-child(1) {
	width: 18%;
}

.tvw .tvw-hosting__table th:nth-child(2) {
	width: 18%;
}

.tvw .tvw-hosting__table th:nth-child(3) {
	width: 10%;
}

.tvw .tvw-hosting__table th:nth-child(4) {
	width: 20%;
}

.tvw .tvw-hosting__table th:nth-child(5) {
	width: 12%;
}

.tvw .tvw-hosting__table th:nth-child(6) {
	width: 22%;
}

.tvw .tvw-hosting__table th,
.tvw .tvw-hosting__table td {
	padding: 16px 14px;
	border-bottom: 1px solid #e4edf7;
	color: #36506f;
	font-size: 13px;
	line-height: 1.45;
	text-align: left;
	vertical-align: middle;
	overflow-wrap: anywhere;
}

.tvw .tvw-hosting__table th {
	color: var(--tvw-navy, #071b3a);
	background: #f1f6fd;
	font-size: 12px;
	font-weight: 850;
}

.tvw .tvw-hosting__table tbody tr:last-child td {
	border-bottom: 0;
}

.tvw .tvw-hosting__provider {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
	line-height: 1.2;
}

.tvw .tvw-hosting__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	aspect-ratio: 16 / 9;
	height: auto;
	flex: 0 0 112px;
	overflow: hidden;
	border: 1px solid #c7daf3;
	border-radius: 8px;
	color: var(--tvw-primary, #1477f2);
	background: transparent;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .03em;
	line-height: 0;
}

.tvw .tvw-hosting__logo--image {
	overflow: hidden;
	border: 0;
	background: transparent;
}

.tvw .tvw-hosting__logo-img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	max-width: none;
	max-height: none;
	object-fit: contain;
	object-position: center center;
}

.tvw .tvw-hosting__name {
	color: var(--tvw-navy, #071b3a);
	font-weight: 850;
}

.tvw .tvw-hosting__rating {
	color: var(--tvw-navy, #071b3a);
	font-weight: 800;
	white-space: nowrap;
}

.tvw .tvw-hosting__rating::before {
	content: "★";
	margin-right: 5px;
	color: #f59e0b;
}

.tvw .tvw-hosting__actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tvw .tvw-hosting__btn {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid #9ec5ff;
	border-radius: 8px;
	color: var(--tvw-primary, #1477f2);
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.tvw .tvw-hosting__btn--primary {
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	border-color: var(--tvw-primary, #1477f2);
}

.tvw .tvw-hosting__btn:hover,
.tvw .tvw-hosting__btn:focus {
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	border-color: var(--tvw-primary, #1477f2);
}

.tvw .tvw-hosting__btn--primary:hover,
.tvw .tvw-hosting__btn--primary:focus {
	background: #075fce;
	border-color: #075fce;
}

.tvw .tvw-hosting__note {
	margin: 12px 0 0;
	color: var(--tvw-muted, #617796);
	font-size: 12px;
	text-align: center;
}

.tvw .tvw-hosting__mobile-label {
	display: none;
}

@media (min-width: 761px) {
	.tvw .tvw-hosting__table th,
	.tvw .tvw-hosting__table td {
		text-align: center;
	}

	.tvw .tvw-hosting__provider,
	.tvw .tvw-hosting__actions {
		justify-content: center;
	}

	.tvw .tvw-hosting__provider {
		text-align: center;
	}
}

@media (max-width: 760px) {
	.tvw .tvw-hosting {
		padding: 34px 0 38px;
	}

	.tvw .tvw-hosting__head {
		display: block;
	}

	.tvw .tvw-hosting__table,
	.tvw .tvw-hosting__table thead,
	.tvw .tvw-hosting__table tbody,
	.tvw .tvw-hosting__table tr,
	.tvw .tvw-hosting__table th,
	.tvw .tvw-hosting__table td {
		display: block;
		width: 100%;
	}

	.tvw .tvw-hosting__table thead {
		display: none;
	}

	.tvw .tvw-hosting__table tr {
		padding: 16px;
		border-bottom: 1px solid #e4edf7;
	}

	.tvw .tvw-hosting__table tr:last-child {
		border-bottom: 0;
	}

	.tvw .tvw-hosting__table td {
		padding: 10px 0;
		border-bottom: 0;
	}

	.tvw .tvw-hosting__logo {
		width: 96px;
		aspect-ratio: 16 / 9;
		height: auto;
		flex-basis: 96px;
	}

	.tvw .tvw-hosting__mobile-label {
		display: block;
		margin-bottom: 4px;
		color: var(--tvw-navy, #071b3a);
		font-size: 12px;
		font-weight: 850;
	}

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

	.tvw .tvw-hosting__btn {
		width: 100%;
		white-space: normal;
		text-align: center;
	}
}

@media (max-width: 380px) {
	.tvw .tvw-hosting__actions {
		grid-template-columns: 1fr;
	}
}

/* Section 8: Recommended website toolkit */
.tvw .tvw-toolkit {
	padding: 42px 0 48px;
	background: #f6f9fd;
}

.tvw .tvw-toolkit__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-toolkit__head {
	margin-bottom: 22px;
}

.tvw .tvw-toolkit__title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 850;
	line-height: 1.18;
}

.tvw .tvw-toolkit__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.tvw .tvw-toolkit__tab {
	appearance: none;
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid #d7e4f4;
	border-radius: 999px;
	color: var(--tvw-muted, #617796);
	background: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.tvw .tvw-toolkit__tab--active {
	border-color: var(--tvw-primary, #1477f2);
	color: #fff;
	background: var(--tvw-primary, #1477f2);
}

.tvw .tvw-toolkit__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.tvw .tvw-toolkit__card {
	display: flex;
	min-width: 0;
	min-height: 250px;
	flex-direction: column;
	align-items: center;
	padding: 18px 14px;
	border: 1px solid #cfe0f5;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
	text-align: center;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvw .tvw-toolkit__card:hover {
	border-color: #9ec5ff;
	box-shadow: 0 12px 28px rgba(7, 27, 58, .07);
	transform: translateY(-2px);
}

.tvw .tvw-toolkit__card[hidden] {
	display: none !important;
}

.tvw .tvw-toolkit__logo {
	display: grid;
	place-items: center;
	width: 60px;
	height: 50px;
	border: 1px solid #c7daf3;
	border-radius: 12px;
	color: var(--tvw-primary, #1477f2);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .08) 1px, transparent 1px);
	background-size: 16px 16px;
}

.tvw .tvw-toolkit__logo--image {
	overflow: hidden;
	border-color: transparent;
	background: transparent;
	background-image: none;
}

.tvw .tvw-toolkit__logo-img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: center;
}

.tvw .tvw-toolkit__logo-mark {
	display: inline-flex;
	min-width: 42px;
	min-height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .03em;
}

.tvw .tvw-toolkit__name {
	margin: 11px 0 0;
	color: var(--tvw-navy, #071b3a);
	font-size: .95rem;
	font-weight: 850;
	line-height: 1.3;
}

.tvw .tvw-toolkit__desc {
	margin: 6px 0 8px;
	color: var(--tvw-muted, #617796);
	font-size: 13px;
	line-height: 1.45;
}

.tvw .tvw-toolkit__tag {
	display: inline-flex;
	min-height: 24px;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border: 1px solid #bde8d0;
	border-radius: 999px;
	color: #087a45;
	background: #ecfbf3;
	font-size: 11px;
	font-weight: 800;
}

.tvw .tvw-toolkit__meta {
	display: grid;
	gap: 3px;
	margin: 10px 0 12px;
	color: var(--tvw-muted, #617796);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
}

.tvw .tvw-toolkit__rating {
	color: var(--tvw-navy, #071b3a);
	font-weight: 850;
}

.tvw .tvw-toolkit__rating::before {
	content: "★";
	margin-right: 5px;
	color: #f59e0b;
}

.tvw .tvw-toolkit__cta {
	display: inline-flex;
	width: 100%;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 0 10px;
	border: 1px solid #9ec5ff;
	border-radius: 8px;
	color: var(--tvw-primary, #1477f2);
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.tvw .tvw-toolkit__cta:hover,
.tvw .tvw-toolkit__cta:focus {
	border-color: var(--tvw-primary, #1477f2);
	color: #fff;
	background: var(--tvw-primary, #1477f2);
}

@media (max-width: 1180px) {
	.tvw .tvw-toolkit__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.tvw .tvw-toolkit {
		padding: 34px 0 38px;
	}

	.tvw .tvw-toolkit__tabs {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.tvw .tvw-toolkit__tab {
		width: auto;
		min-height: 32px;
		padding: 0 12px;
		font-size: 11.5px;
	}

	.tvw .tvw-toolkit__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.tvw .tvw-toolkit__card {
		min-height: auto;
		padding: 18px 16px 16px;
	}

	.tvw .tvw-toolkit__cta {
		margin-top: 4px;
	}
}

@media (max-width: 540px) {
	.tvw .tvw-toolkit__grid {
		grid-template-columns: 1fr;
	}
}

/* Final section: Lead magnet */
.tvw .tvw-lead {
	padding: 42px 0 52px;
	background: #fff;
}

.tvw .tvw-lead__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-lead__inner {
	display: grid;
	grid-template-columns: .9fr 1.4fr;
	gap: 34px;
	align-items: center;
	padding: 38px 42px;
	border: 1px solid #cfe0f5;
	border-radius: 18px;
	background: linear-gradient(135deg, #f7fbff 0%, #eef5ff 100%);
	box-shadow: 0 10px 28px rgba(7, 27, 58, .055);
}

.tvw .tvw-lead__visual {
	display: grid;
	place-items: center;
	min-width: 0;
}

.tvw .tvw-lead__visual--image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid #b9d4f4;
	border-radius: 14px;
	background: #fff;
}

.tvw .tvw-lead__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tvw .tvw-lead__mockup {
	display: flex;
	width: min(100%, 280px);
	min-height: 220px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 26px 22px;
	border: 1px solid #b9d4f4;
	border-radius: 14px;
	color: var(--tvw-navy, #071b3a);
	background: #fff;
	box-shadow: 0 12px 24px rgba(20, 119, 242, .08);
	text-align: center;
	transform: rotate(-2deg);
}

.tvw .tvw-lead__mockup::before {
	width: 54px;
	height: 5px;
	margin-bottom: 20px;
	border-radius: 999px;
	background: var(--tvw-primary, #1477f2);
	content: "";
}

.tvw .tvw-lead__mockup-kicker {
	color: var(--tvw-primary, #1477f2);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .14em;
}

.tvw .tvw-lead__mockup strong {
	margin-top: 10px;
	font-size: 1.25rem;
	line-height: 1.25;
}

.tvw .tvw-lead__mockup-line {
	width: 72%;
	height: 1px;
	margin: 18px 0 13px;
	background: #d7e4f4;
}

.tvw .tvw-lead__mockup small {
	color: var(--tvw-muted, #617796);
	font-size: 11px;
	line-height: 1.55;
}

.tvw .tvw-lead__content {
	min-width: 0;
}

.tvw .tvw-lead__title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.55rem, 2.4vw, 2.1rem);
	font-weight: 850;
	line-height: 1.18;
}

.tvw .tvw-lead__desc {
	max-width: 680px;
	margin: 12px 0 22px;
	color: var(--tvw-muted, #617796);
	font-size: 14px;
	line-height: 1.6;
}

.tvw .tvw-lead__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
}

.tvw .tvw-lead__field {
	display: grid;
	gap: 7px;
	min-width: 0;
	align-self: end;
	color: var(--tvw-navy, #071b3a);
	font-size: 12px;
	font-weight: 800;
}

.tvw .tvw-lead__input {
	width: 100%;
	height: 44px;
	min-height: 44px;
	box-sizing: border-box;
	padding: 0 14px;
	border: 1px solid #bcd3ef;
	border-radius: 9px;
	color: var(--tvw-navy, #071b3a);
	background: #fff;
	font: inherit;
	font-size: 13px;
	outline: none;
}

.tvw .tvw-lead__input::placeholder {
	color: #8aa0bb;
	font-weight: 500;
}

.tvw .tvw-lead__input:focus {
	border-color: var(--tvw-primary, #1477f2);
	box-shadow: 0 0 0 3px rgba(20, 119, 242, .12);
}

.tvw .tvw-lead__button {
	display: inline-flex;
	height: 44px;
	min-height: 44px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 1px solid var(--tvw-primary, #1477f2);
	border-radius: 9px;
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	align-self: end;
	transform: translateY(-4px);
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.tvw .tvw-lead__button:hover,
.tvw .tvw-lead__button:focus {
	border-color: #075fce;
	background: #075fce;
	transform: translateY(-4px);
}

.tvw .tvw-lead__privacy {
	margin: 11px 0 0;
	color: var(--tvw-muted, #617796);
	font-size: 11.5px;
	line-height: 1.4;
}

.tvw .tvw-lead__cf7 .wpcf7-form {
	margin: 0;
}

.tvw .tvw-lead__cf7 .wpcf7-form-control-wrap {
	display: block;
}

.tvw .tvw-lead__cf7 input[type="email"],
.tvw .tvw-lead__cf7 input[type="text"] {
	box-sizing: border-box;
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid #bcd3ef;
	border-radius: 9px;
}

.tvw .tvw-lead__cf7 input[type="submit"] {
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--tvw-primary, #1477f2);
	border-radius: 9px;
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.tvw .tvw-lead__cf7 .wpcf7-not-valid-tip,
.tvw .tvw-lead__cf7 .wpcf7-response-output {
	font-size: 12px;
}

@media (max-width: 760px) {
	.tvw .tvw-lead {
		padding: 34px 0 42px;
	}

	.tvw .tvw-lead__inner {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 28px 22px 30px;
	}

	.tvw .tvw-lead__mockup {
		min-height: 190px;
	}

	.tvw .tvw-lead__content {
		text-align: left;
	}

	.tvw .tvw-lead__form {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tvw .tvw-lead__button {
		width: 100%;
		align-self: stretch;
		transform: none;
	}
}

/* Section 9: Affiliate path */
.tvw .tvw-affiliate {
	padding: 42px 0 48px;
	background: #fff;
}

.tvw .tvw-affiliate__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-affiliate__title {
	margin: 0 0 22px;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 850;
	line-height: 1.18;
}

.tvw .tvw-affiliate__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 18px;
	align-items: stretch;
}

.tvw .tvw-affiliate__card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	row-gap: 24px;
	padding: 22px;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
}

.tvw .tvw-affiliate__card-title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: 1.08rem;
	font-weight: 850;
	line-height: 1.3;
}

.tvw .tvw-affiliate__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.tvw .tvw-affiliate__step {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 10px;
	min-width: 0;
	padding: 12px 10px;
	border: 1px solid #e1ebf7;
	border-radius: 10px;
	background: #f8fbff;
}

.tvw .tvw-affiliate__step-number {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	font-size: 11px;
	font-weight: 850;
}

.tvw .tvw-affiliate__step-title,
.tvw .tvw-affiliate__model-title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: .92rem;
	font-weight: 850;
	line-height: 1.3;
}

.tvw .tvw-affiliate__step-desc {
	margin: 5px 0 0;
	color: var(--tvw-muted, #617796);
	font-size: 12.5px;
	line-height: 1.45;
}

.tvw .tvw-affiliate__models {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

.tvw .tvw-affiliate__model {
	display: flex;
	min-width: 0;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 14px 15px;
	border: 1px solid #e1ebf7;
	border-radius: 10px;
	background: #f8fbff;
	text-align: center;
}

.tvw .tvw-affiliate__model-meta {
	display: grid;
	gap: 5px;
	margin-top: 8px;
	color: var(--tvw-muted, #617796);
	font-size: 12px;
	line-height: 1.35;
}

.tvw .tvw-affiliate__cta {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	align-self: center;
	margin: auto auto 0;
	padding: 0 15px;
	border: 1px solid var(--tvw-primary, #1477f2);
	border-radius: 8px;
	color: #fff;
	background: var(--tvw-primary, #1477f2);
	font-size: 12.5px;
	font-weight: 800;
	text-decoration: none;
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.tvw .tvw-affiliate__cta:hover,
.tvw .tvw-affiliate__cta:focus {
	border-color: #075fce;
	background: #075fce;
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.tvw .tvw-affiliate__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.tvw .tvw-affiliate__models {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.tvw .tvw-affiliate {
		padding: 34px 0 38px;
	}

	.tvw .tvw-affiliate__card {
		padding: 18px 16px;
		row-gap: 20px;
	}

	.tvw .tvw-affiliate__steps {
		grid-template-columns: 1fr;
	}

	.tvw .tvw-affiliate__cta {
		width: 100%;
		align-self: stretch;
		margin: 0 auto;
	}
}

/* Section 10: Hosting and website tool reviews */
.tvw .tvw-reviews {
	padding: 42px 0 48px;
	background: #f6f9fd;
}

.tvw .tvw-reviews__container,
.tvw .tvw-latest__container,
.tvw .tvw-faq__container {
	width: min(calc(100% - var(--tvw-gutter, 48px)), var(--tvw-container, 1320px));
	margin-inline: auto;
}

.tvw .tvw-reviews__head,
.tvw .tvw-latest__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.tvw .tvw-reviews__title,
.tvw .tvw-latest__title,
.tvw .tvw-faq__title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	font-weight: 850;
	line-height: 1.18;
}

.tvw .tvw-reviews__view-all,
.tvw .tvw-latest__view-all {
	color: var(--tvw-primary, #1477f2);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.tvw .tvw-reviews__view-all:hover,
.tvw .tvw-reviews__view-all:focus,
.tvw .tvw-latest__view-all:hover,
.tvw .tvw-latest__view-all:focus {
	color: #075fce;
}

.tvw .tvw-reviews__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.tvw .tvw-reviews__card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 18px;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvw .tvw-reviews__card:hover {
	border-color: #9ec5ff;
	box-shadow: 0 12px 28px rgba(7, 27, 58, .07);
	transform: translateY(-2px);
}

.tvw .tvw-reviews__brand {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 12px;
}

.tvw .tvw-reviews__logo {
	display: grid;
	flex: 0 0 58px;
	place-items: center;
	width: 58px;
	height: 46px;
	border: 1px solid #c7daf3;
	border-radius: 10px;
	color: var(--tvw-primary, #1477f2);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .08) 1px, transparent 1px);
	background-size: 15px 15px;
}

.tvw .tvw-reviews__logo--image {
	overflow: hidden;
	border-color: transparent;
	background: transparent;
	background-image: none;
}

.tvw .tvw-reviews__logo-img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: center;
}

.tvw .tvw-reviews__logo-mark {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .03em;
}

.tvw .tvw-reviews__name {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: .98rem;
	font-weight: 850;
	line-height: 1.3;
}

.tvw .tvw-reviews__rating {
	display: inline-flex;
	margin-top: 4px;
	color: var(--tvw-navy, #071b3a);
	font-size: 12.5px;
	font-weight: 800;
}

.tvw .tvw-reviews__rating::before {
	content: "★";
	margin-right: 5px;
	color: #f59e0b;
}

.tvw .tvw-reviews__fit {
	margin: 15px 0 0;
	color: var(--tvw-muted, #617796);
	font-size: 12.5px;
	line-height: 1.45;
}

.tvw .tvw-reviews__fit strong {
	color: var(--tvw-navy, #071b3a);
}

.tvw .tvw-reviews__list {
	display: grid;
	gap: 6px;
	margin: 13px 0 14px;
	padding: 0;
	color: var(--tvw-muted, #617796);
	font-size: 12.5px;
	line-height: 1.4;
	list-style: none;
}

.tvw .tvw-reviews__list li {
	position: relative;
	padding-left: 15px;
}

.tvw .tvw-reviews__list li::before {
	position: absolute;
	top: .58em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--tvw-primary, #1477f2);
	content: "";
}

.tvw .tvw-reviews__badge {
	display: inline-flex;
	align-self: flex-start;
	min-height: 24px;
	align-items: center;
	padding: 0 9px;
	border: 1px solid #bde8d0;
	border-radius: 999px;
	color: #087a45;
	background: #ecfbf3;
	font-size: 10.5px;
	font-weight: 800;
}

.tvw .tvw-reviews__cta {
	display: inline-flex;
	width: 100%;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
	padding: 0 10px;
	border: 1px solid #9ec5ff;
	border-radius: 8px;
	color: var(--tvw-primary, #1477f2);
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.tvw .tvw-reviews__cta:hover,
.tvw .tvw-reviews__cta:focus {
	border-color: var(--tvw-primary, #1477f2);
	color: #fff;
	background: var(--tvw-primary, #1477f2);
}

/* Section 11: Latest Website & MMO posts */
.tvw .tvw-latest {
	padding: 42px 0 48px;
	background: #fff;
}

.tvw .tvw-latest__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.tvw .tvw-latest__card {
	display: block;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #d7e4f4;
	border-radius: 14px;
	color: inherit;
	background: #fff;
	box-shadow: 0 6px 18px rgba(7, 27, 58, .035);
	text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tvw .tvw-latest__card:hover,
.tvw .tvw-latest__card:focus {
	border-color: #9ec5ff;
	box-shadow: 0 12px 28px rgba(7, 27, 58, .07);
	transform: translateY(-2px);
}

.tvw .tvw-latest__media {
	position: relative;
	display: grid;
	aspect-ratio: 16 / 9;
	place-items: center;
	overflow: hidden;
	color: var(--tvw-primary, #1477f2);
	background-color: #eaf3ff;
	background-image:
		linear-gradient(rgba(20, 119, 242, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 119, 242, .08) 1px, transparent 1px);
	background-size: 24px 24px;
}

.tvw .tvw-latest__media--image {
	background-image: none;
}

.tvw .tvw-latest__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tvw .tvw-latest__tag {
	position: absolute;
	top: 9px;
	left: 9px;
	display: inline-flex;
	min-height: 22px;
	align-items: center;
	padding: 0 8px;
	border: 1px solid #c7daf3;
	border-radius: 999px;
	color: var(--tvw-primary, #1477f2);
	background: rgba(255, 255, 255, .94);
	font-size: 9.5px;
	font-weight: 850;
}

.tvw .tvw-latest__mark {
	display: inline-flex;
	min-width: 44px;
	min-height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .03em;
}

.tvw .tvw-latest__body {
	padding: 13px 14px 15px;
}

.tvw .tvw-latest__post-title {
	margin: 0;
	color: var(--tvw-navy, #071b3a);
	font-size: .9rem;
	font-weight: 850;
	line-height: 1.38;
}

.tvw .tvw-latest__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 10px 0 0;
	color: var(--tvw-muted, #617796);
	font-size: 10.5px;
	font-weight: 650;
	line-height: 1.35;
}

/* Section 12: FAQ */
.tvw .tvw-faq {
	padding: 42px 0 48px;
	background: #f6f9fd;
}

.tvw .tvw-faq__title {
	margin-bottom: 22px;
}

.tvw .tvw-faq__list {
	display: grid;
	max-width: 900px;
	gap: 10px;
	margin-inline: auto;
}

.tvw .tvw-faq__item {
	overflow: hidden;
	border: 1px solid #d7e4f4;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(7, 27, 58, .025);
}

.tvw .tvw-faq__question {
	position: relative;
	padding: 16px 50px 16px 18px;
	color: var(--tvw-navy, #071b3a);
	font-size: .95rem;
	font-weight: 850;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

.tvw .tvw-faq__question::-webkit-details-marker {
	display: none;
}

.tvw .tvw-faq__question::after {
	position: absolute;
	top: 50%;
	right: 17px;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 50%;
	color: var(--tvw-primary, #1477f2);
	background: #eaf3ff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	content: "+";
	transform: translateY(-50%);
}

.tvw .tvw-faq__item[open] .tvw-faq__question::after {
	content: "−";
}

.tvw .tvw-faq__answer {
	padding: 0 18px 17px;
	color: var(--tvw-muted, #617796);
	font-size: 13.5px;
	line-height: 1.6;
}

.tvw .tvw-faq__answer p {
	margin: 0;
	padding-top: 14px;
	border-top: 1px solid #e4edf7;
}

@media (max-width: 1180px) {
	.tvw .tvw-latest__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.tvw .tvw-reviews__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.tvw .tvw-reviews,
	.tvw .tvw-latest,
	.tvw .tvw-faq {
		padding: 34px 0 38px;
	}

	.tvw .tvw-reviews__head,
	.tvw .tvw-latest__head {
		display: block;
	}

	.tvw .tvw-reviews__view-all,
	.tvw .tvw-latest__view-all {
		display: inline-flex;
		margin-top: 10px;
	}

	.tvw .tvw-latest__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}

@media (max-width: 540px) {
	.tvw .tvw-reviews__grid,
	.tvw .tvw-latest__grid {
		grid-template-columns: 1fr;
	}

	.tvw .tvw-reviews__card {
		padding: 16px;
	}

	.tvw .tvw-latest__post-title {
		font-size: .95rem;
	}

	.tvw .tvw-faq__question {
		padding: 15px 46px 15px 15px;
		font-size: .9rem;
	}

	.tvw .tvw-faq__answer {
		padding: 0 15px 15px;
		font-size: 13px;
	}
}
