.mpnn-navigation {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	margin: 2.5rem 0;
}

.mpnn-link {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(132px, 100%);
	min-height: 40px;
	padding: 0 1rem;
	background: #000;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	color: #fff;
	font-family: inherit;
	text-decoration: none;
}

.mpnn-link:hover,
.mpnn-link:focus {
	color: #fff;
	text-decoration: none;
}

.mpnn-link:focus-visible {
	outline: 3px solid #000;
	outline-offset: 3px;
}

.mpnn-link--previous {
	justify-self: start;
	clip-path: polygon(7% 0, 100% 0, 100% 100%, 7% 100%, 0 50%);
}

.mpnn-link--next {
	grid-column: 2;
	justify-self: end;
	clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%);
	text-align: right;
}

.mpnn-link__direction {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.mpnn-link__title {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.2;
}

.mpnn-admin-notice {
	margin: 1rem 0;
	padding: 0.75rem 1rem;
	border-left: 4px solid #000;
	background: #f6f7f7;
	color: #1d2327;
	font-size: 0.9375rem;
	line-height: 1.4;
}

@media (max-width: 600px) {
	.mpnn-navigation {
		grid-template-columns: 1fr;
	}

	.mpnn-link {
		width: min(132px, 100%);
		min-height: 40px;
	}

	.mpnn-link--previous,
	.mpnn-link--next {
		grid-column: 1;
	}
}
