.mon-site-alerts {
    position: relative;
    z-index: 999999;
    width: 100%;
    background: #fff3cd;
    color: #302600;
    border-bottom: 1px solid #e0c45c;
    font-family: inherit;
}

.mon-site-alerts[hidden] {
    display: none;
}

.mon-site-alerts__row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.65rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0.65rem 1rem;
    font-size: 15px;
    line-height: 1.4;
}

.mon-site-alerts__row + .mon-site-alerts__row {
    border-top: 1px solid rgba(120, 94, 0, 0.2);
}

.mon-site-alerts__label {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.06em;
}

.mon-site-alerts__message {
    min-width: 0;
}

@media (max-width: 600px) {
    .mon-site-alerts__row {
        justify-content: flex-start;
        padding: 0.6rem 0.8rem;
        font-size: 14px;
    }
}

