.infoblocks {
    margin: 40px auto;
    border-radius: 29px;
    position: relative;
    background-color: #5FB96E;
}

.infoblocks h2 {
    font-size: 1.4em;
    border-bottom: 1px solid white;
    position: relative;
    padding: 0.5em 0.2em 0.5em 5.3em;
    color: white;
    margin: 0;
}

.infoblocks h2:before {
    content: '';
    position: absolute;
    background: url('../svg/money.svg') no-repeat white;
    background-size: contain;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    left: 1em;
    bottom: -0.3em;
    box-shadow: 0 0 4px 4px #BFEDEB;
}

.price-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 150px;
}

.price-list.column-2 {
    grid-template-columns: minmax(0, 1fr) 150px;
}

.price-item {
    display: contents;color: #444;
}

.price-item > div {
    padding: 14px 16px;
    transition: background-color .2s ease;
}

.price-item__volume,
.price-item__price,
.price-head div:nth-child(2),
.price-head div:nth-child(3) {
    text-align: center;
}

.price-head {
    background: #5FB96E;
    color: #fff;
    font-weight: 600;
}

.price-item:not(.price-head):nth-child(2n) > div {
    background: #e9e9e9;
    border-bottom: 1px solid #ddd;
}

.price-item:not(.price-head):nth-child(2n+1) > div {
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.price-item:not(.price-head):has(> div:hover) > div {
    background: #f9f7f7;
}

@media (max-width: 768px) {

    .infoblocks h2 {
        border-bottom: 0;
    }

    .price-list {
        display: block;
    }

    .price-item {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px 15px;
        margin-bottom: 16px;
        padding: 16px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }

    .price-item__name {
        grid-column: 1 / -1;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .price-item__volume::before {
        content: "Навалом";
        color: #666;
        font-weight: 600;
    }

    .price-item__price::before {
        content: "В сетку";
        color: #666;
        font-weight: 600;
        margin-right: 5px;
    }

    .price-item__volume,
    .price-item__price {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .price-head {
        display: none;
    }
}

@media only screen and (max-width: 468px) {

    .infoblocks h2 {
        height: 3.5em;
        font-size: 1.2em;
        line-height: 1.3em;
    }

    .infoblocks h2:before {
        width: 55px;
        height: 55px;
    }
}