.footer-pbc {
    background-color: #0F4254;
    color: #ffffff;
    width: 100%;
    padding: 18px 0;
    font-size: 12px;
    line-height: 1.4;
    overflow: hidden;
}

.footer-pbc,
.footer-pbc * {
    box-sizing: border-box;
}

.footer-pbc .container {
    max-width: 1180px;
}

.footer-pbc__row {
    min-height: 48px;
}

/* Liens */
.footer-pbc a {
    color: #ffffff;
    text-decoration: none;
}

.footer-pbc a:hover {
    text-decoration: underline;
}

/* Colonne gauche */
.footer-pbc__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    color: #ffffff;
    font-size: 12px;
    white-space: nowrap;
}

.footer-pbc__bold {
    font-weight: 700;
}

.footer-pbc__sep {
    opacity: 0.85;
}

/* Logo centre */
.footer-pbc__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-pbc__logo picture {
    display: block;
}

.footer-pbc__logo img {
    display: block;
    width: 112px;
    max-width: 100%;
    height: auto;
}

/* Colonne droite */
.footer-pbc__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-pbc__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 5px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    text-align: right;
}

.footer-pbc__nav span {
    color: #ffffff;
    opacity: 0.9;
}

/* Tablette */
@media (max-width: 991px) {
    .footer-pbc {
        padding: 22px 0;
    }

    .footer-pbc__row {
        min-height: auto;
        row-gap: 14px;
    }

    .footer-pbc__left,
    .footer-pbc__logo,
    .footer-pbc__right {
        justify-content: center;
        text-align: center;
    }

    .footer-pbc__logo {
        order: 1;
    }

    .footer-pbc__left {
        order: 2;
        white-space: normal;
    }

    .footer-pbc__right {
        order: 3;
    }

    .footer-pbc__logo img {
        width: 120px;
    }

    .footer-pbc__nav {
        justify-content: center;
        text-align: center;
        max-width: 620px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .footer-pbc {
        padding: 12px 0;
    }

    .footer-pbc .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-pbc__row {
        row-gap: 10px;
    }

    .footer-pbc__logo img {
        width: 105px;
    }

    .footer-pbc__left {
        font-size: 10px;
        line-height: 1.4;
        justify-content: center;
        white-space: normal;
    }

    .footer-pbc__nav {
        font-size: 10px;
        line-height: 1.5;
        gap: 4px;
    }
}

/* Très petit mobile : évite que tout soit écrasé */
@media (max-width: 380px) {
    .footer-pbc__left {
        flex-direction: column;
        gap: 2px;
    }

    .footer-pbc__left .footer-pbc__sep {
        display: none;
    }

    .footer-pbc__nav {
        max-width: 320px;
    }
}