/*
 * Valorisation discrète du logo de navbar sur PC et tablette.
 * Le breakpoint mobile n'est pas ciblé et conserve les règles existantes.
 */
@media (min-width: 769px) {
    .csp-navbar__logo {
        width: 52px !important;
        height: 52px !important;
        flex: 0 0 52px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .csp-navbar__logo img {
        display: block;
        width: 52px !important;
        height: 52px !important;
        max-width: 100% !important;
        max-height: none !important;
        object-fit: contain;
        transform: scale(1.15);
        transform-origin: center center;
    }
}
