.hw-wealth-updates{
display:flex;
gap:12px;
padding:10px;
overflow-x:auto;
}

.hw-layout-vertical{
flex-direction:column;
overflow:visible;
}

.hw-story,
.hw-story-create{
width:56px;
height:56px;
border-radius:50%;
flex-shrink:0;
cursor:pointer;
}

.hw-story img{
width:100%;
height:100%;
object-fit:cover;
border-radius:50%;
border:2px solid #883ca6;
}

.hw-story-create{
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
background:#f3f4f6;
}

.hw-story-viewer{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#000;
display:none;
z-index:9999;
}

.hw-story-viewer.active{
display:flex;
align-items:center;
justify-content:center;
}

.hw-story-viewer-inner{
position:relative;
max-width:420px;
width:100%;
}

.hw-story-viewer img{
width:100%;
height:auto;
border-radius:8px;
}

.hw-story-viewer-text{
position:absolute;
bottom:30px;
left:20px;
right:20px;
color:#fff;
font-size:18px;
font-weight:600;
text-shadow:0 2px 6px rgba(0,0,0,.6);
}

.hw-story-viewer-close{
position:absolute;
top:20px;
right:20px;
color:#fff;
font-size:24px;
cursor:pointer;
}

.hw-story-progress{
position:absolute;
top:12px;
left:10px;
right:10px;
display:flex;
gap:6px;
z-index:10;
}

.hw-story-progress-bar{
flex:1;
height:3px;
background:rgba(255,255,255,.35);
border-radius:10px;
overflow:hidden;
}

.hw-story-progress-fill{
height:100%;
width:0%;
background:#fff;
transition:width linear;
}

/* ===============================
STORY AVATAR RING
=============================== */

.hw-story {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    flex-shrink: 0;

    background: linear-gradient( 125deg, #d3ff00, #26d617, #37af00, #4f00a2, #df98ff )
}

.hw-story img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    background: #fff;
    padding: 2px;
}