.seo-template-page .global-comparison-table {
	background: var(--fg-color-muted-surface-40);
	padding: var(--fg-space-14) var(--fg-space-4);
}

.seo-template-page .global-comparison-table__inner {
	max-width: var(--fg-content-5xl);
	margin: var(--fg-space-0) auto;
}

.seo-template-page .global-comparison-table__inner--cols-5 {
	max-width: var(--fg-content-6xl);
}

.seo-template-page .global-comparison-table__header {
	max-width: var(--fg-content-2xl);
	margin: var(--fg-space-0) auto;
	text-align: center;
}

.seo-template-page .global-comparison-table__eyebrow {
	display: block;
	color: var(--fg-color-muted);
	font-size: var(--fg-text-xs);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-xs);
	letter-spacing: var(--fg-tracking-eyebrow);
	text-transform: uppercase;
}

.seo-template-page .global-comparison-table__title {
	margin: var(--fg-space-3) var(--fg-space-0) var(--fg-space-0);
	color: var(--fg-color-text);
	font-size: var(--fg-text-3xl);
	font-weight: var(--fg-weight-semibold);
	letter-spacing: var(--fg-tracking-tight);
	line-height: var(--fg-leading-3xl);
	text-wrap: balance;
}

.seo-template-page .global-comparison-table__intro {
	margin: var(--fg-space-4) auto var(--fg-space-0);
	max-width: var(--fg-content-2xl);
	color: var(--fg-color-text-70);
	font-size: var(--fg-text-base);
	line-height: var(--fg-leading-base);
	text-wrap: pretty;
}

.seo-template-page .global-comparison-table__table {
	overflow: auto hidden;
	margin-top: var(--fg-space-12);
	border: var(--fg-space-px) solid var(--fg-color-border);
	border-radius: var(--fg-radius-2xl);
	background: var(--fg-color-background);
	box-shadow: var(--fg-shadow-sm);
}

.seo-template-page .global-comparison-table__row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	min-width: var(--fg-content-xl);
	border-bottom: var(--fg-space-px) solid var(--fg-color-border);
	padding: var(--fg-space-0);
	color: var(--fg-color-text);
	font-size: var(--fg-text-sm);
	line-height: var(--fg-leading-sm);
}

.seo-template-page .global-comparison-table__table--cols-4 .global-comparison-table__row {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	min-width: var(--fg-content-3xl);
}

.seo-template-page .global-comparison-table__table--cols-5 .global-comparison-table__row {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	min-width: var(--fg-content-5xl);
}

.seo-template-page .global-comparison-table__row:last-child {
	border-bottom: 0;
}

.seo-template-page .global-comparison-table__row--head {
	background: var(--fg-color-muted-surface-40);
	font-weight: var(--fg-weight-semibold);
}

.seo-template-page .global-comparison-table__row--head .global-comparison-table__cell {
	color: var(--fg-color-muted);
	font-size: var(--fg-text-xs);
	font-weight: var(--fg-weight-bold);
	letter-spacing: var(--fg-tracking-label);
	line-height: var(--fg-leading-xs);
	text-transform: uppercase;
}

.seo-template-page .global-comparison-table__cell {
	min-width: var(--fg-space-0);
	padding: calc(var(--fg-space-3) + var(--fg-space-0-5)) var(--fg-space-5);
}

.seo-template-page .global-comparison-table__row--head .global-comparison-table__cell {
	padding-top: var(--fg-space-4);
	padding-bottom: var(--fg-space-4);
}

.seo-template-page .global-comparison-table__cell:first-child {
	font-weight: var(--fg-weight-medium);
	text-align: left;
}

.seo-template-page .global-comparison-table__row--head .global-comparison-table__cell:first-child {
	font-weight: var(--fg-weight-bold);
}

.seo-template-page .global-comparison-table__cell:not(:first-child) {
	text-align: center;
}

.seo-template-page .global-comparison-table__cell--brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--fg-space-1-5);
	color: var(--fg-color-text);
	font-weight: var(--fg-weight-bold);
}

.seo-template-page .global-comparison-table .global-comparison-table__row .global-comparison-table__cell.global-comparison-table__cell--brand {
	color: var(--fg-color-text);
	font-weight: var(--fg-weight-bold);
}

.seo-template-page .global-comparison-table .global-comparison-table__row--head .global-comparison-table__cell.global-comparison-table__cell--brand {
	color: var(--fg-color-text);
	font-weight: var(--fg-weight-extrabold);
}

.seo-template-page .global-comparison-table__brand-icon {
	width: var(--fg-icon-xs);
	height: var(--fg-icon-xs);
	flex: 0 0 auto;
	color: var(--fg-color-text);
	fill: none;
	stroke: currentColor;
}

@media (min-width: 1024px) {
	.seo-template-page .global-comparison-table__row,
	.seo-template-page .global-comparison-table__table--cols-4 .global-comparison-table__row,
	.seo-template-page .global-comparison-table__table--cols-5 .global-comparison-table__row {
		min-width: 100%;
	}

	.seo-template-page .global-comparison-table__cell.global-comparison-table__cell--brand {
		color: var(--fg-color-text);
		font-weight: var(--fg-weight-bold);
	}
}

@media (min-width: 640px) {
	.seo-template-page .global-comparison-table {
		padding: var(--fg-space-28) var(--fg-space-6);
	}

	.seo-template-page .global-comparison-table__title {
		font-size: var(--fg-text-4xl);
		line-height: var(--fg-leading-4xl);
	}
}

@media (max-width: 1023px) {
	.seo-template-page .global-comparison-table__table {
		overflow: auto hidden;
		-webkit-overflow-scrolling: touch;
	}

	.seo-template-page .global-comparison-table__row,
	.seo-template-page .global-comparison-table__table--cols-4 .global-comparison-table__row,
	.seo-template-page .global-comparison-table__table--cols-5 .global-comparison-table__row {
		column-gap: var(--fg-space-2);
	}

	.seo-template-page .global-comparison-table__cell {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.seo-template-page .global-comparison-table__table--cols-4 .global-comparison-table__row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		min-width: var(--fg-content-3xl);
	}

	.seo-template-page .global-comparison-table__table--cols-5 .global-comparison-table__row {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		min-width: var(--fg-content-5xl);
	}
}

@media (max-width: 639px) {
	.seo-template-page .global-comparison-table {
		padding-right: var(--fg-space-4);
		padding-left: var(--fg-space-4);
	}

	.seo-template-page .global-comparison-table__table {
		overflow: auto hidden;
	}

	.seo-template-page .global-comparison-table__row,
	.seo-template-page .global-comparison-table__table--cols-4 .global-comparison-table__row,
	.seo-template-page .global-comparison-table__table--cols-5 .global-comparison-table__row {
		column-gap: var(--fg-space-1);
		font-size: var(--fg-text-xs);
		line-height: var(--fg-leading-xs);
	}

	.seo-template-page .global-comparison-table__table--cols-3 .global-comparison-table__row {
		min-width: var(--fg-content-xl);
	}

	.seo-template-page .global-comparison-table__table--cols-4 .global-comparison-table__row {
		min-width: var(--fg-content-3xl);
	}

	.seo-template-page .global-comparison-table__table--cols-5 .global-comparison-table__row {
		min-width: var(--fg-content-5xl);
	}

	.seo-template-page .global-comparison-table__cell {
		padding: var(--fg-space-3) var(--fg-space-4);
	}

	.seo-template-page .global-comparison-table__cell--brand {
		gap: var(--fg-space-1);
	}

	.seo-template-page .global-comparison-table__brand-icon {
		width: var(--fg-icon-xs);
		height: var(--fg-icon-xs);
	}

	.seo-template-page .global-comparison-table__row--head .global-comparison-table__cell {
		font-size: var(--fg-text-xs);
		font-weight: var(--fg-weight-bold);
		letter-spacing: var(--fg-tracking-label);
		line-height: var(--fg-leading-xs);
		text-transform: uppercase;
	}
}
