@charset "UTF-8";

.ftc-competence {
    display: flex;
    flex-direction: column;
    padding: 45px var(--global-block-padding) 60px;
}

.ftc-competence__title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
    color:var(--pmn--pink);
}

.ftc-competence[style="background-color: var(--pmn--pink);"] .ftc-competence__link,
.ftc-competence[style="background-color: var(--pmn--pink);"] .ftc-competence__list__item{
    color:white;
}

.ftc-competence[style="background-color: var(--pmn--pink);"] .ftc-competence__link::after {
    background-image: var(--pmn--icon--arrow--right--white);
}
    

.ftc-competence__description {
    font-size: 14px;
    line-height: 22px;
}
.ftc-competence__link {
    margin-top: 25px;
}
.pink .ftc-competence__link {
    color:white;
}
.ftc-competence__link {
    color:var(--pmn--blue);
}
.ftc-competence__list-container {
    display: flex;
    flex-direction: column;
}

.ftc-competence__list {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-flow: column nowrap;
    margin-top: 30px;
}
.ftc-competence__list__item {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 15px;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}
.ftc-competence__list__item::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: var(--pmn--icon--check--blue-light);
    background-size: contain;
    background-repeat: no-repeat;
    flex: none;
}

.ftc-competence__list__item.has-picto::before {
    content: none;
}
.ftc-competence__list__item-img {
    display: inline-flex;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.ftc-competence__link {
    font-size: 14px;
    line-height: 22px;
}

@media screen and (max-width: 767px) {
    .ftc-competence__list {
        row-gap: 20px;
    }
}
@media screen and (min-width: 768px) {
    .ftc-competence {
        flex-direction: row;
        padding: 0;
    }
    .ftc-competence__textcontent {
        margin-bottom: 20px;
        background-color:white;
    }
    section[style="background-color: var(--pmn--pink);"] .ftc-competence__textcontent h1,
    section[style="background-color: var(--pmn--pink);"] .ftc-competence__textcontent h2,
    section[style="background-color: var(--pmn--pink);"] .ftc-competence__textcontent h3,
    section[style="background-color: var(--pmn--pink);"] .ftc-competence__textcontent h4,
    section[style="background-color: var(--pmn--pink);"] .ftc-competence__textcontent h5,
    section[style="background-color: var(--pmn--pink);"] .ftc-competence__textcontent h6 {
        color:black;
    }
    .ftc-competence__textcontent p {
        color:black;
    }
    section[style="background-color: var(--pmn--pink);"] h2.ftc-competence__title {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 30px;
        color:var(--pmn--pink);
    }
    section.pink h2.ftc-competence__title {
        color:black;
    }
    .ftc-competence__description {
        font-size: 18px;
        line-height: 28px;
    }
    .pink .ftc-competence__textcontent {
        color:black;
    }
    .ftc-competence__list {
        row-gap: 40px;
        margin-top: 0;
    }
    .ftc-competence__list__item {
        line-height: 26px;
    }
    .ftc-competence__textcontent {
        width: 60%;
        margin-bottom: 0;
        padding: 105px 4vw 80px var(--global-block-padding);
    }
    .pink .ftc-competence__textcontent {
        background-color:white;
    }
    .ftc-competence__link {
        font-size: 18px;
        line-height: 28px;
        margin-top: 50px;
    }

    .ftc-competence__list-container {
        width: 40%;
        padding: 105px 4vw 80px 4vw;
    }
}

/* === INTERLIGNE ENTRE TITRES === */

@media screen and (max-width: 767px) {
    .ftc-competence h2 {
        line-height:1.3 ;
    }
}
@media screen and (min-width: 768px) {
    .ftc-competence h2 {
        line-height:1.25 ;
    }
}