.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: 1rem;

	width: 100%;

	text-decoration: none;
	color: inherit;
	margin: 1.5rem;
}

.wpufpr-msh-card {
	display: flex;
	border: 0.0625rem solid #ddd;
	border-radius: .5rem;
	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);
	justify-content: center;
	text-align: center;
	text-wrap: balance;
	color: #306CA6;
	min-height: 3.3em;
}

.wpufpr-msh-card__logo-wrapper {
	width: 12.5rem;
	aspect-ratio: 1;

	display: flex;
	justify-content: center;
	align-items: center;

	border: 0.0625rem solid #ddd;
	border-radius: .5rem;

	margin-bottom: 5%;

	background: var(--wpufpr-msh-theme-color);
}

.wpufpr-msh-card__logo {
	padding: 4%;
	display: block;

	max-width: 90%;
	max-height: 90%;

	width: auto;
	height: auto;

	object-fit: contain;
}

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

.wpufpr-msh-pagination__link {
	text-decoration: none
}

.wpufpr-msh-pagination__link:hover {
	border-color: #273272;
	font-weight: 700;
	transform: scale(1.08);
}

.wpufpr-msh-pagination__link.is-active {
	border-color: #273272;
	font-weight: 700;
}