.procedure-snapshot { padding: var(--section-padding) 0; background: var(--clr-bg-grey); }
.procedure-snapshot__head { max-width: 47.5rem; margin-bottom: 2rem; }
.procedure-snapshot__head h2 {
	border-bottom: 2px solid var(--clr-dark-blue);
	padding-bottom: 0.875rem;
	margin-bottom: 1.125rem;
}
.procedure-snapshot__intro { font-size: var(--fs-body); max-width: 45rem; }
.procedure-snapshot__intro p:last-child { margin-bottom: 0; }

.procedure-snapshot__grid {
	display: grid;
	gap: 0.875rem;
	margin-top: 2.125rem;
}
.procedure-snapshot__grid--one   { grid-template-columns: 1fr; }
.procedure-snapshot__grid--two   { grid-template-columns: repeat(2, 1fr); }
.procedure-snapshot__grid--three { grid-template-columns: repeat(3, 1fr); }
.procedure-snapshot__grid--four  { grid-template-columns: repeat(4, 1fr); }

.procedure-snapshot__card {
	background: var(--clr-white);
	border: 1px solid rgba(14,37,90,.11);
	border-radius: var(--radius-lg);
	box-shadow: 0 1px 2px rgba(0,0,0,.04);
	padding: 1.375rem;
	min-height: 8rem;
}
.procedure-snapshot__icon {
	width: 2.625rem;
	height: 2.625rem;
	color: var(--clr-dark-blue);
	margin-bottom: 1rem;
}
.procedure-snapshot__icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.procedure-snapshot__card span {
	display: block;
	color: var(--clr-dark-blue);
	font-size: var(--fs-snapshot-label);
	font-style: italic;
	font-weight: var(--fw-bold);
	margin-bottom: 0.5rem;
}
.procedure-snapshot__card strong {
	color: var(--clr-text-body);
	font-size: var(--fs-snapshot-value);
	line-height: 1.35;
}

@media (max-width: 1023px) {
	.procedure-snapshot__grid--three,
	.procedure-snapshot__grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
	.procedure-snapshot { padding: var(--section-padding-mobile) 0; }
	.procedure-snapshot__head { margin-bottom: 1.5rem; }
	.procedure-snapshot__grid--two,
	.procedure-snapshot__grid--three,
	.procedure-snapshot__grid--four { grid-template-columns: 1fr; }
}
