/*
 * Motors Vehicle Detail Enhancer - Pagination divider fix 2.0.10
 *
 * Motors' native frontend stylesheet applies the unwanted divider directly
 * to .page-numbers.  Do not modify the pagination wrapper or its parents:
 * only remove the border-top from the actual .page-numbers element.
 */

/* Exact Motors target: .page-numbers { border-top: 1px solid ... } */
.page-numbers {
    border-top: 0 !important;
}

/* Keep the selector scoped to Motors listing pagination variants as well,
 * in case theme/plugin CSS has higher specificity. */
.stm_ajax_pagination .page-numbers,
.stm-ajax-pagination .page-numbers,
.stm-listings-pagination .page-numbers,
.stm_pagination .page-numbers,
.stm-pagination .page-numbers,
.stm_ajax_pagination_wrap .page-numbers,
.stm-ajax-pagination-wrap .page-numbers {
    border-top: 0 !important;
}
