/* ---------------------------------------- 
 *
 *	Pagination
 *
 * ---------------------------------------- */
 .manifesto-pagination {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 10px;
	grid-template-areas: 'previous main next';
	margin-top: 60px;
	border-top: 2px solid var(--brand-black);
	padding-top: 20px;
}
.manifesto-pagination a {
	color: var(--brand-orange);
}
.manifesto-pagination a:hover {
	text-decoration: underline;
}
.manifesto-pagination .previous {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	grid-area: previous;
	justify-self: start;
	line-height: 20px; /* 125% */
	text-align: left;
}
.manifesto-pagination .main {
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	grid-area: main;
	justify-self: center;
	line-height: 1.2;
	text-transform: uppercase;
}
.manifesto-pagination .next {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	grid-area: next;
	justify-self: end;
	line-height: 20px; /* 125% */
	text-align: right;
}

.manifesto-pagination .wp-block-buttons > .wp-block-button > a.wp-block-button__link {
	min-width: auto !important;
}


/* 
 *
 *	MOBILE
 *
 */
@media screen and (max-width: 768px) {

	.manifesto-pagination {
		margin-bottom: 80px;
		margin-top: 35px;
		grid-template-columns: 1fr auto 1fr;
	}	

	.manifesto-pagination .wp-block-buttons {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	.manifesto-pagination .wp-block-buttons > .wp-block-button > a.wp-block-button__link {
		font-size: 16px !important;
	}

}