.product-content-section .delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 50px;
}

.product-content-section .delivery-grid > div {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    min-height: 128px;
    padding: 21px 20px;
    overflow: hidden;
    border: 1px solid #dfe8e3;
    border-radius: 12px;
    background: linear-gradient(145deg, #fbfcfb, #f4f8f6);
    box-shadow: 0 8px 24px rgba(23, 63, 53, .055);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-content-section .delivery-grid > div::after {
    position: absolute;
    right: -28px;
    bottom: -34px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: rgba(216, 239, 159, .22);
    content: "";
}

.product-content-section .delivery-grid > div:hover {
    transform: translateY(-3px);
    border-color: #bdd3ca;
    box-shadow: 0 14px 32px rgba(23, 63, 53, .1);
}

.delivery-grid .delivery-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e5f0eb;
    color: #195544;
}

.delivery-grid .delivery-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-content-section .delivery-grid > div > div {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 0;
}

.product-content-section .delivery-grid small {
    margin-bottom: 2px;
    color: #698078;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.product-content-section .delivery-grid b {
    color: #173f35;
    font-size: 14px;
    line-height: 1.35;
}

.product-content-section .delivery-grid span {
    margin-top: 6px;
    color: #68756f;
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .product-content-section .delivery-grid {
        grid-template-columns: 1fr;
    }

    .product-content-section .delivery-grid > div {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .product-content-section .delivery-grid > div {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 17px;
    }

    .delivery-grid .delivery-icon {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-content-section .delivery-grid > div {
        transition: none;
    }
}
