.lazy-load-trigger {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.loading-indicator {
    display: none;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 14px;
}

.lazy-load-trigger.loading .loading-indicator {
    display: flex;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #666;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-weight: 500;
}

/* Spacing for lazy-loaded post groups */
.lazy-loaded-posts-group {
    /* margin-top: 4rem; */
    padding-top: 2rem;
}

/* Remove spacing from the first post list in each group to avoid double spacing */
.lazy-loaded-posts-group .post-list:first-child {
    margin-top: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lazy-loaded-posts-group {
        padding-top: 0;
    }
} 