.is-style-la-casa-wild-grass {
    background-color: var(--wp--preset--color--tertiary);
    --style-margin: 20px;
    --deco-height: 40px;
    margin: var(--deco-height) 0;
    padding: 40px 0 60px 0;
}

.is-style-la-casa-wild-grass::before,
.is-style-la-casa-wild-grass::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: var(--deco-height);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.is-style-la-casa-wild-grass::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(var(--deco-height) * -1);
    left: 0;
    background-image: url("../assets/images/grass_top.svg");
}

.is-style-la-casa-wild-grass::after {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(var(--deco-height) * -1);
    left: 0;
    background-image: url("../assets/images/grass_bottom.svg");
}