/* POSTS PER PAGE CONTROLS */
.posts-per-page-controls {
	margin-bottom: 20px;
	font-family: "Urbanist", sans-serif;
}

.posts-per-page-controls .posts-per-page-label {
	margin: 0;
	color: #00274c;
	font-weight: 500;
	font-size: 14px;
}

.posts-per-page-controls .posts-per-page-buttons {
	gap: 10px;
}

/* Override WordPress button defaults */
.posts-per-page-controls .wp-block-button {
	margin: 0;
}

.posts-per-page-controls .wp-block-button__link {
	padding: 8px 16px;
	background-color: #fff;
	color: #00274c;
	border: 1px solid #0064cf;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	text-decoration: none;
}

/* Outline style (non-active) */
.posts-per-page-controls .wp-block-button.is-style-outline .wp-block-button__link {
	background-color: #fff;
	color: #00274c;
	border: 1px solid #0064cf;
}

.posts-per-page-controls .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: #eef6ff;
	border-color: #00274c;
}

/* Fill style (active) */
.posts-per-page-controls .wp-block-button.is-style-fill .wp-block-button__link,
.posts-per-page-controls .wp-block-button.active .wp-block-button__link {
	background-color: #00274c;
	color: #fff;
	border-color: #00274c;
}

@media (max-width: 700px) {
	.posts-per-page-controls {
		flex-wrap: wrap;
	}
}