section.block-advantages{
    border: none;
    overflow: hidden;
}
.block-advantages .container-advantages,
.block-advantages .header-advantages{
    max-width: var(--wp--custom--layout--content-size);
    margin-left: auto;
    margin-right: auto;
}
.list-advantages{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(auto, 1fr));
    grid-gap: 12px;
    list-style: none;
    padding-inline-start: 0;
}
.list-advantages::after{
    content: "";
    position: absolute;
    left: calc((100% + 50vw) / 2);
    top: -4rem;
    bottom: -2rem;
    z-index: -1;
    width: 100%;
    background-image: url('./bg_advantage.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.list-advantages .item-advantage{
    background-color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--black);
    padding: 1.25rem;
}
.list-advantages .item-advantage .title{
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: bold;
    min-height: 48px;
}
.list-advantages .item-advantage .description{
    font-size: var(--text-16);
    font-style: normal;
    font-weight:300;
}

/* Landing */
body.page-template-page-landing .list-advantages {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 0.75rem;
}
body.page-template-page-landing .list-advantages::after {
    left: calc((100% + 100vw) / 2);
}

@media only screen and (max-width : 970px) {
    .block-advantages.alignfull{
        padding: 0 10px;
    }
    body.page-template-page-landing .list-advantages,
    .list-advantages {
        grid-template-columns: repeat(1, minmax(auto, 1fr));
    }
    .header-item-advantage{
        display: flex;
        align-items: center;
    }
    .header-item-advantage img{
        margin-right: 0.75rem;
    }
    .list-advantages .item-advantage .title{
        margin-bottom: 0;
    }
    .list-advantages::after{
        display: none;
    }
}

@media (min-width: 720px) and (max-width: 1180px) {
    .list-advantages{
        grid-template-columns: repeat(2, minmax(auto, 1fr));
    }
}