/* Simple loading indicator (minimal) */
.isrp-ll-loader {
    display: none; /* Hide the loader text completely */
}

/* Scroll trigger element (invisible but functional) */
#isrp-ll-trigger {
    height: 1px;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
}

/* Smooth fade-in animation for newly loaded articles */
@keyframes isrp-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply simple fade-in to loaded articles */
article.loaded-via-infinite-scroll {
    animation: isrp-fadeIn 0.5s ease-out;
}

/*# sourceMappingURL=public.css.map */