.story-slider {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.story-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 4px;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.story-list.dragging {
    cursor: grabbing;
    user-select: none; /* para que no seleccione texto/imágenes al arrastrar */
}

/* Ocultar scroll en algunos navegadores (opcional) */
.story-list::-webkit-scrollbar {
    display: none;
}
.story-list {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
}

.story-item {
    flex: 0 0 auto;
    text-align: center;
    scroll-snap-align: start;
}

.story-item a {
    text-decoration: none;
    color: inherit;
}

/* Círculo con borde gradiente */
.story-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 3px; /* grosor del anillo */
    background: linear-gradient(45deg, var(--theme-colorF), var(--theme-colorF2));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Círculo blanco interno */
.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Imagen circular */
.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Título abajo */
.story-title {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
}
