.stories-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
}

.story {
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #f00;
    width: 120px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.story-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
}

.story-duration {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3px;
    border-radius: 5px;
}

.story-content {
    margin-top: 10px;
}

.story-title {
    font-size: 14px;
    margin: 0;
    color: #fff;
}
