.bonus-card {
    padding: 0;
    overflow: hidden;
    min-height: 0;
    border: 1px solid rgba(49, 76, 66, .12);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(29, 41, 38, .12), 0 0 28px rgba(182, 199, 181, .34);
    transition: transform .2s, box-shadow .2s
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(29, 41, 38, .16), 0 0 34px rgba(232, 115, 76, .2)
}

.bonus-image {
    height: 145px;
    position: relative;
    overflow: hidden;
    background: #dce7dc
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: saturate(1.05) contrast(1.04)
}

.bonus-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(29, 41, 38, 0) 28%, rgba(29, 41, 38, .5) 100%)
}

.bonus-image span {
    position: absolute;
    z-index: 1;
    bottom: 13px;
    left: 18px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em
}

.bonus-content {
    padding: 22px 24px 26px
}

.bonus-content h3 {
    margin: 14px 0 10px
}

.bonus-content p {
    margin-bottom: 22px
}

.bonus-content>strong {
    color: var(--deep-sage);
    font-size: 10px
}

.bonus-smoothies {
    background: #e3efe3;
    box-shadow: 0 10px 24px rgba(29, 41, 38, .12), 0 0 30px rgba(125, 178, 137, .38)
}

.bonus-storage {
    background: #f8d7c8;
    box-shadow: 0 10px 24px rgba(29, 41, 38, .12), 0 0 30px rgba(232, 115, 76, .28)
}

.bonus-workflow {
    background: #e6e6d3;
    box-shadow: 0 10px 24px rgba(29, 41, 38, .12), 0 0 30px rgba(188, 184, 113, .3)
}

@media(max-width:600px) {
    .bonus-image {
        height: 155px
    }

    .bonus-content {
        padding: 20px 20px 23px
    }

    .bonus-content h3 {
        font-size: 22px
    }

    .bonus-content p {
        font-size: 13px;
        line-height: 1.45
    }
}