/* Shared below-the-tool content section for all tool pages.
   Mirrors the homepage design system: hairline rules, numbered rows,
   small uppercase labels, monochrome. */

.tool-info {
	max-width: 680px;
	margin: 5rem auto 1rem;
	text-align: left;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
	color: #333;
}

.ti-block {
	border-top: 1px solid #e5e5e5;
	padding: 2.25rem 0;
}

.ti-label {
	display: block;
	font-size: 0.6875rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	margin-bottom: 1.25rem;
}

/* Before/after demo figure */

.ti-demo {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin: 0 0 1.75rem;
}

.ti-demo figure {
	margin: 0;
	text-align: center;
}

.ti-demo svg {
	display: block;
	margin: 0 auto;
}

.ti-demo figcaption {
	font-size: 0.6875rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	margin-top: 0.5rem;
}

.ti-demo-arrow {
	font-size: 1.25rem;
	color: #999;
}

/* About */

.ti-about p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #444;
	margin: 0 0 1rem;
	max-width: 60ch;
}

.ti-about p:last-of-type {
	margin-bottom: 0;
}

.ti-docs {
	display: inline-block;
	margin-top: 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	padding-bottom: 1px;
	transition: border-color 0.2s ease;
}

.ti-docs:hover {
	border-color: #000;
}

/* FAQ — numbered rows echoing the homepage tools list */

.ti-faq-item {
	display: flex;
	gap: 1.5rem;
	padding: 1.25rem 0;
}

.ti-faq-item + .ti-faq-item {
	border-top: 1px solid #efefef;
}

.ti-faq-item .ti-num {
	font-size: 0.8125rem;
	color: #bbb;
	font-weight: 500;
	min-width: 1.5rem;
	padding-top: 0.1rem;
}

.ti-faq-item h3 {
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #000;
	margin: 0 0 0.35rem;
}

.ti-faq-item p {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #666;
	margin: 0;
	max-width: 58ch;
}

/* Related tools — miniature homepage rows */

.ti-tool {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	padding: 1rem 0;
	text-decoration: none;
	color: #000;
	transition: padding-left 0.2s ease;
}

.ti-tool + .ti-tool {
	border-top: 1px solid #efefef;
}

.ti-tool:hover {
	padding-left: 0.75rem;
}

.ti-tool .ti-tool-name {
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.ti-tool .ti-tool-desc {
	flex: 1;
	font-size: 0.875rem;
	color: #888;
	font-weight: 400;
}

.ti-tool .ti-arrow {
	font-size: 1rem;
	color: #000;
	transition: transform 0.2s ease;
}

.ti-tool:hover .ti-arrow {
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.tool-info {
		margin-top: 3.5rem;
		padding: 0 0.25rem;
	}

	.ti-faq-item {
		gap: 1rem;
	}

	.ti-tool {
		flex-wrap: wrap;
		gap: 0.35rem 0.75rem;
	}

	.ti-tool .ti-tool-desc {
		flex-basis: 100%;
		order: 3;
	}
}
