.leadgen {
    border-radius: 15px;
    padding: 50px !important;
}

.leadgen .et_pb_column {
    display: grid !important;
    /* On définit 2 colonnes pour le bas, le titre prendra tout */
    grid-template-columns: 5fr 5fr;
    grid-template-areas:
        "title title"
        "body code";
    gap: 20px 30px;
    align-items: start;
}

/* Positionnement des modules */
.leadgen-title {
    grid-area: title;
    margin-bottom: 0 !important;
    font-size:28px;
}

.leadgen-title h2,
.leadgen-title h3 {
    font-size:inherit !important;
    padding-bottom:0 !important;
}

.leadgen-body {
    grid-area: body;
    min-height: 50px;
}

.leadgen-body a {
    color: #18d9c3 !important;
}

.leadgen-code {
    grid-area: code;
    min-height: 50px;
}

/* Responsive : On empile tout sur mobile */
@media (max-width: 767px) {
    .leadgen {
        padding: 25px !important;
    }
    .leadgen .et_pb_column {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "body"
            "code";
    }
}

/* variants */
.leadgen-white {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.leadgen-white .leadgen-title * {
    color: #2a25e8 !important;
}
.leadgen-white .leadgen-body p {
    color:#3b3d40 !important;
}

.leadgen-pink{
	background: #de16e6;
}

.leadgen-pink .leadgen-body p, .leadgen-pink .leadgen-title *  {
    color:white !important;
}

.leadgen-blue{
	background: #2a25e8;
}

.leadgen-blue .leadgen-body p, .leadgen-blue .leadgen-title *  {
    color:white !important;
}

/*
.leadgen-teal{
	background: #18d9c3;
}

.leadgen-teal-to-blue {
    background: linear-gradient(145deg,#18d9c3 1%,rgba(42,37,232,0.8) 34%),url(/wp-content/uploads/2024/02/avisia-bg-expertises.webp) !important;
    background: #18d9c3;
}
.leadgen-teal-to-blue .leadgen-title *, .leadgen-teal .leadgen-title * {
    color: white !important;
}
.leadgen-teal-to-blue .leadgen-body p,  .leadgen-teal .leadgen-body p {
    color:white !important;
}

.leadgen-violet{
	background: #7216e6;
}

.leadgen-violet-to-blue {
    background: linear-gradient(145deg,#2a25e8 1%,rgba(114,22,230,0.9) 50%),url(/wp-content/uploads/2024/02/avisia-bg-actualites.webp) !important;
    background: rgba(114,22,230,0.9) 100%;
}
.leadgen-violet-to-blue .leadgen-title *, .leadgen-violet .leadgen-title * {
    color: white !important;
}
.leadgen-violet-to-blue .leadgen-body p, .leadgen-violet .leadgen-body p {
    color:white !important;
}
*/


