/* LinkedIn "Stories/Status" Horizontal Carousel - MOBILE ONLY */
/* Position: Fixed TOP → Main content below */

@media (max-width: 768px) {
    /* CAROUSEL CONTAINER */
    #memoryStatusCarousel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        z-index: auto;
        background: var(--bg-card);
        padding: 12px;
        margin: 0 0 1.5rem 0;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
        transform: none;
        transition: none;
    }
    
    /* HORIZONTAL TRACK - SCROLL SNAP */
    .carousel-track {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .carousel-track::-webkit-scrollbar { display: none; }
    
    /* OLD STATUS MEMORY CARDS - REMOVED TO USE INLINE STYLES */
    
    /* DESKTOP: HIDE CAROUSEL */
}
@media (min-width: 769px) {
    #memoryStatusCarousel { 
        display: none !important; 
    }
}
