.gt-reasons__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.gt-reason-card {
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(20, 85, 144, .08);
}

.gt-reason-card__image {
	height: 205px;
	background: #f4f4f4;
}

.gt-reason-card__body {
	position: relative;
	padding: 0 18px 20px;
}

.gt-reason-card .gt-icon {
	width: 48px;
	height: 48px;
	margin-top: -22px;
	margin-bottom: 18px;
	border-radius: 12px;
}

.gt-reason-card .gt-icon img {
	width: 24px;
	height: 24px;
}

.gt-reason-card h3 {
	margin: 0 0 10px;
	color: var(--gt-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.gt-reason-card p {
	min-height: 96px;
	margin-bottom: 16px;
	font-size: 12px;
}

@media (max-width: 767px) {
	.gt-reasons__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gt-reason-card__image {
		height: 190px;
	}

	.gt-reason-card .gt-icon {
		width: 42px;
		height: 42px;
		margin-top: -20px;
	}

	.gt-reason-card .gt-icon img {
		width: 20px;
		height: 20px;
	}

	.gt-reason-card p {
		min-height: 0;
	}
}
