/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 02 2025 | 07:38:31 */
/* ------------------------------------ */
/* 1. HIGHLIGHT THE "READ MORE" BUTTON */
/* Targets the block wrapper for background and padding */
/* ------------------------------------ */

body .wp-block-read-more {
    /* Required to make it look like a button */
    display: inline-block !important; 
    padding: 10px 18px !important;
    margin-top: 15px !important; 
    
    /* Primary Black Styling */
    background-color: #000000 !important;
    border: 2px solid #000000 !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important; /* Important for consistency */
    
    transition: all 0.3s ease !important;
}

/* Ensure the link text inside is white and has no underline */
body .wp-block-read-more {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Hover/Focus state: Darker grey */
body .wp-block-read-more:hover,
body .wp-block-read-more:focus {
    background-color: #333333 !important; 
    border-color: #333333 !important;
}


/* ------------------------------------------- */
/* 2. HIGHLIGHT NEXT/PREVIOUS PAGINATION LINKS */
/* Targets the pagination block wrappers for base styling */
/* ------------------------------------------- */

body .wp-block-query-pagination-next, 
body .wp-block-query-pagination-previous {
    /* Required to make them look like buttons */
    display: inline-block !important;
    padding: 12px 20px !important;
    
    /* Default Styling */
    background-color: #f8f8f8 !important; 
    border: 1px solid #cccccc !important;
    border-radius: 5px !important;
    font-weight: 500 !important;
    
    transition: all 0.3s ease !important;
}

/* Ensure the link text inside is dark for the default state */
body .wp-block-query-pagination-next a, 
body .wp-block-query-pagination-previous a {
    color: #333333 !important; 
    text-decoration: none !important;
}

/* Hover/Focus state: Primary Black background */
body .wp-block-query-pagination-next:hover, 
body .wp-block-query-pagination-previous:hover,
body .wp-block-query-pagination-next:focus, 
body .wp-block-query-pagination-previous:focus {
    background-color: #000000 !important; /* Black background */
	color: #ffffff !important;
    border-color: #000000 !important;
}

/* FIX: Ensure the text turns white on hover/focus */
body .wp-block-query-pagination-next:hover a, 
body .wp-block-query-pagination-previous:hover a,
body .wp-block-query-pagination-next:focus a, 
body .wp-block-query-pagination-previous:focus a {
    color: #ffffff !important; /* White text */
}

/* Fallback for any inner element (like arrows or spans) that remain dark */
body .wp-block-query-pagination-next:hover *, 
body .wp-block-query-pagination-previous:hover * {
    color: #ffffff !important;
}