body.gi-case-active {
	background: #eef3f8;
}

.gi-case-page {
	--gi-case-ink: #06111f;
	--gi-case-navy: #06172d;
	--gi-case-blue: #123f83;
	--gi-case-mid: #1f5bae;
	--gi-case-lime: #25ff14;
	--gi-case-teal: #13c6a3;
	--gi-case-muted: #52627a;
	color: var(--gi-case-ink);
	background: #eef3f8;
	font-family: inherit;
}

.gi-case-hero,
.gi-case-detail-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(2, 17, 33, .98) 0%, rgba(8, 38, 82, .92) 48%, rgba(20, 82, 163, .76) 100%),
		var(--gi-case-hero-img) center/cover no-repeat;
	color: #fff;
}

.gi-case-hero::before,
.gi-case-detail-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 58px 58px;
	mask-image: linear-gradient(110deg, transparent, #000 18%, #000 68%, transparent);
	pointer-events: none;
}

.gi-case-hero::after,
.gi-case-detail-hero::after {
	content: "";
	position: absolute;
	inset: auto -10% -42% 44%;
	height: 420px;
	border: 1px solid rgba(37, 255, 20, .2);
	border-radius: 999px;
	background: radial-gradient(circle, rgba(37, 255, 20, .16), transparent 58%);
	pointer-events: none;
}

.gi-case-hero-inner,
.gi-case-detail-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 42px;
	align-items: center;
}

.gi-case-hero-inner {
	grid-template-columns: minmax(0, 1fr);
	min-height: 545px;
	padding-top: 124px;
	padding-bottom: 76px;
}

.gi-case-hero-copy {
	max-width: 960px;
}

.gi-case-hero h1,
.gi-case-detail-hero h1 {
	margin: 14px 0 0;
	color: #fff;
	font-size: clamp(48px, 5.5vw, 86px);
	line-height: 1.05;
	letter-spacing: 0;
	font-weight: 950;
}

.gi-case-detail-hero h1 {
	font-size: clamp(42px, 4.8vw, 72px);
	line-height: 1.08;
}

.gi-case-hero-copy p,
.gi-case-detail-copy p {
	max-width: 780px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, .86);
	font-size: 21px;
	line-height: 1.58;
	font-weight: 650;
}

.gi-case-index {
	padding: 78px 0 98px;
}

.gi-case-index-head {
	display: grid;
	grid-template-columns: minmax(0, 900px);
	margin-bottom: 32px;
}

.gi-case-index-head h2 {
	margin: 12px 0 0;
	color: var(--gi-case-ink);
	font-size: clamp(36px, 4.4vw, 64px);
	line-height: 1.06;
	font-weight: 950;
	letter-spacing: 0;
}

.gi-case-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 20px;
}

.gi-case-card {
	display: flex;
	grid-column: span 2;
	min-height: 520px;
	flex-direction: column;
	gap: 18px;
	padding: 18px;
	border: 1px solid #d4dfec;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 24px 58px rgba(6, 23, 45, .1);
	color: var(--gi-case-ink);
	text-decoration: none;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.gi-case-card:nth-child(1),
.gi-case-card:nth-child(2) {
	grid-column: span 3;
}

.gi-case-card:hover {
	transform: translateY(-5px);
	border-color: rgba(37, 255, 20, .78);
	box-shadow: 0 34px 74px rgba(6, 23, 45, .16);
}

.gi-case-card-visual {
	position: relative;
	min-height: 212px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(3, 16, 31, .88), rgba(18, 63, 131, .5)),
		var(--gi-case-card-img) center/cover no-repeat;
}

.gi-case-card-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: .55;
}

.gi-case-card-visual > span {
	position: absolute;
	z-index: 1;
	top: 18px;
	left: 18px;
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--gi-case-lime);
	color: #06172d;
}

.gi-case-card-visual svg {
	width: 25px;
	height: 25px;
}

.gi-case-card-visual div {
	position: absolute;
	z-index: 1;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
}

.gi-case-card-visual b {
	color: rgba(255, 255, 255, .92);
	font-size: 58px;
	line-height: .9;
}

.gi-case-card-visual em {
	max-width: 220px;
	color: var(--gi-case-lime);
	font-size: 12px;
	font-style: normal;
	font-weight: 950;
	line-height: 1.25;
	text-align: right;
	text-transform: uppercase;
}

.gi-case-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--gi-case-muted);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.gi-case-card-top span,
.gi-case-card-top b {
	min-width: 0;
	font-weight: 900;
}

.gi-case-card-top span {
	color: #0f4d9e;
}

.gi-case-card h2 {
	margin: 0;
	color: var(--gi-case-ink);
	font-size: 29px;
	line-height: 1.12;
	font-weight: 950;
	letter-spacing: 0;
}

.gi-case-card p {
	margin: 0;
	color: #4e5f77;
	font-size: 15px;
	line-height: 1.62;
	font-weight: 650;
}

.gi-case-card-shift {
	display: grid;
	gap: 8px;
	margin-top: auto;
}

.gi-case-card-shift span {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	border-radius: 8px;
	background: #f0f5fb;
	color: #182a45;
	font-size: 13px;
	line-height: 1.32;
	font-weight: 800;
}

.gi-case-card-shift b {
	color: #0f4d9e;
	font-size: 10px;
	text-transform: uppercase;
}

.gi-case-card > em {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: 2px;
	color: #0c4da1;
	font-size: 12px;
	font-style: normal;
	font-weight: 950;
	text-transform: uppercase;
}

.gi-case-detail-hero-grid {
	grid-template-columns: minmax(0, 1fr) 430px;
	min-height: 580px;
	padding-top: 124px;
	padding-bottom: 76px;
}

.gi-case-back {
	display: inline-flex;
	margin-bottom: 24px;
	color: rgba(255, 255, 255, .78);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.gi-case-hero-visual {
	position: relative;
	min-height: 450px;
	padding: 18px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 8px;
	background: rgba(4, 20, 39, .42);
	box-shadow: 0 34px 84px rgba(0, 0, 0, .32);
	backdrop-filter: blur(16px);
}

.gi-case-visual-image {
	height: 250px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(4, 16, 31, .7), rgba(18, 63, 131, .28)),
		var(--gi-case-visual-img) center/cover no-repeat;
}

.gi-case-visual-panel {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	margin: -40px 16px 0;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 8px;
	background: rgba(5, 21, 41, .92);
}

.gi-case-visual-panel span {
	display: inline-flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--gi-case-lime);
	color: #06172d;
}

.gi-case-visual-panel svg {
	width: 30px;
	height: 30px;
}

.gi-case-visual-panel b,
.gi-case-visual-panel em {
	display: block;
	font-style: normal;
}

.gi-case-visual-panel b {
	color: #fff;
	font-size: 20px;
	line-height: 1.15;
	font-weight: 950;
}

.gi-case-visual-panel em {
	margin-top: 6px;
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
	font-weight: 800;
}

.gi-case-visual-flow {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 10px 12px;
	margin: 18px 16px 0;
}

.gi-case-visual-flow i,
.gi-case-visual-flow span {
	display: flex;
	align-items: center;
	min-height: 38px;
}

.gi-case-visual-flow i {
	justify-content: center;
	border-radius: 8px;
	background: rgba(37, 255, 20, .14);
	color: var(--gi-case-lime);
	font-size: 11px;
	font-style: normal;
	font-weight: 950;
}

.gi-case-visual-flow span {
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.gi-case-profile-strip {
	position: relative;
	z-index: 3;
	margin-top: -34px;
}

.gi-case-detail-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 14px;
	border: 1px solid #d5e2f0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 22px 52px rgba(7, 25, 49, .12);
}

.gi-case-detail-meta span {
	display: grid;
	gap: 5px;
	padding: 16px;
	border-radius: 8px;
	background: #f2f6fb;
	color: #13243c;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 750;
}

.gi-case-detail-meta b {
	color: #0d4d9e;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 950;
	text-transform: uppercase;
}

.gi-case-detail-body {
	padding: 70px 0 98px;
}

.gi-case-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	gap: 28px;
	align-items: start;
}

.gi-case-story-main {
	display: grid;
	gap: 18px;
	counter-reset: case-section;
}

.gi-case-story-section,
.gi-case-comparison,
.gi-case-aside-card,
.gi-case-aside-rhythm {
	border: 1px solid #d6e1ef;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(8, 26, 52, .07);
}

.gi-case-story-section {
	position: relative;
	padding: 30px 30px 30px 92px;
	overflow: hidden;
	counter-increment: case-section;
}

.gi-case-story-section::before {
	content: counter(case-section, decimal-leading-zero);
	position: absolute;
	top: 30px;
	left: 30px;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 8px;
	background: #eaf2fd;
	color: #0d4d9e;
	font-size: 14px;
	font-weight: 950;
}

.gi-case-story-section h2,
.gi-case-comparison-head h2,
.gi-case-aside-card h2 {
	margin: 0 0 16px;
	color: var(--gi-case-ink);
	font-size: 30px;
	line-height: 1.14;
	font-weight: 950;
	letter-spacing: 0;
}

.gi-case-story-section p {
	margin: 0 0 16px;
	color: #20324c;
	font-size: 18px;
	line-height: 1.72;
	font-weight: 560;
}

.gi-case-story-section p:last-child {
	margin-bottom: 0;
}

.gi-case-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gi-case-story-section p + .gi-case-list {
	margin-top: 18px;
}

.gi-case-list li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 11px 0;
	border-top: 1px solid #e5edf7;
	color: #152744;
	font-size: 16px;
	line-height: 1.58;
	font-weight: 650;
}

.gi-case-list li:first-child {
	border-top: 0;
	padding-top: 0;
}

.gi-case-list svg {
	width: 18px;
	height: 18px;
	margin-top: 4px;
	color: #0c56ad;
}

.gi-case-list strong {
	color: #06172d;
	font-weight: 950;
}

.gi-case-comparison {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
}

.gi-case-comparison-head {
	grid-column: 1 / -1;
	padding: 28px 30px 8px;
	background: #06172d;
}

.gi-case-comparison-head h2 {
	max-width: 760px;
	color: #fff;
}

.gi-case-compare-col {
	display: grid;
	align-content: start;
	gap: 10px;
	padding: 24px 30px 30px;
}

.gi-case-compare-col.is-before {
	background: linear-gradient(180deg, #fff8f3, #fff);
	border-right: 1px solid #d6e1ef;
}

.gi-case-compare-col.is-after {
	background: linear-gradient(180deg, #effff2, #fff);
}

.gi-case-compare-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.gi-case-compare-label span {
	width: 4px;
	height: 34px;
	border-radius: 999px;
	background: #f26b1d;
}

.is-after .gi-case-compare-label span {
	background: var(--gi-case-teal);
}

.gi-case-compare-label h3 {
	margin: 0;
	color: var(--gi-case-ink);
	font-size: 28px;
	font-weight: 950;
	line-height: 1;
}

.gi-case-compare-row {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 58px;
	padding: 12px;
	border: 1px solid #dce6f2;
	border-radius: 8px;
	background: rgba(255, 255, 255, .74);
}

.gi-case-compare-row b {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 999px;
	background: #fff2e9;
	color: #c75318;
	font-size: 11px;
	font-weight: 950;
}

.is-after .gi-case-compare-row b {
	background: #defbe7;
	color: #0a8c52;
}

.gi-case-compare-row span {
	color: #152744;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 800;
}

.gi-case-story-aside {
	position: sticky;
	top: 92px;
	display: grid;
	gap: 16px;
}

.gi-case-aside-card {
	padding: 24px;
	background:
		linear-gradient(160deg, rgba(6, 23, 45, .96), rgba(18, 63, 131, .92)),
		url("../img/team-finance.jpg") center/cover no-repeat;
	color: #fff;
}

.gi-case-aside-card span {
	display: inline-flex;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--gi-case-lime);
	color: #06172d;
}

.gi-case-aside-card svg {
	width: 28px;
	height: 28px;
}

.gi-case-aside-card h2 {
	margin-top: 18px;
	color: #fff;
}

.gi-case-aside-card p {
	margin: 0;
	color: rgba(255, 255, 255, .84);
	font-size: 15px;
	line-height: 1.55;
	font-weight: 750;
}

.gi-case-aside-rhythm {
	display: grid;
	gap: 10px;
	padding: 16px;
	background: #fff;
}

.gi-case-aside-rhythm span {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	background: #f1f6fc;
	color: #172a46;
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.gi-case-aside-rhythm b {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 999px;
	background: #0d4d9e;
	color: #fff;
	font-size: 11px;
}

@media (max-width: 1120px) {
	.gi-case-hero-inner,
	.gi-case-detail-hero-grid,
	.gi-case-story-grid {
		grid-template-columns: 1fr;
	}

	.gi-case-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gi-case-card,
	.gi-case-card:nth-child(1),
	.gi-case-card:nth-child(2) {
		grid-column: auto;
	}

	.gi-case-story-aside {
		position: static;
	}
}

@media (max-width: 760px) {
	.gi-case-hero-inner,
	.gi-case-detail-hero-grid {
		min-height: auto;
		padding-top: 98px;
		padding-bottom: 52px;
	}

	.gi-case-hero h1,
	.gi-case-detail-hero h1 {
		font-size: clamp(38px, 12vw, 54px);
		line-height: 1.05;
	}

	.gi-case-hero-copy p,
	.gi-case-detail-copy p {
		font-size: 17px;
		line-height: 1.62;
	}

	.gi-case-grid,
	.gi-case-detail-meta,
	.gi-case-comparison {
		grid-template-columns: 1fr;
	}

	.gi-case-index,
	.gi-case-detail-body {
		padding: 50px 0 64px;
	}

	.gi-case-index-head h2 {
		font-size: 34px;
	}

	.gi-case-card {
		min-height: auto;
	}

	.gi-case-card-visual,
	.gi-case-visual-image {
		min-height: 190px;
	}

	.gi-case-hero-visual {
		min-height: auto;
	}

	.gi-case-profile-strip {
		margin-top: 0;
		padding-top: 18px;
		background: #eef3f8;
	}

	.gi-case-story-section {
		padding: 76px 22px 22px;
	}

	.gi-case-story-section::before {
		top: 22px;
		left: 22px;
	}

	.gi-case-story-section h2,
	.gi-case-comparison-head h2,
	.gi-case-aside-card h2 {
		font-size: 25px;
	}

	.gi-case-story-section p,
	.gi-case-list li {
		font-size: 15px;
		line-height: 1.62;
	}

	.gi-case-comparison-head,
	.gi-case-compare-col {
		padding-left: 22px;
		padding-right: 22px;
	}

	.gi-case-compare-col.is-before {
		border-right: 0;
		border-bottom: 1px solid #d6e1ef;
	}
}


/* Global Insights Header Logo */

.gi-logo.gi-logo-image {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	text-decoration: none;
	line-height: 0;
}

.gi-logo.gi-logo-image img {
	display: block;
	width: auto;
	height: 64px;
	max-width: 245px;
	object-fit: contain;
	object-position: left center;
}

/* Tablet */
@media (max-width: 1200px) {
	.gi-logo.gi-logo-image img {
		height: 56px;
		max-width: 215px;
	}
}

/* Mobile navigation */
@media (max-width: 991px) {
	.gi-logo.gi-logo-image img {
		height: 54px;
		max-width: 210px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.gi-logo.gi-logo-image img {
		height: 48px;
		max-width: 185px;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.gi-logo.gi-logo-image img {
		height: 43px;
		max-width: 165px;
	}
}
