.sale_wrapper{
    margin: 0 1rem;
}
.title-and-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.title-and-link h2{
    font-size: 40px;
    font-weight: 300;
    color: #4d5360;
}
.sale_all_link{
    color: #ee3a23;
}
.list-sale{
    display: flex;
    gap: 20px;
}
.list-sale__item{
    flex: 0 0 calc(33.333% - 13.33px);
    height: fit-content;
    background: #f8f8f8;
}

.list-sale__info{
    height: 90px;
    padding: 16px 20px;
}


.list-sale__info .name{
    font-size: 20px;
    font-weight: 700;
    color: #4d5360;
    display: block;
    line-height: 1.24;
}

.date-sale{
    display: flex;
    position: relative;
    padding: 16px 20px;
    justify-content: space-between;
}
.date-sale .name{
    color: #4d5360;
}
.date-sale .value{
    color: #ee3a23;
}
.date-sale svg{
    position: absolute;
    right: 20px;
    bottom: 56px;
}
@media (max-width: 1024px) {
    .list-sale {
        flex-direction: column;
    }
    .title-and-link h2{
        font-size: 26px;
    }
    .sale_all_link{
        width: 100%;
        background: #f8f8f8;
        color: #ee3a23;
        display: block;
        text-align: center;
        padding: 20px;
    }
}