/* ----------------------------------------
   Hero
---------------------------------------- */
.lp-page .site-content {
	padding: 0;
}

.lp-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 90px 0;
	min-height: 380px;
	display: flex;
	align-items: center;
}

.lp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(6, 6, 18, 0.82) 0%, rgba(6, 6, 18, 0.55) 60%, rgba(6, 6, 18, 0.3) 100%);
}

.lp-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.lp-hero__version {
	color: var(--th-amber);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.lp-hero h1 {
	color: var(--th-white);
	font-size: 40px;
	margin-bottom: 16px;
}

.lp-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 17px;
	font-weight: 500;
	margin: 0;
}

/* ----------------------------------------
   Content
---------------------------------------- */
.lp-content {
	background: var(--th-gray-100);
	padding: 64px 0 96px;
}

.lp-content__grid {
	display: flex;
	gap: 56px;
	align-items: flex-start;
}

/* Table of contents */
.lp-toc {
	flex: 0 0 280px;
	position: sticky;
	top: 24px;
	background: var(--th-white);
	border-radius: 16px;
	padding: 28px;
}

.lp-toc__label {
	font-weight: 700;
	font-size: 15px;
	color: var(--th-navy);
	margin: 0 0 16px;
}

.lp-toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc;
}

.lp-toc li {
	counter-increment: toc;
	margin-bottom: 12px;
}

.lp-toc li::before {
	content: counter(toc) '. ';
	font-weight: 700;
	color: var(--th-navy-soft);
}

.lp-toc a {
	color: var(--th-navy-soft);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.lp-toc a:hover {
	color: var(--th-navy);
	text-decoration: underline;
}

/* Article body */
.lp-article {
	flex: 1 1 auto;
	min-width: 0;
	background: var(--th-white);
	border-radius: 16px;
	padding: 48px;
}

.lp-article__intro {
	font-size: 17px;
	font-weight: 500;
	color: var(--th-navy-soft);
	margin-bottom: 32px;
}

.lp-article__logo {
	margin-top: 40px;
	width: 160px;
	height: auto;
}

.lp-article h2 {
	font-size: 24px;
	margin: 40px 0 16px;
	scroll-margin-top: 24px;
}

.lp-article h2:first-of-type {
	margin-top: 0;
}

.lp-article p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--th-navy-soft);
	margin: 0 0 16px;
}

.lp-table-wrap {
	overflow-x: auto;
	margin: 16px 0 24px;
}

.lp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.lp-table th {
	text-align: left;
	background: var(--th-gray-100);
	color: var(--th-navy);
	font-weight: 700;
	padding: 12px 16px;
	border-bottom: 2px solid var(--th-gray-300);
}

.lp-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--th-gray-200);
	color: var(--th-navy-soft);
	font-weight: 500;
	vertical-align: top;
}

.lp-table tr:last-child td {
	border-bottom: none;
}

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 980px) {
	.lp-content__grid {
		flex-direction: column;
	}

	.lp-toc {
		position: static;
		width: 100%;
		flex: 1 1 auto;
	}

	.lp-article {
		padding: 32px;
		width: 100%;
	}
}

@media (max-width: 600px) {
	.lp-hero h1 {
		font-size: 28px;
	}

	.lp-article {
		padding: 24px;
	}

	.lp-table th,
	.lp-table td {
		padding: 10px 12px;
		font-size: 13px;
	}
}
