.mugpf-wrapper,
.mugpf-wrapper * {
	box-sizing: border-box;
}

.mugpf-wrapper {
	width: 100%;
}

.mugpf-heading {
	margin: 0 0 14px;
}

.mugpf-grid {
	--mugpf-columns: 3;
	--mugpf-mobile-card-width: 78%;
	display: grid;
	grid-template-columns: repeat(var(--mugpf-columns), minmax(0, 1fr));
	column-gap: 8px;
	row-gap: 8px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.mugpf-item {
	display: flex;
	min-width: 0;
	min-height: 69px;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	padding: 13px 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 9px;
	text-align: center;
	transition-property: transform, background-color, border-color, box-shadow;
	transition-duration: .2s;
	transition-timing-function: ease;
}

.mugpf-label,
.mugpf-value {
	display: block;
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

.mugpf-label {
	margin-bottom: 5px;
	color: #a5a9af;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

.mugpf-value {
	color: #111827;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.mugpf-empty {
	padding: 14px;
	color: #667085;
	background: #f8fafc;
	border: 1px dashed #d0d5dd;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.7;
}

@media (max-width: 767px) {
	.mugpf-grid.mugpf-mobile-scroll {
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.mugpf-grid.mugpf-mobile-scroll > .mugpf-item {
		flex: 0 0 var(--mugpf-mobile-card-width);
		scroll-snap-align: start;
	}

	.mugpf-grid.mugpf-hide-scrollbar {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.mugpf-grid.mugpf-hide-scrollbar::-webkit-scrollbar {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mugpf-item {
		transition-duration: 0s !important;
	}
}
