/* ==========================================================
Section: WP-PageNavi Pagination Styling
Date Added: 2026-08-09
Purpose:
Styles WP-PageNavi pagination used with the Divi Blog Module
and maintains accessible contrast with the NBC color palette.

Notes:
- Uses NBC gold #BA8544 for the current page.
- Uses black text for accessible contrast.
- Styles pagination links consistently.
- Replaces the previous blue #0070FC pagination styling.
========================================================== */

/* Pagination links and page numbers */
.wp-pagenavi a,
.wp-pagenavi span {
    color: #000000;
    background: #f1f3f5;
    font-size: 1em !important;
    line-height: 1em;
    font-weight: bold !important;
    padding: 0.45em 0.8em !important;
    border-radius: 100px;
    border: none;
    transition: all .5s;
}

/* Current page */
.wp-pagenavi span.current {
    color: #000000 !important;
    background: #BA8544 !important;
    border-radius: 100px;
}

/* Pagination links on hover */
.wp-pagenavi a:hover {
    color: #000000 !important;
    background: #BA8544 !important;
}

/* "Page X of X" text */
.wp-pagenavi .pages {
    background: none;
}

/* Remove top border and center pagination */
.wp-pagenavi {
    border-top: none;
    text-align: center;
}


/* ==========================================================
Section: Mobile Menu Icon Color
Date Added: 2026-08-09
Purpose:
Maintains the white Divi mobile hamburger menu icon.

Notes:
- Applies only to the Divi mobile menu icon.
- Preserves the existing white icon color.
========================================================== */

.mobile_menu_bar:before {
    color: #ffffff !important;
}