/* GreenPulse progressive lists - theme-only safe layer */
.gp-progressive-list-ready .gp-progressive-item.is-hidden-by-progressive {
    display: none !important;
}
.gp-progressive-actions {
    display: flex;
    justify-content: center;
    margin: 1.6rem 0 0;
}
.gp-progressive-load-more {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: .9rem 1.35rem;
    background: linear-gradient(135deg, #0003FF, #365CFF);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0,3,255,.18);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.gp-progressive-load-more:hover,
.gp-progressive-load-more:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0,3,255,.24);
    outline: 2px solid rgba(0,3,255,.22);
    outline-offset: 3px;
}
.gp-progressive-load-more[hidden] {
    display: none !important;
}
@media (max-width: 768px) {
    .gp-progressive-actions { margin-top: 1.2rem; }
    .gp-progressive-load-more { width: 100%; max-width: 320px; }
}
