.gc-growth-engines {
	--gc-ge-ink: #1a1a1a;
	--gc-ge-card: #212121;
	--gc-ge-card-deep: #151515;
	--gc-ge-line: #4b4b4b;
	--gc-ge-muted: #bdbdb7;
	--gc-ge-off-white: #f2f2e6;
	--gc-ge-purple: #7441ff;
	--gc-ge-purple-soft: #b39aff;
	--gc-ge-mint: #8cd9c4;
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	padding: 92px 0 0;
	background: var(--gc-ge-ink);
	color: var(--gc-ge-off-white);
	scroll-margin-top: 86px;
}

.gc-ge__shell { position: relative; }

.gc-ge__heading {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	max-width: 760px;
	margin: 0;
}

.gc-ge__eyebrow {
	margin: 0 0 32px;
	color: #d8d8d2;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.55;
}

.gc-ge__heading h2 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(48px, 4.65vw, 60px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1;
}

.gc-ge__heading h2 span,
.gc-ge__heading h2 em { display: block; }
.gc-ge__heading h2 em { color: #fff; font-style: normal; }

.gc-ge__intro {
	max-width: 700px;
	margin-top: 20px;
}

.gc-ge__intro p {
	margin: 0;
	color: #d0d0ca;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
}

.gc-ge__intro p + p { margin-top: 2px; }

.gc-ge__track {
	position: relative;
	height: 2400px;
	margin-top: 76px;
}

.gc-ge__system {
	position: sticky;
	top: 96px;
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	align-items: start;
	gap: 80px;
	min-height: 690px;
}

.gc-ge__tabs {
	display: flex;
	align-self: start;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.gc-ge__tab {
	display: grid;
	grid-template-columns: 4px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	width: 100%;
	min-height: 40px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #aaa9a4;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: color 180ms ease;
}

.gc-ge__tab > span {
	display: block;
	width: 4px;
	height: 40px;
	background: transparent;
	transition: background 180ms ease, box-shadow 180ms ease;
}

.gc-ge__tab b {
	font-size: 18px;
	font-weight: 650;
	line-height: 1.25;
}

.gc-ge__tab:hover { color: #fff; }
.gc-ge__tab.is-active { background: transparent; color: var(--gc-ge-purple-soft); }

.gc-ge__tab.is-active > span {
	background: var(--gc-ge-purple);
	box-shadow: 0 0 18px rgb(116 65 255 / 45%);
}

.gc-ge__tab:focus-visible,
.gc-ge__accordion > button:focus-visible {
	outline: 3px solid rgb(179 154 255 / 68%);
	outline-offset: 4px;
}

.gc-ge__panels { min-width: 0; }

.gc-ge__panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: auto 1fr;
	column-gap: 40px;
	min-height: 690px;
	padding: 24px;
	border: 0;
	border-radius: 0;
	background: var(--gc-ge-card);
	box-shadow: none;
	color: var(--gc-ge-off-white);
}

.gc-ge__panel[hidden] { display: none !important; }
.gc-ge__panel.is-entering { animation: gc-ge-panel-in 360ms cubic-bezier(.2, .8, .2, 1) both; }

@keyframes gc-ge-panel-in {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

.gc-ge__panel-top {
	grid-column: 1;
	grid-row: 1;
	padding-top: 16px;
}

.gc-ge__panel-copy > p { display: none; }

.gc-ge__panel-copy h3 {
	max-width: 410px;
	margin: 0;
	color: var(--gc-ge-off-white);
	font-size: clamp(28px, 2.45vw, 32px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.08;
}

.gc-ge__panel-copy > span {
	display: block;
	max-width: 410px;
	margin-top: 18px;
	color: #c8c8c1;
	font-size: 18px;
	line-height: 1.55;
}

.gc-ge__panel-grid { display: contents; }

.gc-ge__accordions {
	grid-column: 1;
	grid-row: 2;
	align-self: end;
	margin-top: 60px;
}

.gc-ge__accordion { border-bottom: 1px solid var(--gc-ge-line); }
.gc-ge__accordion:first-child { border-top: 1px solid var(--gc-ge-line); }

.gc-ge__accordion > button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 70px;
	padding: 15px 0 15px 20px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--gc-ge-off-white);
	font: inherit;
	font-size: 18px;
	font-weight: 650;
	text-align: left;
	cursor: pointer;
}

.gc-ge__accordion > button::before {
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 0;
	width: 4px;
	background: transparent;
	content: "";
}

.gc-ge__accordion.is-open > button { color: var(--gc-ge-purple-soft); }
.gc-ge__accordion.is-open > button::before { background: var(--gc-ge-purple); }

.gc-ge__accordion > button i {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
}

.gc-ge__accordion > button i::before,
.gc-ge__accordion > button i::after {
	position: absolute;
	top: 11px;
	left: 1px;
	width: 22px;
	height: 2px;
	background: currentColor;
	content: "";
}

.gc-ge__accordion > button i::after {
	transform: rotate(90deg);
	transition: transform 180ms ease;
}

.gc-ge__accordion.is-open > button i::after { transform: rotate(0); }
.gc-ge__accordion-content { padding: 0 0 22px 20px; }
.gc-ge__accordion-content[hidden] { display: none !important; }

.gc-ge__accordion-content ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-ge__accordion-content li {
	padding: 10px 14px;
	border: 0;
	border-radius: 0;
	background: #414141;
	color: #f3f3ed;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.gc-ge__visual {
	grid-column: 2;
	grid-row: 1 / 3;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-width: 0;
	min-height: 642px;
	border: 1px solid #353535;
	border-radius: 0;
	background: radial-gradient(circle at 50% 22%, rgb(116 65 255 / 32%), transparent 43%), linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px), var(--gc-ge-card-deep);
	background-size: auto, 42px 42px, 42px 42px, auto;
	color: #fff;
}

.gc-ge__visual > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 58px;
	padding: 14px 18px;
	border-bottom: 1px solid rgb(255 255 255 / 11%);
	background: rgb(0 0 0 / 18%);
}

.gc-ge__visual > header span {
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gc-ge__visual > header b {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #b9eedf;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.gc-ge__visual > header b i,
.gc-ge__visual > footer > span i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gc-ge-mint);
	box-shadow: 0 0 0 4px rgb(140 217 196 / 13%);
}

.gc-ge__scene {
	position: relative;
	display: flex;
	overflow: hidden;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 16px;
	min-height: 350px;
	padding: 22px 18px 18px;
}

.gc-ge__scene-grid {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgb(255 255 255 / 9%) 1px, transparent 1.5px);
	background-size: 18px 18px;
	mask-image: linear-gradient(to bottom, #000, transparent 86%);
	opacity: .34;
	pointer-events: none;
}

.gc-ge__scene > :not(.gc-ge__scene-grid) {
	position: relative;
	z-index: 1;
}

.gc-ge__search-query {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 22px;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 10px 14px;
	border: 1px solid #dedde3;
	background: #fff;
	box-shadow: 0 9px 24px rgb(0 0 0 / 22%);
	color: #1a1720;
}

.gc-ge__search-query b,
.gc-ge__search-result header > span,
.gc-ge__answer-card header > span {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	background: var(--gc-ge-purple);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

.gc-ge__search-query span {
	overflow: hidden;
	font-size: 14px;
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gc-ge__search-query i {
	position: relative;
	width: 17px;
	height: 17px;
	border: 2px solid #3f3c43;
	border-radius: 50%;
}

.gc-ge__search-query i::after {
	position: absolute;
	right: -5px;
	bottom: -3px;
	width: 7px;
	height: 2px;
	background: #3f3c43;
	transform: rotate(48deg);
	content: "";
}

.gc-ge__search-result {
	padding: 16px;
	border: 1px solid rgb(179 154 255 / 78%);
	background: #f8f6f0;
	box-shadow: 0 18px 35px rgb(0 0 0 / 22%);
	color: #1b1820;
}

.gc-ge__search-result header,
.gc-ge__ai-answer header,
.gc-ge__answer-card header,
.gc-ge__campaign-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gc-ge__search-result header div,
.gc-ge__answer-card header div {
	display: grid;
	gap: 2px;
}

.gc-ge__search-result header b,
.gc-ge__answer-card header b {
	font-size: 13px;
}

.gc-ge__search-result header small,
.gc-ge__answer-card header small {
	color: #716b75;
	font-size: 9px;
}

.gc-ge__search-result header em {
	margin-left: auto;
	padding: 5px 7px;
	background: #e8e0ff;
	color: #5c2de2;
	font-size: 8px;
	font-style: normal;
	font-weight: 750;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.gc-ge__search-result h4 {
	margin: 16px 0 7px;
	color: #5526da;
	font-size: 17px;
	font-weight: 730;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.gc-ge__search-result p {
	margin: 0;
	color: #5f5962;
	font-size: 11px;
	line-height: 1.5;
}

.gc-ge__search-result footer,
.gc-ge__ai-answer footer,
.gc-ge__answer-card footer {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
}

.gc-ge__search-result footer span,
.gc-ge__ai-answer footer span,
.gc-ge__answer-card footer span {
	padding: 6px 8px;
	background: #eae7e0;
	color: #5d5860;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
}

.gc-ge__prompt,
.gc-ge__answer-question {
	align-self: flex-end;
	width: 88%;
	padding: 13px 15px;
	border: 1px solid rgb(179 154 255 / 58%);
	background: rgb(116 65 255 / 13%);
}

.gc-ge__prompt small,
.gc-ge__answer-question small,
.gc-ge__campaign-head small,
.gc-ge__campaign-metrics small {
	display: block;
	margin-bottom: 5px;
	color: var(--gc-ge-purple-soft);
	font-size: 8px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gc-ge__prompt strong,
.gc-ge__answer-question strong {
	display: block;
	font-size: 12px;
	line-height: 1.35;
}

.gc-ge__ai-answer,
.gc-ge__answer-card {
	padding: 16px;
	border: 1px solid #dedbe5;
	background: #f8f6f0;
	box-shadow: 0 20px 38px rgb(0 0 0 / 25%);
	color: #1c1921;
}

.gc-ge__ai-answer header > span {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	background: #e7deff;
	color: #6131e7;
	font-size: 16px;
}

.gc-ge__ai-answer header b { color: #4c22c9; font-size: 13px; }
.gc-ge__ai-answer header em { margin-left: auto; color: #767078; font-size: 9px; font-style: normal; }

.gc-ge__ai-answer > p {
	margin: 15px 0 0;
	color: #514b55;
	font-size: 12px;
	line-height: 1.55;
}

.gc-ge__ai-answer > p strong { color: #241d2d; }

.gc-ge__answer-card ul {
	display: grid;
	gap: 9px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.gc-ge__answer-card li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #554f58;
	font-size: 11px;
}

.gc-ge__answer-card li i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gc-ge-mint);
	box-shadow: 0 0 0 3px rgb(140 217 196 / 20%);
}

.gc-ge__campaign-head {
	justify-content: space-between;
	padding: 14px 15px;
	border: 1px solid rgb(255 255 255 / 12%);
	background: rgb(255 255 255 / 5%);
}

.gc-ge__campaign-head strong { display: block; font-size: 14px; }
.gc-ge__campaign-head > span { padding: 6px 8px; background: rgb(140 217 196 / 13%); color: #b9eedf; font-size: 8px; font-weight: 700; text-transform: uppercase; }

.gc-ge__campaign-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.gc-ge__campaign-metrics article {
	padding: 12px 10px;
	border: 1px solid rgb(255 255 255 / 10%);
	background: rgb(255 255 255 / 4%);
}

.gc-ge__campaign-metrics article b { color: #f4f2ec; font-size: 11px; }

.gc-ge__campaign-chart {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 7px;
	min-height: 112px;
	padding: 14px 14px 0;
	border-right: 1px solid rgb(255 255 255 / 10%);
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	border-left: 1px solid rgb(255 255 255 / 10%);
	background: linear-gradient(to top, rgb(116 65 255 / 10%), transparent);
}

.gc-ge__campaign-chart i {
	flex: 1;
	height: 30%;
	background: linear-gradient(to top, #6530f1, #b39aff);
	animation: gc-ge-bars 2.8s ease-in-out infinite alternate;
}

.gc-ge__campaign-chart i:nth-child(2) { height: 44%; animation-delay: -.5s; }
.gc-ge__campaign-chart i:nth-child(3) { height: 37%; animation-delay: -1.3s; }
.gc-ge__campaign-chart i:nth-child(4) { height: 58%; animation-delay: -.8s; }
.gc-ge__campaign-chart i:nth-child(5) { height: 51%; animation-delay: -1.7s; }
.gc-ge__campaign-chart i:nth-child(6) { height: 70%; animation-delay: -.2s; }
.gc-ge__campaign-chart i:nth-child(7) { height: 66%; animation-delay: -1.1s; }
.gc-ge__campaign-chart i:nth-child(8) { height: 84%; animation-delay: -.6s; }

@keyframes gc-ge-bars {
	to { filter: brightness(1.2); transform: scaleY(.9); transform-origin: bottom; }
}

.gc-ge__campaign-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	color: #b7b1bb;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
}

.gc-ge__campaign-foot i {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--gc-ge-purple), var(--gc-ge-mint));
}

.gc-ge__route {
	display: grid;
	grid-template-columns: minmax(80px, 1fr) 38px minmax(105px, 1.12fr) 38px minmax(80px, 1fr);
	align-items: center;
	flex: 1 1 auto;
	gap: 5px;
	min-height: 230px;
	padding: 34px 16px 24px;
}

.gc-ge__route-node,
.gc-ge__route-core {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 104px;
	padding: 12px 8px;
	border: 1px solid rgb(255 255 255 / 15%);
	border-radius: 2px;
	background: rgb(255 255 255 / 5%);
	text-align: center;
}

.gc-ge__route-node small,
.gc-ge__route-core small {
	color: #aaa2b1;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.gc-ge__route-node strong { margin-top: 8px; font-size: 12px; line-height: 1.25; }
.gc-ge__route-node.is-output { border-color: rgb(140 217 196 / 48%); background: rgb(140 217 196 / 9%); }

.gc-ge__route-core {
	min-height: 142px;
	border-color: rgb(179 154 255 / 70%);
	background: linear-gradient(145deg, rgb(116 65 255 / 50%), rgb(116 65 255 / 14%));
	box-shadow: 0 0 46px rgb(116 65 255 / 25%);
}

.gc-ge__route-core > span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-bottom: 9px;
	border-radius: 2px;
	background: #fff;
	color: var(--gc-ge-purple);
	font-size: 19px;
	font-weight: 850;
}

.gc-ge__route-core b { font-size: 14px; }
.gc-ge__route-core small { margin-top: 4px; color: #ded6f4; letter-spacing: .02em; text-transform: none; }

.gc-ge__connector {
	position: relative;
	height: 2px;
	overflow: hidden;
	background: rgb(255 255 255 / 19%);
}

.gc-ge__connector i {
	position: absolute;
	top: -2px;
	left: -7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gc-ge-purple-soft);
	box-shadow: 0 0 10px var(--gc-ge-purple);
	animation: gc-ge-flow 2.2s linear infinite;
}

@keyframes gc-ge-flow { to { transform: translateX(54px); } }

.gc-ge__monitor {
	margin: 0 18px 18px;
	padding: 18px;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 0;
	background: rgb(0 0 0 / 22%);
}

.gc-ge__monitor > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 16px;
}

.gc-ge__monitor > div span { color: #c8c0ce; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gc-ge__monitor > div strong { color: #fff; font-size: 11px; }

.gc-ge__monitor ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-ge__monitor li {
	display: grid;
	grid-template-columns: minmax(104px, .65fr) 1fr;
	align-items: center;
	gap: 12px;
}

.gc-ge__monitor li span { color: #aaa3af; font-size: 10px; }
.gc-ge__monitor li i { position: relative; display: block; height: 5px; overflow: hidden; background: rgb(255 255 255 / 10%); }
.gc-ge__monitor li i::after { display: block; width: var(--gc-ge-value); height: 100%; background: linear-gradient(90deg, var(--gc-ge-purple), var(--gc-ge-purple-soft)); content: ""; }

.gc-ge__visual > footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 18px;
	border-top: 1px solid rgb(255 255 255 / 10%);
	color: #aaa3af;
	font-size: 9px;
}

.gc-ge__visual > footer > span { display: inline-flex; align-items: center; gap: 8px; }
.gc-ge__visual > footer > span i { width: 5px; height: 5px; box-shadow: none; }

@media (max-width: 1120px) {
	.gc-growth-engines { padding: 80px 0; }
	.gc-ge__track { height: auto; margin-top: 64px; }

	.gc-ge__system {
		position: static;
		display: grid;
		grid-template-columns: 1fr;
		gap: 28px;
		min-height: 0;
	}

	.gc-ge__tabs {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.gc-ge__tab { grid-template-columns: 4px minmax(0, 1fr); gap: 11px; min-height: 52px; padding-right: 10px; }
	.gc-ge__tab > span { height: 32px; }
	.gc-ge__tab b { font-size: 15px; }
}

@media (max-width: 820px) {
	.gc-growth-engines { padding: 72px 0; }
	.gc-ge__heading h2 { font-size: clamp(42px, 7.4vw, 56px); }

	.gc-ge__tabs {
		display: flex;
		overflow-x: auto;
		flex-direction: row;
		margin-right: -24px;
		padding: 0 24px 8px 0;
		scrollbar-width: none;
		scroll-snap-type: x proximity;
	}

	.gc-ge__tabs::-webkit-scrollbar { display: none; }
	.gc-ge__tab { flex: 0 0 158px; scroll-snap-align: start; }

	.gc-ge__panel {
		display: block;
		min-height: 0;
		padding: 24px;
	}

	.gc-ge__panel-top { padding-top: 4px; }

	.gc-ge__panel-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.gc-ge__accordions { margin-top: 42px; }
	.gc-ge__visual { grid-column: auto; grid-row: auto; min-height: 520px; }
}

@media (max-width: 560px) {
	.gc-growth-engines { padding: 64px 0; }
	.gc-ge__eyebrow { margin-bottom: 24px; font-size: 13px; }
	.gc-ge__heading h2 { font-size: clamp(38px, 11.3vw, 44px); line-height: 1.01; }
	.gc-ge__intro { margin-top: 18px; }
	.gc-ge__intro p { font-size: 16px; }
	.gc-ge__track { margin-top: 46px; }
	.gc-ge__system { gap: 22px; }
	.gc-ge__panel { margin: 0 -4px; padding: 20px 18px; }
	.gc-ge__panel-copy h3 { font-size: 29px; }
	.gc-ge__panel-copy > span { font-size: 16px; }
	.gc-ge__accordion > button { min-height: 62px; font-size: 16px; }
	.gc-ge__accordion-content li { padding: 9px 11px; font-size: 12px; }
	.gc-ge__visual { min-height: 430px; }
	.gc-ge__scene { min-height: 336px; padding: 16px 10px 12px; }
	.gc-ge__search-query { grid-template-columns: 26px minmax(0, 1fr) 18px; padding: 9px 10px; }
	.gc-ge__search-query span { font-size: 12px; }
	.gc-ge__search-result,
	.gc-ge__ai-answer,
	.gc-ge__answer-card { padding: 13px; }
	.gc-ge__search-result h4 { font-size: 15px; }
	.gc-ge__prompt,
	.gc-ge__answer-question { width: 94%; }

	.gc-ge__visual > header {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.gc-ge__route {
		grid-template-columns: 1fr 22px 1.12fr 22px 1fr;
		min-height: 176px;
		padding: 24px 8px 16px;
	}

	.gc-ge__route-node,
	.gc-ge__route-core { min-height: 84px; padding: 8px 4px; }
	.gc-ge__route-core { min-height: 112px; }
	.gc-ge__route-core > span { width: 30px; height: 30px; font-size: 15px; }
	.gc-ge__route-node strong,
	.gc-ge__route-core b { font-size: 10px; }
	.gc-ge__route-node small,
	.gc-ge__route-core small { font-size: 7px; }
	.gc-ge__monitor { margin: 0 10px 10px; padding: 13px; }
	.gc-ge__monitor li { grid-template-columns: 98px 1fr; }
	.gc-ge__visual > footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.gc-ge__panel.is-entering,
	.gc-ge__connector i,
	.gc-ge__campaign-chart i { animation: none; }
}
