/* Story Pagination Buttons */
.spb-story-pagination {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	clear: both;
	margin: 26px 0;
	padding: 0;
	font-family: inherit;
}

.spb-pagination-label {
	display: inline-flex;
	align-items: center;
	margin-right: 4px;
	color: #111111;
	font-size: 15px;
	font-weight: 400;
	line-height: 40px;
}

.spb-story-pagination .post-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0;
	padding: 0 12px;
	box-sizing: border-box;
	background: #ffffff;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	box-shadow: none;
	color: #222222;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.spb-story-pagination .post-page-numbers.current {
	background: #ef4b3f;
	border-color: #ef4b3f;
	color: #ffffff;
}

.spb-story-pagination a.post-page-numbers:hover,
.spb-story-pagination a.post-page-numbers:focus {
	background: #f5f5f5;
	border-color: #bfbfbf;
	color: #222222;
	text-decoration: none;
}

.spb-story-pagination a.post-page-numbers:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

@media (max-width: 480px) {
	.spb-story-pagination {
		gap: 6px;
	}

	.spb-story-pagination .post-page-numbers {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
	}

	.spb-pagination-label {
		line-height: 38px;
	}
}
