/* ===== Font Imports ===== */
/* Google Fonts are enqueued via functions.php wp_enqueue_style */

/* ===== Cookie / Accent Font ===== */
.font-accent {
    font-family: 'Cookie', cursive !important;
}

/* ===== Serif Heading Font (Libre Baskerville) ===== */
.font-serif {
    font-family: 'Libre Baskerville', Georgia, serif !important;
}

/* ===== Poppins Body / Subtitle Font ===== */
.font-poppins {
    font-family: 'Poppins', sans-serif !important;
}

/* ===== WordPress Pagination Styling ===== */
.wp-pagination .page-numbers {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.wp-pagination .page-numbers li {
    list-style: none;
}

.wp-pagination .page-numbers a,
.wp-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    color: #6b7280;
}

.wp-pagination .page-numbers a:hover {
    background-color: #E6B59E;
    color: #fff;
    border-color: #E6B59E;
}

.wp-pagination .page-numbers .current {
    background-color: #E6B59E;
    color: #fff;
    border-color: #E6B59E;
}
