.wz-ggt-section {
	--wz-ggt-accent: #b51f3e;
	--wz-ggt-bg: #faf7f8;
	--wz-ggt-text: #202124;
	--wz-ggt-radius: 14px;
	box-sizing: border-box;
	clear: both;
	color: var(--wz-ggt-text);
	font-family: inherit;
	margin: 30px 0 34px;
	width: 100%;
}

.wz-ggt-section *,
.wz-ggt-section *::before,
.wz-ggt-section *::after {
	box-sizing: border-box;
}

.wz-ggt-header {
	margin: 0 auto 18px;
	max-width: 780px;
	text-align: center;
}

.wz-ggt-eyebrow {
	color: var(--wz-ggt-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
	line-height: 1.4;
	margin-bottom: 7px;
}

.wz-ggt-heading {
	color: var(--wz-ggt-text);
	font-size: clamp(22px, 2.1vw, 30px);
	font-weight: 750;
	letter-spacing: -.025em;
	line-height: 1.2;
	margin: 0;
}

.wz-ggt-intro {
	color: color-mix(in srgb, var(--wz-ggt-text) 70%, transparent);
	font-size: 14px;
	line-height: 1.65;
	margin: 8px auto 0;
	max-width: 660px;
}

@supports not (color: color-mix(in srgb, black, white)) {
	.wz-ggt-intro { opacity: .72; }
}

.wz-ggt-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
}

.wz-ggt-card {
	align-items: flex-start;
	background: var(--wz-ggt-bg);
	border: 1px solid color-mix(in srgb, var(--wz-ggt-accent) 12%, #d9d9df);
	border-radius: var(--wz-ggt-radius);
	box-shadow: 0 6px 20px rgba(27, 25, 31, .055);
	display: grid;
	gap: 12px;
	grid-template-columns: 44px minmax(0, 1fr) 20px;
	margin: 0;
	min-height: 132px;
	overflow: hidden;
	padding: 19px 17px;
	position: relative;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

@supports not (color: color-mix(in srgb, black, white)) {
	.wz-ggt-card { border-color: rgba(181, 31, 62, .14); }
}

.wz-ggt-card::before {
	background: var(--wz-ggt-accent);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.wz-ggt-card:hover {
	border-color: color-mix(in srgb, var(--wz-ggt-accent) 28%, #d9d9df);
	box-shadow: 0 10px 28px rgba(27, 25, 31, .09);
	transform: translateY(-2px);
}

.wz-ggt-icon {
	align-items: center;
	background: color-mix(in srgb, var(--wz-ggt-accent) 10%, white);
	border-radius: 12px;
	color: var(--wz-ggt-accent);
	display: flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

@supports not (color: color-mix(in srgb, black, white)) {
	.wz-ggt-icon { background: #f7e9ed; }
}

.wz-ggt-icon svg {
	fill: none;
	height: 25px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	width: 25px;
}

.wz-ggt-content h3 {
	color: var(--wz-ggt-text);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.35;
	margin: 1px 0 5px;
}

.wz-ggt-content p {
	color: var(--wz-ggt-text);
	font-size: 13px;
	line-height: 1.58;
	margin: 0;
	opacity: .72;
}

.wz-ggt-check {
	align-items: center;
	background: var(--wz-ggt-accent);
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 19px;
	justify-content: center;
	margin-top: 2px;
	width: 19px;
}

.wz-ggt-check svg {
	fill: none;
	height: 13px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
	width: 13px;
}

.wz-ggt-section--compact .wz-ggt-header {
	display: none;
}

.wz-ggt-section--compact .wz-ggt-card {
	min-height: 108px;
	padding-bottom: 14px;
	padding-top: 16px;
}

@media (max-width: 960px) {
	.wz-ggt-grid {
		grid-template-columns: 1fr;
	}

	.wz-ggt-card {
		min-height: 0;
	}
}

@media (max-width: 575px) {
	.wz-ggt-section {
		margin: 23px 0 27px;
	}

	.wz-ggt-header {
		margin-bottom: 14px;
		padding: 0 8px;
	}

	.wz-ggt-heading {
		font-size: 22px;
	}

	.wz-ggt-intro {
		font-size: 13px;
	}

	.wz-ggt-grid {
		gap: 9px;
	}

	.wz-ggt-card {
		gap: 11px;
		grid-template-columns: 40px minmax(0, 1fr) 18px;
		padding: 16px 14px;
	}

	.wz-ggt-icon {
		border-radius: 10px;
		height: 40px;
		width: 40px;
	}

	.wz-ggt-icon svg {
		height: 23px;
		width: 23px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wz-ggt-card { transition: none; }
	.wz-ggt-card:hover { transform: none; }
}
