.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 5.625em;
}

.pagination > .page-numbers {
	margin: 1em 0.5em;
	width: 2em;
	height: 2em;
	border-radius: 50em;
	text-decoration: none;
	background-color: rgb(248, 248, 249);
	color: rgb(88, 89, 91);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	padding: 1.5em;
	transition: all ease-in-out 0.15s;
}

.pagination > .page-numbers:hover,
.pagination > .page-numbers.current {
	background-color: rgb(0, 175, 170);
	color: white;
}

.boxes {
	display: grid;
	grid-gap: 2em;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	grid-auto-flow: dense;
}

@media screen and (max-width: 800px) {
	.boxes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 500px) {
	.boxes {
		grid-template-columns: 1fr;
	}
}

.boxes .box {
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
	padding: 1em;
	min-height: 12em;
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: 0.5rem;
	justify-content: center;
}

.boxes .box .title {
	font-size: 18px;
	line-height: 20px;
	margin: 1em 0;
	padding: 0;
	text-align: center;
	font-family: MontserratBold, 'MontserratBold';
	font-weight: 700;
}

.boxes .box .author {
	text-align: center;
}

strong {
	font-family: MontserratBold, 'MontserratBold';
	font-weight: 700;
}

.bgbox {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	z-index: -1;
	border-radius: 0.5rem;
}