/* =====================================
   TITRES GLOBAUX IPS2
   ===================================== */

:root {

    /* =====================================
       COULEURS GLOBALES
       ===================================== */

    --ips2-vert: #159447;
    --ips2-vert-clair: #80b827;
    --ips2-texte: #254150;
    --ips2-fond-card: #f5f7fa;
    --ips2-blanc: #ffffff;


    /* =====================================
       TITRES
       ===================================== */

    --ips2-titre-couleur: var(--ips2-vert);
    --ips2-titre-taille: 32px;
    --ips2-titre-graisse: 600;
    --ips2-titre-interligne: 1.2;
    --ips2-titre-police: inherit;

    --ips2-sous-titre-couleur: var(--ips2-texte);
    --ips2-sous-titre-taille: 22px;
    --ips2-sous-titre-graisse: 600;
    --ips2-sous-titre-interligne: 1.3;


    /* =====================================
       DIMENSIONS
       ===================================== */

    --ips2-largeur-page: 1500px;
    --ips2-marge-page: 80px;
    --ips2-padding-section-x: 55px;
    --ips2-padding-section-y: 45px;


    /* =====================================
       ARRONDIS
       ===================================== */

    --ips2-rayon-section: 28px;
    --ips2-rayon-card: 20px;
    --ips2-rayon-bouton: 24px;
}


/* Titres principaux de sections */

.presentation-equipe > h2.wp-block-heading,
.titre-publications-equipe,
.titre-collaborations-equipe,

.presentation-plateforme > h2,
.qualite-plateforme > h2,
.activites-plateforme > h2,
.contact-plateforme > h2,
.communications-section > h2,
.ressources-section h2 {

    color: var(--ips2-titre-couleur) !important;

    font-family: var(--ips2-titre-police) !important;
    font-size: var(--ips2-titre-taille) !important;
    font-weight: var(--ips2-titre-graisse) !important;
    line-height: var(--ips2-titre-interligne) !important;
}


/* Sous-titres */

.collaborations-equipe .titre-collaborations-groupe,
.news-item-texte h3,
.activite-texte h3 {

    color: var(--ips2-sous-titre-couleur) !important;

    font-size: var(--ips2-sous-titre-taille) !important;
    font-weight: var(--ips2-sous-titre-graisse) !important;
    line-height: var(--ips2-sous-titre-interligne) !important;
}

/* =====================================
   NAVIGATION BAS DE PAGE
   ===================================== */

.ips2-actions {
    width: min(
        var(--ips2-largeur-page),
        calc(100vw - var(--ips2-marge-page))
    ) !important;
    max-width: none !important;

    margin: 25px auto 70px !important;
    padding: 0 55px !important;

    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;

    position: relative !important;
    z-index: 2 !important;

    box-sizing: border-box !important;
}

.ips2-actions .wp-block-button {
    margin: 0 !important;
}

.ips2-retour .wp-block-button__link {
    padding: 12px 24px !important;

    background-color: var(--ips2-vert) !important;
    color: var(--ips2-blanc) !important;

    border: none !important;
    border-radius: var(--ips2-rayon-bouton) !important;

    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    text-decoration: none !important;
    pointer-events: auto !important;
}

.ips2-retour .wp-block-button__link:hover {
    background-color: var(--ips2-vert-clair) !important;
}


/* Smartphone */

@media (max-width: 650px) {

    .ips2-actions {
        width: calc(100vw - 40px) !important;

        margin: 25px auto 45px !important;
        padding: 0 20px !important;
    }
}