.post-grid-container {
    display: flex;
    padding: 4rem;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.post-grid-item {
    position: relative;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease-in-out;
    min-width: 27rem;
}

.post-grid-item:hover {
    transform: translateY(-5px);
}

.post-grid-item .product-bg {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 23rem;
    height: 34rem;
    background-color: var(--bg-color, #ddd);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0px 8px 6px #00000029;

}

.post-grid-item img {
    width: auto;
    height: 40rem;
    display: block;
    margin: auto;
}

.post-grid-title {
    font-size: 4.5rem;
    line-height: 5.5rem;
    font-weight: 500;
    color: #334D25;
    margin-top: 30px;
}

.post-grid-button {
    display: inline-block;
    padding: 1.4rem 1.5rem !important;
    font-size: 1.4rem;
    line-height: 1.3rem;
    text-transform: uppercase;
    border: solid 1px var(--button-color) !important;
    color: var(--button-color) !important;
    margin-top: 1rem;
    background-color: transparent !important;
    transition: all 0.3s ease-in-out;
}

.post-grid-button:hover {
    background: #2d3e1f !important;
    color: #fff !important;
}


.post-grid-item .product-bg + a:after {
    content: "";
    position: absolute;
    width: 12.3rem;
    height: 1rem;
    background: #706F70 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    border: 1px solid #707070;
    opacity: 1;
    filter: blur(2px);
    top: 41.3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}
@media screen and (max-width: 849px) {
    .post-grid-container {
        padding: 0;
    }
    .post-grid-item .product-bg + a:after {
        top: 41.4rem;
        width: 10.9rem;
    }
    .post-grid-item .product-bg {
        width: 23rem;
        height: 25.4rem;
    }
}