
    /* Force Horizontal Alignment */
    .sky-pagination-nav .pagination {
        display: flex !important;
        flex-direction: row !important; /* Forces side-by-side */
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px; /* Space between pills */
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Remove default Bootstrap borders/bullets */
    .sky-pagination-nav .page-item {
        display: block !important;
        margin: 0 !important;
    }

    /* The "Sky Pill" Design */
    .sky-pagination-nav .page-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 16px;
        background: #ffffff !important;
        border: 1px solid #f1f5f9 !important;
        border-radius: 16px !important;
        color: #64748b !important;
        font-weight: 800 !important;
        font-size: 13px !important;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    /* Hover State */
    .sky-pagination-nav .page-item:not(.active):not(.disabled) .page-link:hover {
        border-color: #7341ff !important;
        color: #7341ff !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(115, 65, 255, 0.1);
    }

    /* Active State (The Brand Pop) */
    .sky-pagination-nav .page-item.active .page-link {
        background: #7341ff !important;
        border-color: #7341ff !important;
        color: #ffffff !important;
        box-shadow: 0 8px 25px rgba(115, 65, 255, 0.35) !important;
    }

    /* Disabled State (Faded) */
    .sky-pagination-nav .page-item.disabled .page-link {
        opacity: 0.4;
        cursor: not-allowed;
        background: #f8fafc !important;
    }

    /* Navigation Arrows (Prev/Next) */
    .sky-pagination-nav .page-item:first-child .page-link,
    .sky-pagination-nav .page-item:last-child .page-link {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 900;
    }

.sky-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 5rem;
    z-index: 10;
    align-self: flex-start; 
}
main, .container, .flex-row {
    overflow: visible !important;
}

    #post-body {
    color: #334155; /* Slate-700 */
    line-height: 1.8;
    font-size: 1.125rem; /* 18px for better readability */
}

/* Headings - Bold and Authoritative */
#post-body h2, #post-body h3, #post-body h4, #post-body h5 {
    color: #0f172a; /* Slate-900 */
    font-weight: 900;
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

#post-body h2 { font-size: 2rem; border-left: 4px solid #7341ff; padding-left: 1rem; }
#post-body h3 { font-size: 1.5rem; }
#post-body h4 { font-size: 1.25rem; }

/* Paragraphs */
#post-body p {
    margin-bottom: 1.5rem;
}

/* Bold Text */
#post-body strong {
    color: #0f172a;
    font-weight: 800;
}

/* Lists - Styled for Clarity */
#post-body ul, #post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

#post-body li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

/* Custom Bullet: Minimalist Purple Dash */
#post-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 0.75rem;
    height: 2px;
    background-color: #7341ff;
    border-radius: 99px;
}

/* Numbered Lists */
#post-body ol {
    counter-reset: sky-counter;
}

#post-body ol li {
    counter-increment: sky-counter;
}

#post-body ol li::before {
    content: counter(sky-counter);
    position: absolute;
    left: 0;
    color: #7341ff;
    font-weight: 900;
    font-size: 0.85rem;
}

/* Links inside content */
#post-body a {
    color: #7341ff;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: color 0.2s ease;
}

#post-body a:hover {
    color: #0f172a;
}

/* Images & Figures */
#post-body img {
    border-radius: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    width: 100%;
    height: auto;
}

/* Blockquotes for Math Formulas or Tips */
#post-body blockquote {
    border-radius: 1.5rem;
    background-color: #f8fafc;
    border-left: 6px solid #7341ff;
    padding: 1.5rem 2rem;
    font-style: italic;
    margin: 2rem 0;
    color: #475569;
}