.stories-carousel-1885a9d4-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: visible;
}

.stories-carousel-1885a9d4-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 300px;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    padding: 10px 0;
}

.stories-carousel-1885a9d4-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.stories-carousel-1885a9d4-slide {
    scroll-snap-align: center;
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-carousel-1885a9d4-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

/* Nav Arrows */
.stories-carousel-1885a9d4-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
    transition: opacity 0.3s, transform 0.2s;
}

.stories-carousel-1885a9d4-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.stories-carousel-1885a9d4-arrow-left {
    left: -22px;
}

.stories-carousel-1885a9d4-arrow-right {
    right: -22px;
}

.stories-carousel-1885a9d4-arrow svg {
    width: 24px;
    height: 24px;
}

/* Dots Navigation */
.stories-carousel-1885a9d4-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.stories-carousel-1885a9d4-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s, width 0.3s;
}

.stories-carousel-1885a9d4-dot.active {
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .stories-carousel-1885a9d4-arrow {
        display: none !important; /* Hide arrows on mobile for clean swipe feel */
    }
    .stories-carousel-1885a9d4-slide {
        scroll-snap-align: center;
    }
}
