/**
* Module Loupsi Header Banner
*
* @author    Loupsi <julien.lenoir@loupsi.fr>
* @copyright 2023 Loupsi
* @license   https://www.loupsi.fr
*/

.header-banner {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-banner a {
    text-decoration: underline;
    margin-left: 5px;
}

.header-banner strong {
    font-weight: 700;
}

/* Animation pour attirer l'attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.header-banner .highlight {
    font-weight: bold;
    animation: pulse 2s infinite;
    display: inline-block;
}

/* Responsive */
@media (max-width: 767px) {
    .header-banner {
        padding: 8px 0;
        font-size: 0.9em;
    }
}