/* Redesign: статус-баннеры (r__*) */

.r__status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--r__radius);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
}

.r__status i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.r__status--ok {
    background: var(--r__success-bg);
    color: var(--r__success-text);
}

.r__status--ok i {
    color: var(--r__success-icon);
}

.r__status--warn {
    background: #fffbeb;
    color: #92400e;
}

.r__info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--r__border);
    border-radius: var(--r__radius);
    background: var(--r__surface);
}

.r__info-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--r__secondary-bg);
    color: var(--r__text-muted);
    font-size: 1.1rem;
}

.r__info-box__title {
    color: var(--r__text);
    font-size: 0.875rem;
    font-weight: 700;
    word-break: break-all;
}

.r__info-box__meta {
    color: var(--r__text-muted);
    font-size: 0.75rem;
}
