/* ===== 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;
}

/* ===== Rich Editorial Content Typography (.prose-custom) ===== */
.prose-custom p {
    font-family: 'Poppins', sans-serif;
    color: #4b5563;
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.prose-custom p:first-of-type {
    font-size: 1.15rem;
    color: #374151;
    font-weight: 400;
    line-height: 1.8;
}

.prose-custom h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.prose-custom h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.35;
}

.prose-custom ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1.75rem;
}

.prose-custom ul li {
    position: relative;
    padding-left: 1.875rem;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.prose-custom ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fee2e2;
    color: #ef4444;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.prose-custom blockquote {
    border-left: 4px solid #f87171;
    background-color: #fef2f2;
    padding: 1.25rem 1.5rem;
    border-radius: 0 1rem 1rem 0;
    margin: 1.75rem 0;
    font-style: italic;
    color: #374151;
}

.prose-custom blockquote p {
    margin-bottom: 0 !important;
    font-size: 1.05rem !important;
    color: #374151 !important;
}

.prose-custom strong {
    color: #111827;
    font-weight: 600;
}

