/* Bannière [acces-limite-1] — scoped .mhal */

.mhal {
    --navy: #071525;
    --navy-2: #0c1e32;
    --red: #c8102e;
    --blue: #1d6fbf;
    --blue-h: #155a9c;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 16px;
    padding: 16px 18px;
    background: var(--navy);
    color: #fff;
    border-top: 3px solid var(--red);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.mhal *,
.mhal *::before,
.mhal *::after {
    box-sizing: border-box;
}

.mhal-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #132a45;
    color: #fff;
}

.mhal-copy {
    flex: 1;
    min-width: 0;
}

.mhal-kicker {
    display: inline-block;
    margin-bottom: 4px;
    color: #f3b4bd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mhal-copy strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.mhal-copy p {
    margin: 4px 0 0;
    color: #9db4c9;
    font-size: 13px;
    line-height: 1.45;
}

.mhal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

.mhal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    background: var(--blue);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
}

.mhal-btn:hover {
    background: var(--blue-h);
    color: #fff !important;
}

.mhal-btn--ghost {
    background: transparent;
    border: 1px solid #3d5570;
}

.mhal-btn--ghost:hover {
    background: #132a45;
    border-color: #6b849c;
}

@media (max-width: 720px) {
    .mhal {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }
    .mhal-actions {
        width: 100%;
    }
    .mhal-btn {
        flex: 1;
    }
}
