/* ===================================================================
   Footer Observatoire — Ressources & Partenaires
   Couleurs et typographie alignées sur le site (thème Granola) :
   - Vert de marque    #00514c
   - Fond crème        #f5f4ee
   - Accent jaune      #f4e5a2
   - Police héritée    Work Sans (body)

   Typo resserrée pour se rapprocher de la maquette (densité accrue).
   Tout est scopé sous .observatoire-footer : aucun impact sur le reste du site.
   =================================================================== */

.observatoire-footer {
    border-top: 1px solid #e0e6ea;
    background-color: #f5f4ee;
    padding: 32px 0;
    color: #444;
    font-size: 12px;
    line-height: 1.45;
}

.observatoire-footer .container {
    max-width: 1600px; /* maquette = 90rem */
}
.observatoire-footer p {
    font-size: 13px!important;
}


.observatoire-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 28px;
}

/* --- Colonne gauche : positionnement --------------------------------- */
.observatoire-footer__intro {
    flex: 1 1 260px;
    max-width: 33%;
    background-color: #fff;
    border-left: 4px solid #00514c;
    padding: 16px 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.observatoire-footer__intro-titre {
    font-size: 13px;
    font-weight: 700;
    color: #00514c;
    margin: 0 0 10px;
    line-height: 1.3;
}

.observatoire-footer__intro-texte {
    font-size: 11.5px;
    line-height: 1.45;
}

.observatoire-footer__intro-texte p {
    margin: 0 0 8px;
    color: #555;
}

.observatoire-footer__intro-texte p:last-child {
    margin-bottom: 0;
}

.observatoire-footer__intro-texte strong {
    color: #222;
    font-weight: 700;
}

/* --- Colonne droite : ressources ------------------------------------- */
.observatoire-footer__ressources {
    flex: 1 1 460px;
    max-width: 64%;
}

.observatoire-footer__ressources-head {
    margin-bottom: 16px;
}

.observatoire-footer__ressources-titre {
    font-size: 13px;
    font-weight: 700;
    color: #00514c;
    margin: 0 0 5px;
    line-height: 1.3;
}

.observatoire-footer__ressources-intro {
    font-size: 10.5px;
    color: #6b6b6b;
    margin: 0;
    max-width: 64ch;
    line-height: 1.4;
}

/* --- Grille dense type bibliographie --------------------------------- */
.observatoire-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    font-size: 11px;
    color: #555;
}

.observatoire-footer__cat-titre {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #00514c;
    border-bottom: 1px solid #e0e6ea;
    padding-bottom: 4px;
    margin: 0 0 10px;
    line-height: 1.3;
}

.observatoire-footer__res {
    margin: 0 0 10px;
    line-height: 1.35;
}

.observatoire-footer__res:last-child {
    margin-bottom: 0;
}

.observatoire-footer__res-nom {
    font-weight: 700;
    color: #222;
}

a.observatoire-footer__res-nom {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease;
}

a.observatoire-footer__res-nom:hover,
a.observatoire-footer__res-nom:focus {
    border-bottom-color: #00514c;
}

.observatoire-footer__res-label {
    color: #00514c;
    font-style: italic;
}

.observatoire-footer__res-desc {
    color: #666;
}

/* --- Responsive ------------------------------------------------------ */
@media (max-width: 1024px) {
    .observatoire-footer__inner {
        flex-direction: column;
    }
    .observatoire-footer__intro,
    .observatoire-footer__ressources {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 680px) {
    .observatoire-footer__grid {
        grid-template-columns: 1fr;
    }
}
