.recent-links .links-archive {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1140px;
	margin: 0 auto;
}
.recent-links .links-archive article {
	width: 166px;
	margin: 0 10px 13px;
}
.recent-links .links-archive article img {
	aspect-ratio: 9.3 / 12;
	object-fit: cover;
	object-position: center;
	border: 1px solid black;
	/*transition: all 0.5s;*/
}
.recent-links .links-archive article:hover img {
	filter: brightness(50%);
}
.recent-links .pagination {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	background: white;
	text-align: center;
	padding: 25px 0;
	margin-top: 77px;
	font-size: 18px;
}
.recent-links .pagination a {
	text-decoration: none;
	margin: 0 5px;
}
.recent-links .title {
	text-align: center;
	font-family: 'Swear Display';
	font-size: 40px;
	padding: 51px 0 45px;
}
@media all and (max-width:550px) {
	.recent-links .title {
		font-size:35px;
	}
	.recent-links .links-archive article {
		width: 27%;
		margin: 0 7px 6px;
	}
	.recent-links .pagination {
		text-align: center;
		padding: 16px 0;
		margin-top: 35px;
		font-size: 16px;
	}
}