/**
 * Post Feed Numbered Pagination (VT)
 *
 * Defaults only: every property here is also exposed as an Elementor control
 * under Style -> "Numbered pagination (VT)", and per-post Elementor CSS
 * loads after this file, so those controls always win.
 */

.vt-np-pages {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vt-np-pages li {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vt-np-pages li > * {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 40px;
	height: 40px;
	padding: 0 8px;
	border: 1px solid transparent;
	border-radius: var(--ts-radius-2, 8px);
	background: transparent;
	color: var(--ts-shade-2);
	line-height: 1;
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.vt-np-pages li:not(.vt-np-current) a:hover {
	border-color: var(--ts-shade-3);
	color: var(--ts-shade-1);
}

.vt-np-pages li.vt-np-current > * {
	background: var(--ts-accent-1);
	border-color: var(--ts-accent-1);
	color: #fff;
	cursor: default;
}

.vt-np-pages li.vt-np-gap > * {
	min-width: 0;
	padding: 0 2px;
	opacity: .6;
	cursor: default;
}

/* Numbers only: centre them, since Voxel's default pushes the two (now hidden)
   arrow buttons to opposite ends. */
.vt-np-no-arrows .feed-pagination {
	justify-content: center;
}

.vt-np-no-arrows .feed-pagination .ts-load-prev,
.vt-np-no-arrows .feed-pagination .ts-load-next {
	display: none;
}
