.sw-load-more-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 1rem;
    gap: 0.75rem;
}
.sw-load-more-counter {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}
.sw-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}
.sw-load-more-btn:disabled {
    opacity: 0.75;
    cursor: wait;
}
.sw-load-more-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: swlm-spin 0.65s linear infinite;
}
@keyframes swlm-spin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: no-preference) {
    .sw-load-more--new {
        animation: swlm-fade 0.35s ease both;
    }
    @keyframes swlm-fade {
        from { opacity: 0; transform: translateY(12px); }
        to   { opacity: 1; transform: none; }
    }
}
