.stockItem{
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    padding: 15px;
    background: #FFF5EE;
    gap: 25px;
    margin-top: 20px;
}

.stocksItemImg{
    aspect-ratio: 16 / 9;
    height: 190px;
}

.stocksItemImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.stockText{
    flex: 1;
}

.stockText h2{
    font-size: 16px;
    font-weight: 500;
    color: #3D1F14;
}

.stockText p{
    color: #575757;
    margin-top: 10px;
    font-size: 14px;
}

@media(min-width: 320px) and (max-width: 550px){
    .stockItem{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .stocksItemImg{
        aspect-ratio: 16 / 9;
        width: 100%;
        height: auto;
    }
}

@media(min-width: 550px) and (max-width: 920px){
    .stocksItemImg{
        height: 120px;
    }
}