/* Custom Pagination Styling */
.pagination-container nav div[role="navigation"] span[aria-current="page"] > span {
    background-color: #1e2245 !important; /* Dark Navy from Header */
    border-color: #1e2245 !important;
    color: white !important;
}

.pagination-container nav div[role="navigation"] a {
    color: #1e2245 !important;
    transition: all 0.3s ease;
}

.pagination-container nav div[role="navigation"] a:hover {
    background-color: #0099ff !important; /* Blue from Search Button */
    color: white !important;
    border-color: #0099ff !important;
}

/* Fix for mobile pagination arrows */
.pagination-container svg {
    width: 20px;
    height: 20px;
}


/* Add to your CSS file */
.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e2245; /* Dark Navy */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.prose blockquote {
    border-left: 4px solid #0099ff; /* Your Blue */
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563;
    margin: 2rem 0;
}