/* horizontal stock row */
.returns-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
    font-size: 0.8em;
    justify-content: start; /* IMPORTANT */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}


.returns-item{
    flex:0 0 auto;
    display:flex;
    flex-direction:column;
    border:1px solid #e5e7eb;
    overflow:hidden;
    transition: all 0.2s ease;
}

.returns-item:hover {
    box-shadow: inset 0 0 0 2px #3b82f6, 0 0 6px rgba(59,130,246,.25);
}
/* top text row */
.returns-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:4px;
}



.more-item{
    display:flex;
    justify-content:center;
    align-items: center;
}

