/* ================= SECTION BASE ================= */

.gr-cs{
    font-family: inherit;
}

/* FULL WIDTH GREEN BACKGROUND */
.gr-cs--bg{
    width: 100%;
    background: #d8e8cf;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


/* White Card */
.gr-cs__bg{
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 64px 64px;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

/* Grid Layout */
.gr-cs__container{
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

/* ================= TEXT STYLES ================= */

.gr-cs__badge{
    display:inline-block;
    background:#e6f6ec;
    color:#1c8f3a;
    padding:10px 18px;
    border-radius:999px;
    font-weight:600;
    font-size:14px;
}

.gr-cs__title{
    font-size:42px;
    font-weight:800;
    margin:16px 0 12px;
}

.gr-cs__text{
    font-size:16px;
    color:#444;
    line-height:1.75;
}

.gr-cs__list{
    list-style:none;
    padding:0;
    margin:24px 0;
}

.gr-cs__li{
    position:relative;
    padding-left:36px;
    margin-bottom:12px;
    font-size:16px;
}

.gr-cs__li:before{
    content:"✔";
    position:absolute;
    left:0;
    width:26px;
    height:26px;
    background:#e6f6ec;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1c8f3a;
    font-weight:bold;
}

.gr-cs__foot{
    font-style:italic;
    color:#555;
    margin-bottom:22px;
    line-height:1.6;
}

/* Button */
.gr-cs__btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#1c8f3a;
    color:#fff;
    padding:14px 22px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.gr-cs__btn:hover{
    background:#166c2b;
}

.gr-cs__arrow{
    font-size:18px;
}

/* ================= IMAGE ================= */

.gr-cs__right{
    display:flex;
    justify-content:flex-end;
}

.gr-cs__imageWrap{
    position:relative;
    max-width:520px;
}

.gr-cs__img{
    width:100%;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    display:block;
}

/* Sticker */
.gr-cs__sticker{
    position:absolute;
    right:18px;
    bottom:18px;
    background:#1c8f3a;
    color:#fff;
    padding:14px 18px;
    border-radius:14px;
    font-weight:600;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.gr-cs__sticker strong{
    display:block;
    font-size:18px;
    margin-top:4px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px){

    .gr-cs__bg{
        padding: 32px 20px;
    }

    .gr-cs__container{
        grid-template-columns:1fr;
    }

    .gr-cs__right{
        justify-content:center;
    }

    .gr-cs__title{
        font-size:30px;
    }
}

/* FORCE FULL WIDTH EVEN IN PRESTASHOP CONTAINER */
.gr-cs--bg{
    margin-left: calc(50% - 50vw);
    width: 100vw;
}
