.wpufpr-msh-total-sites {
	color: #273272;
	border-bottom: 1px solid #ddd;
	margin-bottom: 1rem;
	padding-bottom: .2rem;
}

.wpufpr-msh-total-sites__span {
	font-weight: 700;
}

.wpufpr-msh-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fill, minmax(18.125rem, 1fr));
}

@media (min-width: 940px) and (max-width: 1279px) {
	.wpufpr-msh-grid {
		grid-template-columns: repeat(2, minmax(18.75rem, 1fr));
	}
}

.wpufpr-msh-link {
	text-decoration: none;
	color: inherit;
}

.wpufpr-msh-card__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	width: 100%;
	text-decoration: none;
	color: inherit;
	margin: 1.5rem;
}

.wpufpr-msh-card {
	display: flex;
	border: 0.0625rem solid #ddd;
	border-radius: .9rem;
	background-color: #f1f3f8;

	transition:
		transform .2s ease,
		box-shadow .2s ease,
		filter .2s ease;

	overflow: hidden;
}

.wpufpr-msh-card:hover {
	transform: translateY(-0.125rem);
	box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, .10);
	filter: brightness(0.98);
	cursor: pointer;
}

.wpufpr-msh-card__title {
	margin: 0;
	font-weight: 600;
	font-size: clamp(0.875rem, 2vw, 1rem);
	text-align: center;
	text-wrap: balance;
	color: #306CA6;
	min-height: 4.8em;
}

.wpufpr-msh-card__logo-wrapper {
	width: 12rem;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0.0625rem solid #ddd;
	border-radius: 0.9rem;
	background: var(--wpufpr-msh-theme-color);
}

.wpufpr-msh-card__logo {
	padding: 4%;
	max-width: 85%;
	max-height: 85%;
	height: auto
}

.wpufpr-msh-pagination {
	margin-top: 1rem;
}

.wpufpr-msh-pagination__link {
	text-decoration: none !important;
	padding: .25rem .5rem;
	color: #306CA6;
	border: .0625rem solid #ddd;
	border-radius: .3rem;
	background-color: #f1f3f8;
	margin: .04rem;

	transition:
		background-color .2s ease,
		border-color .2s ease,
		box-shadow .2s ease;
}

.wpufpr-msh-pagination__link:hover {
	border-color: #306CA6;
	box-shadow: 0 .125rem .375rem rgba(48, 108, 166, .15);
}

.wpufpr-msh-pagination__link.is-active {
	background-color: #306CA6;
	border-color: #306CA6;
	color: #fff;
	font-weight: 600;
}