/* Canonical global workflow step grid. */
.seo-template-page .global-workflow-steps {
	border-bottom: var(--fg-border-width) solid var(--fg-color-border);
	background: var(--fg-color-background);
	padding: var(--fg-space-16) var(--fg-space-4);
}

.seo-template-page .global-workflow-steps__inner {
	max-width: var(--fg-content-wide);
	margin: var(--fg-space-0) auto;
}

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

.seo-template-page .global-workflow-steps__eyebrow {
	display: inline-flex;
	align-items: center;
	border: var(--fg-border-width) solid var(--fg-color-border);
	border-radius: var(--fg-radius-full);
	background: var(--fg-color-background);
	color: var(--fg-color-text-70);
	padding: var(--fg-space-1) var(--fg-space-3);
	font-size: var(--fg-text-11);
	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-workflow-steps__title {
	margin: var(--fg-space-4) 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);
	line-height: var(--fg-leading-3xl);
	letter-spacing: var(--fg-tracking-reset);
	text-wrap: balance;
}

.seo-template-page .global-workflow-steps__intro {
	max-width: var(--fg-content-2xl);
	margin: var(--fg-space-4) auto var(--fg-space-0);
	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-workflow-steps__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fg-space-5);
	margin: var(--fg-space-12) var(--fg-space-0) var(--fg-space-0);
	padding: var(--fg-space-0);
	list-style: none;
}

.seo-template-page .global-workflow-steps__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	margin: var(--fg-space-0);
	border: var(--fg-border-width) solid var(--fg-color-border);
	border-radius: var(--fg-radius-3xl);
	background: var(--fg-color-background);
	padding: var(--fg-space-6);
	box-shadow: var(--fg-shadow-soft);
}

.seo-template-page .global-workflow-steps__media {
	overflow: hidden;
	aspect-ratio: 3 / 2;
	margin: var(--fg-space-0);
	border-radius: var(--fg-radius-2xl);
	background: var(--fg-color-muted-surface-50);
}

.seo-template-page .global-workflow-steps__media--before-title {
	margin-top: var(--fg-space-4);
}

.seo-template-page .global-workflow-steps__media--after-copy {
	margin-top: var(--fg-space-5);
}

.seo-template-page .global-workflow-steps__media--ratio-4-3 {
	aspect-ratio: 4 / 3;
}

.seo-template-page .global-workflow-steps__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: var(--seo-image-fit, cover);
	object-position: var(--seo-image-position, center center);
}

.seo-template-page .global-workflow-steps__card-head {
	display: flex;
	align-items: center;
	gap: var(--fg-space-3);
}

.seo-template-page .global-workflow-steps__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 var(--fg-space-9);
	width: var(--fg-space-9);
	height: var(--fg-space-9);
	border-radius: var(--fg-radius-full);
	background: var(--fg-color-text);
	color: var(--fg-color-background);
	font-size: var(--fg-text-sm);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-sm);
}

.seo-template-page .global-workflow-steps__icon-tile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 var(--fg-space-10);
	width: var(--fg-space-10);
	height: var(--fg-space-10);
	border-radius: var(--fg-space-3);
	background: var(--fg-color-muted-surface);
	color: var(--fg-color-text);
}

.seo-template-page .global-workflow-steps__inline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 var(--fg-space-5);
	width: var(--fg-space-5);
	height: var(--fg-space-5);
	color: var(--fg-color-text-60);
}

.seo-template-page .global-workflow-steps__icon-svg {
	display: block;
	width: var(--fg-space-5);
	height: var(--fg-space-5);
}

.seo-template-page .global-workflow-steps__step-label {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	color: var(--fg-color-text-55);
	font-size: var(--fg-text-11);
	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-workflow-steps__step-title {
	margin: var(--fg-space-4) var(--fg-space-0) var(--fg-space-0);
	color: var(--fg-color-text);
	font-size: var(--fg-text-lg);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-lg);
	letter-spacing: var(--fg-tracking-reset);
}

.seo-template-page .global-workflow-steps__step-copy {
	margin: var(--fg-space-2) var(--fg-space-0) var(--fg-space-0);
	color: var(--fg-color-text-70);
	font-size: var(--fg-text-sm);
	line-height: var(--fg-leading-relaxed);
}

.seo-template-page .global-workflow-steps__cta {
	display: flex;
	justify-content: center;
	margin-top: var(--fg-space-10);
}

.seo-template-page .global-workflow-steps__cta-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--fg-space-12);
	border-radius: var(--fg-radius-full);
	background: var(--fg-color-text);
	color: var(--fg-color-background);
	padding: var(--fg-space-3) var(--fg-space-6);
	font-size: var(--fg-text-sm);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-sm);
	text-decoration: none;
	box-shadow: var(--fg-shadow-soft);
	transition: transform var(--fg-transition-fast), box-shadow var(--fg-transition-fast);
}

.seo-template-page .global-workflow-steps__cta-link:hover {
	color: var(--fg-color-background);
	box-shadow: var(--fg-shadow-card);
	transform: translateY(calc(-1 * var(--fg-space-0-5)));
}

@media (min-width: 640px) {
	.seo-template-page .global-workflow-steps {
		padding: var(--fg-space-20) var(--fg-space-6);
	}

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

	.seo-template-page .global-workflow-steps__intro {
		font-size: var(--fg-text-lg);
		line-height: var(--fg-leading-lg);
	}

	.seo-template-page .global-workflow-steps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.seo-template-page .global-workflow-steps {
		padding: var(--fg-space-28) var(--fg-space-8);
	}

	.seo-template-page .global-workflow-steps__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--fg-space-6);
	}
}
