.gsm-related-services,
.gsm-related-services * {
	box-sizing: border-box;
}

.gsm-related-services {
	max-width: 1160px;
	margin: clamp(44px, 7vw, 84px) auto;
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid #e4e7eb;
	border-radius: 24px;
	background: #f7f8fa;
	box-shadow: 0 18px 55px rgba(22, 28, 36, .06);
	color: #202631;
}

.gsm-related-services__head > span {
	display: block;
	margin-bottom: 8px;
	color: #b60000;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .14em;
}

.gsm-related-services__head h2 {
	margin: 0 0 24px;
	color: #202631;
	font-size: clamp(25px, 3vw, 35px);
	line-height: 1.15;
}

.gsm-related-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.gsm-related-services__card {
	position: relative;
	display: flex;
	min-height: 116px;
	flex-direction: column;
	justify-content: center;
	padding: 19px 52px 19px 20px;
	border: 1px solid #e1e5e9;
	border-radius: 15px;
	background: #fff;
	color: #202631 !important;
	text-decoration: none !important;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gsm-related-services__card:hover,
.gsm-related-services__card:focus-visible {
	transform: translateY(-2px);
	border-color: #b9c0c8;
	box-shadow: 0 13px 30px rgba(22, 28, 36, .09);
}

.gsm-related-services__card strong {
	display: block;
	color: inherit;
	font-size: 17px;
	line-height: 1.25;
}

.gsm-related-services__card span {
	display: block;
	margin-top: 6px;
	color: #69717d;
	font-size: 13px;
	line-height: 1.45;
}

.gsm-related-services__card b {
	position: absolute;
	right: 18px;
	top: 50%;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: #f0f2f4;
	color: #202631;
	font-size: 17px;
	transform: translateY(-50%);
}

.gsm-related-services__card--cta {
	border-color: #202631;
	background: #202631;
	color: #fff !important;
}

.gsm-related-services__card--cta strong,
.gsm-related-services__card--cta span {
	color: #fff;
}

.gsm-related-services__card--cta span {
	opacity: .78;
}

.gsm-related-services__card--cta b {
	background: #fff;
	color: #b60000;
}

@media (max-width: 700px) {
	.gsm-related-services {
		margin: 34px 14px;
		padding: 23px 17px;
		border-radius: 18px;
	}

	.gsm-related-services__grid {
		grid-template-columns: 1fr;
	}

	.gsm-related-services__card {
		min-height: 106px;
	}

	.gsm-related-services__head h2 {
		font-size: 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gsm-related-services__card {
		transition: none;
	}
}
