.actions__items {
    display: grid;
    column-gap: 12px;
    row-gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}
.actions__item {
    padding: 20px 20px 24px;
    border-radius: 13px;
    border: 1px solid rgba(113, 133, 158, 0.05);
    background: #FFF;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}
.actions__item:hover {
    border: 1px solid rgba(35, 31, 32, 0.20);
    box-shadow: 20px 4px 52px 0 rgba(147, 151, 173, 0.25);
}
.actions__item__data {
    display: flex;
    justify-content: space-between;
    column-gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.actions__item--date {
    padding: 5px 14px 5px 12px;
    border-radius: 36px;
    border: 1px solid rgba(44, 99, 172, 0.00);
    background: rgba(44, 99, 172, 0.05);
    color: #2C63AC;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
}
.actions__item--icon {
    width: 45px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 44px;
}
.actions__item--icon>span {
    font-size: 21px;
}
.actions__item--icon.gift {
    background-color: #2C63AC;
}
.actions__item--icon.gift>span:before {
    color: #FFE100;
}
.actions__item--icon.sale {
    background-color: #FF6E6E;
}
.actions__item--icon.sale>span:before {
    color: #FFF;
}
.actions__item--title {
    color: #383838;
    font-size: 16px;
    line-height: 19px;
}

@media screen and (max-width: 1350px) {
    .actions__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1200px) {
    .actions__items {
        row-gap: 12px;
    }
    .actions__item--date {
        font-size: 14px;
        line-height: 18px;
        padding: 5px 10px;
    }
    .actions__item--icon {
        width: 44px;
        height: 30px;
    }
}

@media screen and (max-width: 1050px) {
    .actions__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .actions__items {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 14px;
    }
    .actions__item {
        padding: 20px 12px 24px;
    }
}