/* Home Feed — tabbed interface for logged-in users */

.home-feed {
    margin-top: 1rem;
}

.home-feed__tabs {
    justify-content: flex-start;
}

.home-feed__content {
    min-height: 300px;
    margin-top: 1rem;
}

.home-feed__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted, #666);
}

.home-feed__loading .spinner {
    margin-bottom: 1rem;
}

/* Responsive tab adjustments */
@media (max-width: 768px) {
    .home-feed__tabs {
        gap: 0.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-feed__tabs::-webkit-scrollbar {
        display: none;
    }

    .home-feed__tabs .tab-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
}

