.bloc-liste::before {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #706134;
}

.bloc-liste::after {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #E1C78F;
}

.bloc-liste .row {
    z-index: 1;
    position: relative;
}

.bloc-liste .row .content-part {
    padding: 32px 5% 32px 0;
}

.bloc-liste .row .content-part h2 {
    color: var(--cream, #DFD7D5);
}

.bloc-liste .row .content-part h2 strong {
    color: var(--caramel, #E1C78F);
}

.bloc-liste .row .content-part .btn {
    color: #DFD7D5;
}

.bloc-liste .row .content-part .btn::after {
    background-image: url("http://localhost:8888/MBDESIGN/wp-content/uploads/2025/05/ArrowLight.svg");
}

.bloc-liste .row .content-liste {
    padding: 128px 0 128px 5%;
}

.bloc-liste .row .content-liste .content-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid #B0926A;
}

.bloc-liste .row .content-liste .content-item:last-child {
    border-bottom: 0;
}

.bloc-liste .row .content-liste .content-item::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("http://localhost:8888/MBDESIGN/wp-content/uploads/2025/05/IconCheck.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-size: contain;
}

.bloc-liste .row .content-liste .content-item p {
    display: block;
    flex: 1 1 0;
    color: var(--dark-jungle, #262401);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 200;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .bloc-liste::before, .bloc-liste::after {
        display: none;
    }

    .bloc-liste .row .content-part {
        padding: 64px 5%;
        background-color: #706133;
    }

    .bloc-liste .row .content-liste {
        padding: 48px 5%;
        background-color: #E1C78F;
    }

    .bloc-liste > .row {
        width: 100%;
    }

    .bloc-liste > .row .container-myprod {
        width: 100%;
    }
}