main span {
    font-weight: 600;
    color: var(--accent-color);
}

.principes {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: space-between;

    hr {
        width: 100%;
        border-color: #144b5c81;
        margin: 2rem 0;
    }

    h2 {
        width: 100%;
    }

    .container-principe {
        max-width: 49%;
        min-width: 49%;
        box-sizing: border-box;
    }

    .principe-top {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        gap: 1rem;

        h3 {
            color: var(--accent-color);
        }
    }
}

/* SECTION LES DIFFERENTES THERAPIES */
.different-therapies {
    h3 {
        text-align: center;
        font-size: 1.25rem;
        font-weight: 600;
    }

    hr {
        margin: 0.8rem auto;
        width: 45%;
        border-color: var(--accent-color);
    }

    .container-different-therapies {
        display: flex;
        justify-content: space-between;
        gap: 4rem;
    }

    /* Cartes en flex colonne + largeur égale pour éviter qu’une soit plus mince */
    .container-therapy {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        -webkit-box-shadow: 5px 5px 15px 5px #0000002a;
        box-shadow: 5px 5px 15px 5px #0000002a;

        img {
            width: 100%;
            image-rendering: optimizeQuality;
            display: block;
        }

        /* La zone bleue occupe tout le bas de la carte */
        .container-therapy-bottom {
            flex: 1 1 auto;
            min-height: 350px;
            background-color: var(--secondary-color);
            color: white;
            padding: 2rem;
        }

        .therapy-desc {
            line-height: 1.6;
            font-size: 1.2rem;
        }
    }
}

/* SECTION LA GUIDANCE PARENTALE */

.familial-mediation {
    margin-bottom: 5rem;
}


.parental-workshop {
    padding-top: 0;
}

.container-familial-mediation, .familial-mediation-text, .familial-mediation-text > p,
.container-parental-workshop, .parental-workshop-text, .parental-workshop-text > p {
    width: 100% !important;
    line-height: 2.3;

    .ul-title {
        font-weight: 600;
        text-decoration: underline;
        color: var(--secondary-color);
        margin-top: 1rem;
    }

    ul {
        margin-bottom: 1.5rem;
    }
    
    ul li {
        list-style-type: disc ;
        margin-left: 1.5rem;
    }
}


/* ============================== */
/* RESPONSIVE - ECRANS INTERMEDIAIRES */
/* ============================== */
@media screen and (max-width: 1200px) {
    .principes {
        .container-principe {
            max-width: 48%;
        }
    }

    .different-therapies {
        .container-therapy {
            .container-therapy-bottom {
                padding: 1.6rem;
                min-height: 230px;
            }
        }
    }
}

/* ============================== */
/* RESPONSIVE - TABLETTES */
/* ============================== */
@media screen and (max-width: 992px) {
    .principes {
        flex-direction: column;
        gap: 2rem;

        .container-principe {
            max-width: 100%;
        }
    }

    .different-therapies {
        .container-different-therapies {
            flex-direction: column;
            align-items: center;
        }

        .container-therapy {
            max-width: 100%;

            .container-therapy-bottom {
                height: auto;
            }
        }
    }
}

/* ============================== */
/* RESPONSIVE - MOBILES */
/* ============================== */
@media screen and (max-width: 600px) {
    .principes {
        h2 {
            margin-bottom: 2rem;
        }
    }

    .for-who-list {
        padding-left: 1.2rem;
        gap: 1rem;
    }

    .different-therapies {
        h4 {
            font-size: 1.6rem;
        }

        hr {
            width: 60%;
        }

        .container-therapy {
            .container-therapy-bottom {
                padding: 1.4rem;
            }
        }
    }
}