/* ==========================================================================
   Header Logo — Capsule blanche
   Fichier : css/hr-logo.css (thème enfant)
   Chargé via wp_enqueue_style
   ========================================================================== */

.hr-logo-container {
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-sizing: border-box;
    width: 100%;
    margin-top: -2px;
}

.hr-logo-capsule {
    background: #ffffff;
    padding: 6px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.hr-logo-capsule:hover {
    transform: translateY(-2px);
}

.hr-logo-capsule img {
    height: 55px;
    width: auto;
    max-width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 980px) {
    .hr-logo-container {
        height: 70px;
        justify-content: flex-start;
        padding: 25px 0;
    }

    .hr-logo-capsule {
        padding: 7px 16px;
        margin-left: 20px;
    }

    .hr-logo-capsule img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hr-logo-container {
        height: 70px;
        justify-content: flex-start;
        padding: 5px 0;
    }

    .hr-logo-capsule {
        padding: 7px 16px;
        margin-left: 20px;
    }

    .hr-logo-capsule img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hr-logo-container {
        height: 70px;
        justify-content: flex-start;
        padding: 5px 0;
    }

    .hr-logo-capsule {
        padding: 6px 14px;
        margin-left: 10px;
    }

    .hr-logo-capsule img {
        height: 42px;
    }
}