/**
 * hostsnix/guide-content — frontend.
 *
 * Ported from src/components/shared/GuideContentSections.tsx. Each Tailwind
 * utility on those components is written out here so the guide reads the same
 * server-rendered as it did behind the React tab.
 */

.hsx-gc {
	max-width: 56rem;
	display: flex;
	flex-direction: column;
}

/*
 * space-y-4 inside a GuideSection, as a margin rather than a container gap: the
 * raw paragraphs carry their own Tailwind margins and a flex gap cannot be
 * overridden per item.
 */
/*
 * Each section carries the gap it inherits from its container in the source,
 * resolved at extract time. Nothing here may set the `margin` shorthand on a
 * section — a single-class rule such as `.hsx-gc-benefits { margin: 0 }` has
 * the same specificity as these and would silently win.
 */
.hsx-gc > [data-gap="0"]  { margin-top: 0; }
.hsx-gc > [data-gap="8"]  { margin-top: 8px; }
.hsx-gc > [data-gap="12"] { margin-top: 12px; }
.hsx-gc > [data-gap="16"] { margin-top: 16px; }
.hsx-gc > [data-gap="24"] { margin-top: 24px; }

/* GuidePage's space-y-10 sm:space-y-12 between whole sections. */
.hsx-gc > [data-group] { margin-top: 40px; }
.hsx-gc > [data-group]:first-child { margin-top: 0; }
@media (min-width: 640px) { .hsx-gc > [data-group] { margin-top: 48px; } }

/* ── Raw paragraphs between the components ── */
.hsx-gc-label {
	font-size: 14px; line-height: 20px;
	font-weight: 600;
	color: hsl(var(--foreground));
}

.hsx-gc-text {
	font-size: 14px; line-height: 20px;
	color: hsl(var(--muted-foreground));
}

.hsx-gc-relaxed { line-height: 1.625; }

/* No margin utilities here: an element's own mt/mb is already folded into the
   gap the extract records for it and for the element after it. */



/* ── Section heading ── */
.hsx-gc-h2 {
	font-size: 20px;
	line-height: 1.25;
	font-weight: 700;
	color: hsl(var(--foreground));
}
@media (min-width: 640px) { .hsx-gc-h2 { font-size: 24px; line-height: 32px; } }

.hsx-gc-intro {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.625;
	color: hsl(var(--muted-foreground));
}

/* ── Feature cards ── */
.hsx-gc-features { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) {
	.hsx-gc-features { gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
	.hsx-gc-features--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
	.hsx-gc-features--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.hsx-gc-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid hsl(var(--border) / 0.5);
	border-radius: 12px;
	background-color: hsl(var(--card));
	padding: 10px 12px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	transition: border-color 0.15s ease;
}
@media (min-width: 640px) { .hsx-gc-feature { padding: 12px 14px; } }
.hsx-gc-feature:hover { border-color: hsl(var(--primary) / 0.2); }

.hsx-gc-feature-tile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px; height: 32px;
	border: 1px solid hsl(var(--primary) / 0.15);
	border-radius: 8px;
	background-color: hsl(var(--primary) / 0.05);
	color: hsl(var(--primary));
}
.hsx-gc-feature-icon { width: 16px; height: 16px; }

.hsx-gc-feature-title {
	font-size: 12px;
	line-height: 1.375;
	font-weight: 700;
	color: hsl(var(--foreground));
}
@media (min-width: 640px) { .hsx-gc-feature-title { font-size: 14px; line-height: 20px; } }

/* The capability variant is the same card one size up. */
.hsx-gc-features--lg .hsx-gc-feature { gap: 12px; padding: 16px; border-radius: 16px; border-color: hsl(var(--border) / 0.6); }
@media (min-width: 640px) { .hsx-gc-features--lg .hsx-gc-feature { padding: 20px; } }
.hsx-gc-features--lg .hsx-gc-feature-tile { width: 40px; height: 40px; border-radius: 12px; border-color: hsl(var(--primary) / 0.2); }
.hsx-gc-features--lg .hsx-gc-feature-icon { width: 20px; height: 20px; }
.hsx-gc-features--lg .hsx-gc-feature-title { font-size: 14px; }

/* ── Issue grid ── */
.hsx-gc-issues { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px)  { .hsx-gc-issues { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .hsx-gc-issues { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.hsx-gc-issue {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid hsl(var(--border) / 0.5);
	border-radius: 12px;
	background-color: hsl(var(--card) / 0.6);
	padding: 12px 16px;
}

.hsx-gc-issue-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px; height: 24px;
	border-radius: 9999px;
	background-color: rgba(239, 68, 68, 0.1);
	color: #ef4444;
}
.hsx-gc-issue-icon { width: 14px; height: 14px; }

.hsx-gc-issue-text {
	font-size: 14px;
	line-height: 1.375;
	font-weight: 500;
	color: hsl(var(--foreground));
}

/*
 * A few sections render two top-level elements — the issue grid and its
 * footer, the numbered grid and its intro. React returns them as a fragment,
 * so both are direct children of GuideSection and space-y-4 puts 16px between
 * them. Only the first carries the gap the extract recorded, so the second
 * needs that 16px here.
 */
.hsx-gc-issues-footer {
	margin-top: 16px;
	padding-top: 8px;
	font-size: 14px;
	line-height: 1.625;
	color: hsl(var(--muted-foreground));
}

/* ── Callout ── */
.hsx-gc-callout {
	border: 1px solid hsl(var(--primary) / 0.15);
	border-radius: 16px;
	background-color: hsl(var(--primary) / 0.06);
	padding: 20px;
}
@media (min-width: 640px) { .hsx-gc-callout { padding: 24px; } }

.hsx-gc-callout-title {
	margin-bottom: 12px;
	font-size: 20px; line-height: 1.25;
	font-weight: 700;
	color: hsl(var(--foreground));
}
@media (min-width: 640px) { .hsx-gc-callout-title { font-size: 24px; line-height: 32px; } }

.hsx-gc-callout-intro { font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }

.hsx-gc-callout-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }

.hsx-gc-callout-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.625;
	color: hsl(var(--foreground));
}

.hsx-gc-callout-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
	width: 20px; height: 20px;
	border-radius: 9999px;
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}
.hsx-gc-callout-check { width: 12px; height: 12px; }

/* ── Definition block ── */
.hsx-gc-def { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 1024px) { .hsx-gc-def { grid-template-columns: 1fr auto; } }

.hsx-gc-def-body { margin-top: 12px; font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }

.hsx-gc-tags { margin-top: 16px; }
.hsx-gc-tags-label {
	margin-bottom: 8px;
	font-size: 12px; line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: hsl(var(--muted-foreground));
}
.hsx-gc-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

.hsx-gc-tag {
	display: inline-flex;
	padding: 4px 12px;
	border: 1px solid hsl(var(--border) / 0.5);
	border-radius: 9999px;
	background-color: hsl(var(--muted));
	color: hsl(var(--muted-foreground));
	font-size: 12px; line-height: 16px;
	font-weight: 500;
}

/* The illustration is decorative and costs a column, so it waits for lg. */
.hsx-gc-def-aside { display: none; }
@media (min-width: 1024px) {
	.hsx-gc-def-aside { display: flex; flex-shrink: 0; width: 11rem; color: hsl(var(--primary)); }
}
@media (min-width: 1280px) { .hsx-gc-def-aside { width: 13rem; } }
.hsx-gc-def-art { display: block; width: 100%; max-width: 180px; height: auto; filter: drop-shadow(0 18px 30px rgba(16, 185, 129, 0.18)); }
.hsx-gc-def-art svg { display: block; width: 100%; height: auto; }

/* ── Numbered grid ── */
.hsx-gc-numbered-intro { font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }
.hsx-gc-numbered { display: grid; grid-template-columns: 1fr; -moz-column-gap: 32px; column-gap: 32px; row-gap: 16px; }
.hsx-gc-numbered-intro + .hsx-gc-numbered { margin-top: 16px; }
@media (min-width: 640px) { .hsx-gc-numbered { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.hsx-gc-numbered-item { display: flex; align-items: flex-start; gap: 12px; }

.hsx-gc-numbered-n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px; height: 28px;
	border-radius: 9999px;
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	font-size: 12px; line-height: 16px;
	font-weight: 700;
}

.hsx-gc-numbered-text { padding-top: 2px; font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }

/* ── Why-it-matters cards ── */
.hsx-gc-why { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .hsx-gc-why { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.hsx-gc-why-card {
	border: 1px solid hsl(var(--primary) / 0.15);
	border-radius: 16px;
	background-color: hsl(var(--primary) / 0.06);
	padding: 20px;
}
.hsx-gc-why-title { margin-bottom: 8px; font-size: 14px; line-height: 20px; font-weight: 700; color: hsl(var(--primary)); }
.hsx-gc-why-text { font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }

/* ── Stacked info cards ── */
.hsx-gc-stack { display: flex; flex-direction: column; gap: 16px; }
.hsx-gc-stack-card {
	border: 1px solid hsl(var(--border) / 0.6);
	border-radius: 16px;
	background-color: hsl(var(--card));
	padding: 20px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.hsx-gc-stack-title { margin-bottom: 4px; font-size: 14px; line-height: 20px; font-weight: 700; color: hsl(var(--foreground)); }
.hsx-gc-stack-text { font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }

/* ── Coloured info cards ── */
.hsx-gc-infos { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px)  { .hsx-gc-infos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .hsx-gc-infos { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.hsx-gc-info {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid hsl(var(--border) / 0.5);
	border-radius: 16px;
	background-color: hsl(var(--card));
	padding: 16px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
@media (min-width: 640px) { .hsx-gc-info { gap: 16px; padding: 20px; } }
.hsx-gc-info:hover {
	border-color: hsl(var(--border) / 0.8);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.hsx-gc-info-tile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px; height: 44px;
	border-radius: 12px;
}
@media (min-width: 640px) { .hsx-gc-info-tile { width: 48px; height: 48px; } }
.hsx-gc-info-icon { width: 20px; height: 20px; }
@media (min-width: 640px) { .hsx-gc-info-icon { width: 1.35rem; height: 1.35rem; } }

.hsx-gc-info-body { flex: 1 1 0%; min-width: 0; }
.hsx-gc-info-title { margin-bottom: 4px; font-size: 14px; line-height: 1.375; font-weight: 700; color: hsl(var(--foreground)); }
.hsx-gc-info-text {
	font-size: 12px; line-height: 1.625;
	color: hsl(var(--muted-foreground));
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .hsx-gc-info-text { font-size: 14px; line-height: 20px; } }

.hsx-gc-info-chevron { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; transition: opacity 0.15s ease, transform 0.15s ease; }
.hsx-gc-info:hover .hsx-gc-info-chevron { opacity: 1; transform: translateX(2px); }

/* The six INFO_CARD_THEMES, in the order the resolver returns them. */
.hsx-gc-info--0 .hsx-gc-info-tile { background-color: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }
.hsx-gc-info--0 .hsx-gc-info-chevron { color: hsl(var(--primary)); }
.hsx-gc-info--1 .hsx-gc-info-tile { background-color: rgba(16, 185, 129, 0.1); color: #059669; }
.hsx-gc-info--1 .hsx-gc-info-chevron { color: #059669; }
.hsx-gc-info--2 .hsx-gc-info-tile { background-color: rgba(20, 184, 166, 0.1); color: #0d9488; }
.hsx-gc-info--2 .hsx-gc-info-chevron { color: #0d9488; }
.hsx-gc-info--3 .hsx-gc-info-tile { background-color: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.hsx-gc-info--3 .hsx-gc-info-chevron { color: #7c3aed; }
.hsx-gc-info--4 .hsx-gc-info-tile { background-color: rgba(249, 115, 22, 0.1); color: #f97316; }
.hsx-gc-info--4 .hsx-gc-info-chevron { color: #f97316; }
.hsx-gc-info--5 .hsx-gc-info-tile { background-color: rgba(14, 165, 233, 0.1); color: #0284c7; }
.hsx-gc-info--5 .hsx-gc-info-chevron { color: #0284c7; }

/* ── Benefits list ── */
.hsx-gc-benefits { list-style: none; margin-top: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.hsx-gc-benefit { display: flex; align-items: flex-start; gap: 12px; }

.hsx-gc-benefit-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
	width: 24px; height: 24px;
	border: 2px solid hsl(var(--primary) / 0.25);
	border-radius: 9999px;
	background-color: hsl(var(--primary) / 0.05);
	color: hsl(var(--primary));
}
.hsx-gc-benefit-check { width: 14px; height: 14px; }

.hsx-gc-benefit-text { padding-top: 2px; font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }
.hsx-gc-benefit-title { font-weight: 700; color: hsl(var(--foreground)); }
.hsx-gc-benefit-solo { color: hsl(var(--foreground)); }

/* ── Checklist ── */
.hsx-gc-checklist { list-style: none; margin-top: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hsx-gc-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.625;
	color: hsl(var(--muted-foreground));
}
.hsx-gc-check-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: hsl(var(--primary)); }

/* ── Audience circles ── */
.hsx-gc-audience { padding-block: 8px; }
@media (min-width: 640px) { .hsx-gc-audience { padding-block: 16px; } }

.hsx-gc-audience-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 32px;
	padding-inline: 8px;
}
@media (min-width: 640px) { .hsx-gc-audience-head { gap: 20px; margin-bottom: 40px; } }

/* The hairline with a dot at its inner end, on both sides of the heading. */
.hsx-gc-audience-rule { display: none; }
@media (min-width: 640px) {
	.hsx-gc-audience-rule {
		display: block;
		flex: 1 1 0%;
		max-width: 140px;
		height: 1px;
		background-color: hsl(var(--primary) / 0.25);
		position: relative;
	}
	.hsx-gc-audience-rule--left { margin-left: auto; }
	.hsx-gc-audience-rule--right { margin-right: auto; }
	.hsx-gc-audience-rule::after {
		content: "";
		position: absolute;
		top: 50%;
		width: 6px; height: 6px;
		margin-top: -3px;
		border-radius: 9999px;
		background-color: hsl(var(--primary) / 0.35);
	}
	.hsx-gc-audience-rule--left::after { right: -6px; }
	.hsx-gc-audience-rule--right::after { left: -6px; }
}
@media (min-width: 1024px) { .hsx-gc-audience-rule { max-width: 180px; } }

.hsx-gc-audience-h2 {
	flex-shrink: 0;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 700;
	text-align: center;
	color: hsl(var(--foreground));
}
@media (min-width: 640px)  { .hsx-gc-audience-h2 { font-size: 24px; line-height: 32px; } }
@media (min-width: 1024px) { .hsx-gc-audience-h2 { font-size: 30px; line-height: 36px; } }

.hsx-gc-audience-scroll { overflow-x: auto; margin-inline: -4px; padding: 0 4px 4px; }
.hsx-gc-audience-row { display: flex; align-items: flex-start; justify-content: center; min-width: -moz-max-content; min-width: max-content; margin-inline: auto; }

.hsx-gc-audience-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex-shrink: 0;
	width: 108px;
	padding-inline: 12px;
}
@media (min-width: 640px)  { .hsx-gc-audience-item { width: 132px; padding-inline: 20px; } }
@media (min-width: 1024px) { .hsx-gc-audience-item { width: 148px; } }

.hsx-gc-audience-disc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px; height: 56px;
	margin-bottom: 12px;
	border: 1px solid hsl(var(--primary) / 0.15);
	border-radius: 9999px;
	background-color: hsl(var(--primary) / 0.08);
	color: hsl(var(--primary));
	box-shadow: 0 1px 2px 0 hsl(var(--primary) / 0.05);
}
@media (min-width: 640px) { .hsx-gc-audience-disc { width: 64px; height: 64px; } }
.hsx-gc-audience-icon { width: 24px; height: 24px; }
@media (min-width: 640px) { .hsx-gc-audience-icon { width: 28px; height: 28px; } }

.hsx-gc-audience-name { font-size: 12px; line-height: 1.375; font-weight: 700; color: hsl(var(--foreground)); }
@media (min-width: 640px) { .hsx-gc-audience-name { font-size: 14px; line-height: 20px; } }

.hsx-gc-audience-sep {
	flex-shrink: 0;
	width: 1px; height: 48px;
	margin-top: 16px;
	background-color: hsl(var(--border) / 0.6);
}
@media (min-width: 640px) { .hsx-gc-audience-sep { height: 56px; margin-top: 20px; } }

/* ── Comparison panel ── */
.hsx-gc-compare-h2 { margin-bottom: 16px; }

.hsx-gc-compare {
	border: 1px solid hsl(var(--primary) / 0.15);
	border-radius: 16px;
	background-color: hsl(var(--primary) / 0.04);
	overflow: hidden;
}
.hsx-gc-compare-head { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background-color: hsl(var(--primary) / 0.08); border-bottom: 1px solid hsl(var(--primary) / 0.15); }
.hsx-gc-compare-head .hsx-gc-compare-cell { padding: 12px 16px; font-size: 14px; line-height: 20px; font-weight: 700; }
.hsx-gc-compare-head .hsx-gc-compare-cell--l { color: hsl(var(--foreground)); }
.hsx-gc-compare-head .hsx-gc-compare-cell--r { color: hsl(var(--primary)); }

.hsx-gc-compare-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-bottom: 1px solid hsl(var(--border) / 0.4); }
.hsx-gc-compare-row:last-child { border-bottom: 0; }
.hsx-gc-compare-row:nth-child(even) { background-color: hsl(var(--card) / 0.4); }
.hsx-gc-compare-row .hsx-gc-compare-cell { padding: 14px 16px; font-size: 14px; line-height: 20px; }
.hsx-gc-compare-row .hsx-gc-compare-cell--l { color: hsl(var(--muted-foreground)); }
.hsx-gc-compare-row .hsx-gc-compare-cell--r { color: hsl(var(--primary)); font-weight: 500; }

/* ── Key features panel ── */
.hsx-gc-keyf { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 640px) { .hsx-gc-keyf { gap: 24px; } }

.hsx-gc-keyf-head .hsx-gc-h2 { margin-bottom: 8px; }
@media (min-width: 640px) { .hsx-gc-keyf-head .hsx-gc-h2 { margin-bottom: 12px; } }
.hsx-gc-keyf-desc { max-width: 42rem; font-size: 14px; line-height: 1.625; color: hsl(var(--muted-foreground)); }

.hsx-gc-keyf-rows {
	border: 1px solid hsl(var(--border) / 0.5);
	border-radius: 16px;
	background-color: hsl(var(--card));
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	overflow: hidden;
}
.hsx-gc-keyf-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-top: 1px solid hsl(var(--border) / 0.4);
}
.hsx-gc-keyf-row:first-child { border-top: 0; }
@media (min-width: 640px) { .hsx-gc-keyf-row { padding: 12px 16px; } }

.hsx-gc-keyf-tile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px; height: 32px;
	border-radius: 12px;
	background-color: hsl(var(--primary) / 0.1);
	color: hsl(var(--primary));
}
@media (min-width: 640px) { .hsx-gc-keyf-tile { width: 36px; height: 36px; } }
.hsx-gc-keyf-icon { width: 16px; height: 16px; }

.hsx-gc-keyf-label { flex: 1 1 0%; min-width: 0; font-size: 12px; line-height: 1.375; font-weight: 600; color: hsl(var(--foreground)); }
@media (min-width: 640px) { .hsx-gc-keyf-label { font-size: 14px; line-height: 20px; } }

.hsx-gc-keyf-title {
	flex-shrink: 0;
	width: 88px;
	font-size: 12px; line-height: 1.375;
	font-weight: 700;
	color: hsl(var(--foreground));
}
@media (min-width: 640px)  { .hsx-gc-keyf-title { width: 108px; font-size: 14px; line-height: 20px; } }
@media (min-width: 1024px) { .hsx-gc-keyf-title { width: 120px; } }

.hsx-gc-keyf-divider { display: none; }
@media (min-width: 640px) {
	.hsx-gc-keyf-divider { display: block; flex-shrink: 0; width: 1px; height: 16px; background-color: hsl(var(--border) / 0.6); }
}

.hsx-gc-keyf-detail { flex: 1 1 0%; min-width: 0; font-size: 12px; line-height: 1.375; color: hsl(var(--muted-foreground)); }
@media (min-width: 640px) { .hsx-gc-keyf-detail { font-size: 14px; line-height: 20px; } }

.hsx-gc-keyf-chevron { width: 16px; height: 16px; flex-shrink: 0; color: hsl(var(--primary) / 0.7); }

/* ── Table ──
   Its own scroller so a wide table never makes the page scroll sideways. */
.hsx-gc-table-wrap { overflow-x: auto; border: 1px solid hsl(var(--border) / 0.6); border-radius: 16px; }
.hsx-gc-table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 14px; line-height: 20px; }
.hsx-gc-table th {
	text-align: left;
	padding: 12px 16px;
	font-weight: 700;
	color: hsl(var(--foreground));
	background-color: hsl(var(--primary) / 0.08);
	border-bottom: 1px solid hsl(var(--border) / 0.6);
}
.hsx-gc-table td { padding: 12px 16px; color: hsl(var(--muted-foreground)); vertical-align: top; }
.hsx-gc-table tbody tr { border-bottom: 1px solid hsl(var(--border) / 0.4); }
.hsx-gc-table tbody tr:last-child { border-bottom: 0; }
.hsx-gc-table tbody tr:nth-child(even) { background-color: hsl(var(--card) / 0.5); }

@media (prefers-reduced-motion: reduce) {
	.hsx-gc-feature, .hsx-gc-info, .hsx-gc-info-chevron { transition: none; }
}

