﻿.story_section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.story_wrapper {
    margin: 0 60px;
    position: relative;
}

.story_scroll {
    display: flex !important;
    gap: 22px;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 10px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap !important;
    scroll-behavior: smooth;
}

    /* Hide scrollbar */
    .story_scroll::-webkit-scrollbar {
        display: none;
    }

.story_scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.story_item {
    text-align: center;
    text-decoration: none;
    min-width: 95px;
    flex: 0 0 auto !important;
    transition: transform .25s ease;
}

    .story_item:hover {
        transform: translateY(-4px) scale(1.05);
    }

    .story_item:active {
        transform: scale(0.92);
    }

/* Ring */
.story_ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #ff7a00, #ffb347, #ff3d00);
    margin: 0 auto 8px;
    transition: .3s;
}

.story_item:hover .story_ring {
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.story_image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    overflow: hidden;
}

    .story_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        display: block;
    }

.story_title {
    font-size: 13px;
    color: #333;
    display: block;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 86px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigators - Always visible and enabled */
.story_nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    cursor: pointer !important;
    z-index: 10;
    transition: .2s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.story_prev {
    right: 0;
}

.story_next {
    left: 0;
}

/* Remove disabled styles completely */
.story_disabled {
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.story_nav:hover {
    background: #ff7a00;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .story_wrapper {
        margin: 0;
    }

    .story_nav {
        display: none !important;
    }

    .story_scroll {
        padding: 10px 15px;
        gap: 15px;
    }

    .story_ring {
        width: 72px;
        height: 72px;
    }

    .story_title {
        font-size: 12px;
        max-width: 72px;
    }
}
