:root {
    --rmbz-pub-bg: #f7f8f9;
    --rmbz-pub-card: #ffffff;
    --rmbz-pub-text: #0f172a;
    --rmbz-pub-muted: #64748b;
    --rmbz-pub-line: #e5e7eb;
    --rmbz-pub-soft: #f1f5f9;
    --rmbz-pub-green: #087f5b;
    --rmbz-pub-green-soft: #e8f7f1;
    --rmbz-pub-gold: #a66f00;
    --rmbz-pub-gold-soft: #fff7dd;
    --rmbz-pub-blue: #2563eb;
    --rmbz-pub-blue-soft: #eff6ff;
    --rmbz-pub-red: #dc2626;
    --rmbz-pub-red-soft: #fef2f2;
}
.rmbz-pub-page,
.rmbz-pub-page * { box-sizing: border-box; }
.rmbz-pub-page {
    width: calc(100% - 20px);
    max-width: none;
    margin: 18px 20px 40px 0;
    color: var(--rmbz-pub-text);
    font-family: Inter, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.rmbz-pub-page a { color: inherit; }
.rmbz-pub-page svg { display: block; width: 1em; height: 1em; fill: currentColor; }
.rmbz-pub-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
    padding: 2px 2px 0;
}
.rmbz-pub-eyebrow {
    margin: 0 0 5px;
    color: #78869a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.rmbz-pub-topbar h1 {
    margin: 0;
    color: var(--rmbz-pub-text);
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 760;
    line-height: 1.12;
    letter-spacing: -.035em;
}
.rmbz-pub-topbar p {
    margin: 7px 0 0;
    color: var(--rmbz-pub-muted);
    font-size: 13px;
}
.rmbz-pub-back,
.rmbz-pub-action,
.rmbz-pub-icon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 10px;
    background: #fff;
    color: #334155;
    box-shadow: 0 1px 2px rgba(15,23,42,.03);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.rmbz-pub-back:hover,
.rmbz-pub-action:hover,
.rmbz-pub-icon-action:hover {
    color: var(--rmbz-pub-text);
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px -8px rgba(15,23,42,.22);
}
.rmbz-pub-hero {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    min-height: 132px;
    padding: 21px 24px;
    border: 1px solid #dfe5ec;
    border-radius: 16px;
    background:
        radial-gradient(circle at 92% -30%, rgba(37,99,235,.12), transparent 31%),
        linear-gradient(115deg, #ffffff 0%, #fbfdff 62%, #f2f7ff 100%);
    box-shadow: 0 4px 20px -2px rgba(15,23,42,.035);
}
.rmbz-pub-hero:after {
    content: "";
    position: absolute;
    right: -36px;
    top: -78px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(37,99,235,.045);
    border-radius: 50%;
}
.rmbz-pub-cover-small {
    position: relative;
    z-index: 1;
    width: 88px;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    background: #eef2f7;
    box-shadow: 0 10px 24px -14px rgba(15,23,42,.38);
}
.rmbz-pub-cover-small img { width: 100%; height: 100%; object-fit: cover; }
.rmbz-pub-cover-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #64748b;
    font-size: 30px;
}
.rmbz-pub-hero-copy { position: relative; z-index: 1; min-width: 0; }
.rmbz-pub-hero-copy h2 {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--rmbz-pub-text);
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 770;
    line-height: 1.12;
    letter-spacing: -.04em;
}
.rmbz-pub-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-top: 10px;
    color: var(--rmbz-pub-muted);
    font-size: 12px;
}
.rmbz-pub-hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.rmbz-pub-status {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #eef2f7;
    color: #475569;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.rmbz-pub-status:before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.rmbz-pub-status--pendente { background: #fff5d6; color: #9a6700; }
.rmbz-pub-status--aprovado,
.rmbz-pub-status--finalizado { background: #dcfce7; color: #087f5b; }
.rmbz-pub-status--em_publicacao { background: #e8efff; color: #3157b7; }
.rmbz-pub-status--correcao { background: #fff0e5; color: #b45309; }
.rmbz-pub-status--rejeitado { background: #fee2e2; color: #b91c1c; }
.rmbz-pub-metrics {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0;
}
.rmbz-pub-metric {
    min-width: 0;
    padding: 14px 15px;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 4px 18px -10px rgba(15,23,42,.12);
}
.rmbz-pub-metric small {
    display: block;
    margin-bottom: 7px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 820;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.rmbz-pub-metric strong {
    display: block;
    overflow: hidden;
    color: #1e293b;
    font-size: 15px;
    font-weight: 760;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rmbz-pub-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(360px, .85fr);
    align-items: start;
    gap: 12px;
}
.rmbz-pub-main,
.rmbz-pub-rail { display: grid; gap: 12px; min-width: 0; }
.rmbz-pub-rail { position: sticky; top: 44px; }
.rmbz-pub-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 16px;
    background: var(--rmbz-pub-card);
    box-shadow: 0 4px 20px -2px rgba(15,23,42,.03);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.rmbz-pub-card:hover {
    border-color: #d5dbe4;
    box-shadow: 0 10px 28px -15px rgba(15,23,42,.16);
}
.rmbz-pub-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 17px;
}
.rmbz-pub-card-title { display: flex; align-items: center; gap: 11px; min-width: 0; }
.rmbz-pub-card-icon {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 11px;
    background: var(--rmbz-pub-soft);
    color: #475569;
    font-size: 20px;
}
.rmbz-pub-card-icon.is-gold { background: var(--rmbz-pub-gold-soft); color: var(--rmbz-pub-gold); }
.rmbz-pub-card-icon.is-green { background: var(--rmbz-pub-green-soft); color: var(--rmbz-pub-green); }
.rmbz-pub-card-icon.is-blue { background: var(--rmbz-pub-blue-soft); color: var(--rmbz-pub-blue); }
.rmbz-pub-card-head h3 {
    margin: 0;
    color: var(--rmbz-pub-text);
    font-size: 15px;
    font-weight: 760;
    line-height: 1.3;
}
.rmbz-pub-card-head p {
    margin: 4px 0 0;
    color: var(--rmbz-pub-muted);
    font-size: 11px;
    line-height: 1.45;
}
.rmbz-pub-work-grid {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
    gap: 18px;
}
.rmbz-pub-artwork {
    position: relative;
    display: grid;
    min-height: 280px;
    overflow: hidden;
    place-items: center;
    border-radius: 14px;
    background: #151821;
}
.rmbz-pub-artwork img { display: block; width: 100%; height: 100%; max-height: 520px; object-fit: contain; }
.rmbz-pub-artwork-empty { color: #cbd5e1; font-size: 54px; }
.rmbz-pub-art-actions {
    display: flex;
    gap: 8px;
    margin-top: 9px;
}
.rmbz-pub-art-actions .rmbz-pub-action { flex: 1; }
.rmbz-pub-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 13px;
}
.rmbz-pub-fact {
    min-width: 0;
    padding: 13px 14px;
    border-right: 1px solid var(--rmbz-pub-line);
    border-bottom: 1px solid var(--rmbz-pub-line);
}
.rmbz-pub-fact:nth-child(2n) { border-right: 0; }
.rmbz-pub-fact:nth-last-child(-n+2) { border-bottom: 0; }
.rmbz-pub-fact small {
    display: block;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 820;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.rmbz-pub-fact strong {
    display: block;
    overflow-wrap: anywhere;
    color: #1e293b;
    font-size: 13px;
    font-weight: 720;
    line-height: 1.35;
}
.rmbz-pub-description {
    margin-top: 12px;
    padding: 15px;
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    line-height: 1.65;
    white-space: pre-wrap;
}
.rmbz-pub-audio-list { display: grid; gap: 12px; }
.rmbz-pub-audio {
    --rmbz-audio-progress: 0%;
    --rmbz-audio-volume: 82%;
    display: grid;
    grid-template-columns: minmax(190px, .42fr) minmax(360px, 1fr);
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 14px;
    background: linear-gradient(120deg, #f8fafc 0%, #fff 72%);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.rmbz-pub-audio:hover { border-color: #d6dde7; box-shadow: 0 8px 22px -14px rgba(15,23,42,.25); transform: translateY(-1px); }
.rmbz-pub-audio-copy { display: flex; align-items: center; gap: 11px; min-width: 0; }
.rmbz-pub-audio-title { display: block; min-width: 0; }
.rmbz-pub-audio-title strong { display: block; overflow: hidden; color: #172033; font-size: 12px; font-weight: 760; text-overflow: ellipsis; white-space: nowrap; }
.rmbz-pub-audio-title small { display: block; margin-top: 3px; color: #8491a3; font-size: 9px; font-weight: 650; }
.rmbz-pub-track-number {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 850;
}
.rmbz-pub-player {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 36px 74px 38px;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid #e3e8ef;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 4px 14px -10px rgba(15,23,42,.22);
}
.rmbz-pub-player button,
.rmbz-pub-player-download { display: inline-grid; width: 36px; height: 36px; margin: 0; padding: 0; place-items: center; border: 0; border-radius: 11px; background: transparent; color: #64748b; box-shadow: none; cursor: pointer; text-decoration: none; transition: background .16s ease, color .16s ease, transform .16s ease; }
.rmbz-pub-player .rmbz-pub-player-play { width: 44px; height: 44px; border-radius: 13px; background: #0f172a; color: #fff; box-shadow: 0 7px 16px -9px rgba(15,23,42,.7); }
.rmbz-pub-player button:hover,
.rmbz-pub-player-download:hover { background: #f1f5f9; color: #0f172a; transform: translateY(-1px); }
.rmbz-pub-player .rmbz-pub-player-play:hover { background: #1e293b; color: #fff; }
.rmbz-pub-player-pause-icon,
.rmbz-pub-player-muted-icon,
.rmbz-pub-player-spinner { display: none; }
.rmbz-pub-audio.is-playing .rmbz-pub-player-play-icon,
.rmbz-pub-audio.is-loading .rmbz-pub-player-play-icon,
.rmbz-pub-audio.is-loading .rmbz-pub-player-pause-icon { display: none; }
.rmbz-pub-audio.is-playing .rmbz-pub-player-pause-icon,
.rmbz-pub-audio.is-muted .rmbz-pub-player-muted-icon { display: inline-flex; }
.rmbz-pub-audio.is-muted .rmbz-pub-player-volume-icon { display: none; }
.rmbz-pub-audio.is-loading .rmbz-pub-player-spinner { display: block; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: rmbz-pub-audio-spin .75s linear infinite; }
.rmbz-pub-audio.is-error { border-color: #fecaca; background: #fffafa; }
.rmbz-pub-audio.is-error .rmbz-pub-player-play { background: #dc2626; }
.rmbz-pub-player-timeline { min-width: 0; }
.rmbz-pub-player-time { display: flex; justify-content: space-between; margin-top: 4px; color: #7b8798; font-size: 9px; font-variant-numeric: tabular-nums; font-weight: 700; }
.rmbz-pub-player input[type="range"] { width: 100%; min-width: 0; height: 16px; margin: 0; padding: 0; border: 0; outline: 0; appearance: none; -webkit-appearance: none; background: transparent; box-shadow: none; cursor: pointer; }
.rmbz-pub-player input[type="range"]::-webkit-slider-runnable-track { height: 5px; border-radius: 999px; background: linear-gradient(90deg, #2563eb 0 var(--rmbz-audio-progress), #e2e8f0 var(--rmbz-audio-progress) 100%); }
.rmbz-pub-player .rmbz-pub-player-volume::-webkit-slider-runnable-track { background: linear-gradient(90deg, #64748b 0 var(--rmbz-audio-volume), #e2e8f0 var(--rmbz-audio-volume) 100%); }
.rmbz-pub-player input[type="range"]::-webkit-slider-thumb { width: 14px; height: 14px; margin-top: -4.5px; border: 3px solid #fff; border-radius: 50%; appearance: none; -webkit-appearance: none; background: #2563eb; box-shadow: 0 1px 5px rgba(15,23,42,.28); }
.rmbz-pub-player .rmbz-pub-player-volume::-webkit-slider-thumb { background: #64748b; }
.rmbz-pub-player input[type="range"]::-moz-range-track { height: 5px; border: 0; border-radius: 999px; background: #e2e8f0; }
.rmbz-pub-player input[type="range"]::-moz-range-progress { height: 5px; border-radius: 999px; background: #2563eb; }
.rmbz-pub-player input[type="range"]::-moz-range-thumb { width: 9px; height: 9px; border: 3px solid #fff; border-radius: 50%; background: #2563eb; box-shadow: 0 1px 5px rgba(15,23,42,.28); }
.rmbz-pub-player audio { display: none; }
@keyframes rmbz-pub-audio-spin { to { transform: rotate(360deg); } }
@media (max-width: 680px) {
    .rmbz-pub-audio { grid-template-columns: 1fr; gap: 10px; }
    .rmbz-pub-player { grid-template-columns: 44px minmax(0, 1fr) 36px 38px; }
    .rmbz-pub-player-volume { display: none !important; }
}
.rmbz-pub-person {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 13px;
    background: #fbfcfd;
}
.rmbz-pub-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    background: #f1f5f9;
    color: #334155;
    font-size: 14px;
    font-weight: 850;
}
.rmbz-pub-person h4 { margin: 0; color: var(--rmbz-pub-text); font-size: 14px; }
.rmbz-pub-person-meta { display: flex; flex-wrap: wrap; gap: 5px 12px; margin-top: 5px; color: var(--rmbz-pub-muted); font-size: 11px; }
.rmbz-pub-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 12px; }
.rmbz-pub-link {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 10px;
    background: #fff;
}
.rmbz-pub-link-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: #f1f5f9; color: #475569; }
.rmbz-pub-link a { overflow: hidden; color: #334155; font-size: 11px; font-weight: 650; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.rmbz-pub-track-card {
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid #bfe6d6;
    border-radius: 13px;
    background: linear-gradient(135deg, #f0fbf7, #ffffff);
}
.rmbz-pub-track-top {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
}
.rmbz-pub-track-photo {
    display: grid;
    width: 40px;
    height: 40px;
    overflow: hidden;
    place-items: center;
    border-radius: 11px;
    background: #dff5ec;
    color: var(--rmbz-pub-green);
    font-weight: 850;
}
.rmbz-pub-track-photo img { width: 100%; height: 100%; object-fit: cover; }
.rmbz-pub-track-copy { min-width: 0; }
.rmbz-pub-track-copy small { display: block; color: var(--rmbz-pub-green); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.rmbz-pub-track-copy strong { display: block; margin-top: 3px; overflow: hidden; color: #134e3a; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.rmbz-pub-track-copy span { display: block; margin-top: 2px; color: #4f7669; font-size: 10px; }
.rmbz-pub-track-rule {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid #cfeadf;
    color: #315f50;
    font-size: 10px;
    line-height: 1.5;
}
.rmbz-pub-track-card.is-missing { border-color: #fecaca; background: #fff8f8; }
.rmbz-pub-track-card.is-missing .rmbz-pub-track-copy small,
.rmbz-pub-track-card.is-missing .rmbz-pub-track-photo { color: #b91c1c; }
.rmbz-pub-rail form { margin: 0; }
.rmbz-pub-status-label,
.rmbz-pub-field-label {
    display: block;
    margin: 0 0 8px;
    color: #475569;
    font-size: 10px;
    font-weight: 820;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.rmbz-pub-status-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 17px;
}
.rmbz-pub-status-pills .rmbz-mod-status-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    min-height: 39px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid var(--rmbz-pub-line);
    border-radius: 10px;
    background: #fff;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}
.rmbz-pub-status-pills .rmbz-mod-status-pill:hover { border-color: #cbd5e1; background: #f8fafc; }
.rmbz-pub-status-pills .rmbz-mod-status-pill.is-active { border-color: #0f172a; background: #0f172a; color: #fff; }
.rmbz-pub-status-pills .kbdhint { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 6px; background: rgba(148,163,184,.18); font-size: 9px; }
.rmbz-pub-field { margin-top: 15px; }
.rmbz-pub-page select,
.rmbz-pub-page input[type="datetime-local"],
.rmbz-pub-page textarea {
    width: 100%;
    min-height: 43px;
    margin: 0;
    padding: 9px 11px;
    border: 1px solid #d7dee7;
    border-radius: 10px;
    background: #fff;
    color: #1e293b;
    font: 500 12px/1.4 inherit;
    box-shadow: none;
}
.rmbz-pub-page select:focus,
.rmbz-pub-page input[type="datetime-local"]:focus,
.rmbz-pub-page textarea:focus { border-color: #64748b; box-shadow: 0 0 0 3px rgba(100,116,139,.1); outline: 0; }
.rmbz-pub-help { margin: 6px 0 0; color: #7c899a; font-size: 10px; line-height: 1.5; }
.rmbz-pub-official-link {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
    padding: 10px;
    border: 1px solid #bfe6d6;
    border-radius: 10px;
    background: #f0fbf7;
}
.rmbz-pub-official-link a:first-of-type { min-width: 0; flex: 1; overflow: hidden; color: #126047; font-size: 11px; font-weight: 720; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.rmbz-pub-rejbox {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    background: #fffaf3;
}
.rmbz-pub-rejbox.rmbz-mod-rejbox--rejeitado { border-color: #fecaca; background: #fff8f8; }
.rmbz-pub-fixflags { margin-bottom: 11px; }
.rmbz-pub-fixflags strong { display: block; margin-bottom: 7px; color: #7c2d12; font-size: 11px; }
.rmbz-pub-fixflags label { display: inline-flex; align-items: center; gap: 5px; margin: 0 10px 5px 0; color: #7c2d12; font-size: 11px; }
.rmbz-pub-save-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
}
.rmbz-pub-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 0;
    border-radius: 11px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 760;
    cursor: pointer;
    box-shadow: 0 7px 18px -10px rgba(15,23,42,.65);
}
.rmbz-pub-save:hover { background: #1e293b; color: #fff; transform: translateY(-1px); }
.rmbz-pub-kbd { display: inline-flex; align-items: center; justify-content: center; min-width: 21px; height: 21px; padding: 0 6px; border: 1px solid #d7dee7; border-radius: 6px; background: #fff; color: #64748b; font-size: 9px; font-weight: 750; }
.rmbz-pub-empty { padding: 15px; border: 1px dashed #cbd5e1; border-radius: 12px; color: #64748b; font-size: 11px; text-align: center; }
.rmbz-pub-page .rmbz-mod-toast { font-family: inherit; }
@media (max-width: 1360px) {
    .rmbz-pub-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .rmbz-pub-layout { grid-template-columns: minmax(0, 1.45fr) minmax(340px, .75fr); }
}
@media (max-width: 1080px) {
    .rmbz-pub-layout { grid-template-columns: 1fr; }
    .rmbz-pub-rail { position: static; }
}
@media (max-width: 782px) {
    .rmbz-pub-page { width: calc(100% - 10px); margin: 10px 10px 30px 0; }
    .rmbz-pub-topbar { align-items: flex-start; }
    .rmbz-pub-topbar p { display: none; }
    .rmbz-pub-back span { display: none; }
    .rmbz-pub-hero { grid-template-columns: 66px minmax(0, 1fr); gap: 13px; min-height: 0; padding: 16px; }
    .rmbz-pub-cover-small { width: 66px; }
    .rmbz-pub-status { grid-column: 1 / -1; justify-self: start; }
    .rmbz-pub-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rmbz-pub-work-grid { grid-template-columns: 1fr; }
    .rmbz-pub-artwork { min-height: 220px; }
    .rmbz-pub-links { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .rmbz-pub-card { padding: 15px; border-radius: 14px; }
    .rmbz-pub-metrics { grid-template-columns: 1fr 1fr; }
    .rmbz-pub-metric { padding: 11px; }
    .rmbz-pub-metric strong { font-size: 13px; }
    .rmbz-pub-facts { grid-template-columns: 1fr; }
    .rmbz-pub-fact { border-right: 0; }
    .rmbz-pub-fact:nth-last-child(-n+2) { border-bottom: 1px solid var(--rmbz-pub-line); }
    .rmbz-pub-fact:last-child { border-bottom: 0; }
    .rmbz-pub-audio { grid-template-columns: 1fr; }
    .rmbz-pub-person { grid-template-columns: auto minmax(0, 1fr); }
    .rmbz-pub-person .rmbz-pub-action { grid-column: 1 / -1; width: 100%; }
}
.rmbz-pub-search-select { position: relative; display: flex; align-items: center; margin-bottom: 8px; }
.rmbz-pub-search-select .dashicons { position: absolute; left: 12px; z-index: 1; width: 18px; height: 18px; color: #94a3b8; font-size: 18px; }
.rmbz-pub-search-select input[type="search"] { width: 100%; min-height: 40px; margin: 0; padding: 0 12px 0 38px; border: 1px solid var(--rmbz-pub-line); border-radius: 10px; background: #f8fafc; color: var(--rmbz-pub-text); box-shadow: none; font-size: 11px; }
.rmbz-pub-search-select input[type="search"]:focus { border-color: #64748b; background: #fff; box-shadow: 0 0 0 3px rgba(100,116,139,.1); outline: 0; }
/* == Site publication queue | 1.5.618 == */
.rmbz-mod-wrap.rmbz-site-list {
    --rmbz-list-canvas: #f7f8fa;
    --rmbz-list-surface: #ffffff;
    --rmbz-list-surface-soft: #f8fafc;
    --rmbz-list-line: #e5e7eb;
    --rmbz-list-line-strong: #d7dee8;
    --rmbz-list-text: #0f172a;
    --rmbz-list-muted: #64748b;
    --rmbz-list-blue: #2563eb;
    --rmbz-list-green: #059669;
    --rmbz-list-amber: #b7791f;
    --rmbz-list-red: #dc2626;
    width: calc(100% + 20px);
    max-width: none;
    min-height: calc(100vh - 32px);
    margin: 0 0 0 -20px;
    padding: 24px clamp(18px, 2.1vw, 34px) 44px;
    overflow-x: clip;
    box-sizing: border-box;
    background: var(--rmbz-list-canvas);
    color: var(--rmbz-list-text);
    font-family: Inter, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.rmbz-site-list,
.rmbz-site-list * { box-sizing: border-box; }
.rmbz-site-list svg { display: block; width: 1em; height: 1em; fill: currentColor; }
.rmbz-site-list a:focus-visible,
.rmbz-site-list button:focus-visible,
.rmbz-site-list input:focus-visible,
.rmbz-site-list [tabindex="0"]:focus-visible { outline: 3px solid rgba(37, 99, 235, .22); outline-offset: 2px; }
.rmbz-site-list-hero {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 132px;
    padding: 24px 26px;
    overflow: hidden;
    border: 1px solid var(--rmbz-list-line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% -10%, rgba(37, 99, 235, .10) 0 88px, transparent 89px),
        linear-gradient(135deg, #fff 0%, #fbfdff 67%, #f3f7ff 100%);
    box-shadow: 0 4px 22px -8px rgba(15, 23, 42, .10);
}
.rmbz-site-list-hero::after {
    content: "";
    position: absolute;
    right: 80px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border: 28px solid rgba(37, 99, 235, .035);
    border-radius: 50%;
    pointer-events: none;
}
.rmbz-site-list-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid #dbe7ff;
    border-radius: 16px;
    background: #eef4ff;
    color: var(--rmbz-list-blue);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.rmbz-site-list-hero-icon svg { width: 28px; height: 28px; }
.rmbz-site-list-hero-copy { min-width: 0; }
.rmbz-site-list-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #52647b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}
.rmbz-site-list-hero h1 {
    margin: 0;
    color: var(--rmbz-list-text);
    font-size: clamp(25px, 2.15vw, 34px);
    font-weight: 780;
    letter-spacing: -.04em;
    line-height: 1.05;
}
.rmbz-site-list-hero-copy p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--rmbz-list-muted);
    font-size: 13px;
    line-height: 1.55;
}
.rmbz-site-list-hero-state {
    position: relative;
    z-index: 1;
    min-width: 190px;
    padding-left: 24px;
    border-left: 1px solid var(--rmbz-list-line);
    text-align: right;
}
.rmbz-site-list-sync,
.rmbz-site-list-records {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid #ccebdc;
    border-radius: 999px;
    background: #effcf5;
    color: #14734e;
    font-size: 10px;
    font-weight: 760;
    white-space: nowrap;
}
.rmbz-site-list-sync i,
.rmbz-site-list-records i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16,185,129,.10);
}
.rmbz-site-list-hero-state strong {
    display: block;
    margin-top: 9px;
    color: var(--rmbz-list-text);
    font-size: 28px;
    font-weight: 780;
    letter-spacing: -.04em;
    line-height: 1;
}
.rmbz-site-list-hero-state small { display: block; margin-top: 4px; color: var(--rmbz-list-muted); font-size: 10px; }
.rmbz-site-list-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0;
}
.rmbz-site-list-metric {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 92px;
    padding: 14px;
    border: 1px solid var(--rmbz-list-line);
    border-radius: 14px;
    background: var(--rmbz-list-surface);
    box-shadow: 0 4px 20px -12px rgba(15, 23, 42, .20);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.rmbz-site-list-metric:hover { transform: translateY(-2px); border-color: #cfd7e2; box-shadow: 0 10px 25px -16px rgba(15,23,42,.28); }
.rmbz-site-list-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
}
.rmbz-site-list-metric.is-blue .rmbz-site-list-metric-icon { background: #eef4ff; color: #2563eb; }
.rmbz-site-list-metric.is-amber .rmbz-site-list-metric-icon { background: #fff7e8; color: #b7791f; }
.rmbz-site-list-metric.is-violet .rmbz-site-list-metric-icon { background: #f3efff; color: #7c3aed; }
.rmbz-site-list-metric.is-green .rmbz-site-list-metric-icon { background: #ecfdf5; color: #059669; }
.rmbz-site-list-metric.is-red .rmbz-site-list-metric-icon { background: #fff1f2; color: #dc2626; }
.rmbz-site-list-metric > span:last-child { min-width: 0; }
.rmbz-site-list-metric small,
.rmbz-site-list-metric em { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rmbz-site-list-metric small { color: #738197; font-size: 9px; font-style: normal; font-weight: 780; letter-spacing: .07em; text-transform: uppercase; }
.rmbz-site-list-metric strong { display: block; margin: 2px 0; color: var(--rmbz-list-text); font-size: 21px; font-weight: 780; line-height: 1.1; }
.rmbz-site-list-metric em { color: var(--rmbz-list-muted); font-size: 9px; font-style: normal; }
.rmbz-site-list-workspace {
    padding: 20px;
    border: 1px solid var(--rmbz-list-line);
    border-radius: 18px;
    background: var(--rmbz-list-surface);
    box-shadow: 0 8px 28px -20px rgba(15,23,42,.25);
}
.rmbz-site-list-workspace-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 2px 2px 17px;
}
.rmbz-site-list-workspace-head h2 { margin: 0; color: var(--rmbz-list-text); font-size: 17px; font-weight: 760; letter-spacing: -.02em; line-height: 1.2; }
.rmbz-site-list-workspace-head p { margin: 5px 0 0; color: var(--rmbz-list-muted); font-size: 11px; }
.rmbz-site-list-records { border-color: var(--rmbz-list-line); background: var(--rmbz-list-surface-soft); color: #52647b; }
.rmbz-site-list-toolbar.rmbz-mod-toolbar {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.5fr);
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    padding: 12px;
    border: 1px solid var(--rmbz-list-line);
    border-radius: 14px;
    background: #f8fafc;
}
.rmbz-site-list-search.rmbz-mod-search {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    padding: 0 8px 0 12px;
    border: 1px solid var(--rmbz-list-line-strong);
    border-radius: 11px;
    background: #fff;
    color: #8491a3;
    box-shadow: 0 1px 2px rgba(15,23,42,.02);
}
.rmbz-site-list-search.rmbz-mod-search:focus-within { border-color: #93b4f8; box-shadow: 0 0 0 3px rgba(37,99,235,.10); }
.rmbz-site-list-search input[type="text"] {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--rmbz-list-text);
    font-size: 12px;
    box-shadow: none;
}
.rmbz-site-list-search input[type="text"]:focus { border: 0; outline: 0; box-shadow: none; }
.rmbz-site-list-search .rmbz-mod-search-clear { position: static; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; margin: 0; border: 0; border-radius: 8px; background: transparent; color: #64748b; font-size: 19px; cursor: pointer; }
.rmbz-site-list-search .rmbz-mod-search-clear:hover { background: #eef2f7; color: #0f172a; }
.rmbz-site-list-filters.rmbz-mod-filters { display: flex; align-items: center; justify-content: flex-end; gap: 6px; min-width: 0; margin: 0; overflow-x: auto; scrollbar-width: thin; }
.rmbz-site-list-filters .rmbz-mod-filter {
    flex: 0 0 auto;
    min-height: 36px;
    margin: 0;
    padding: 0 11px;
    border: 1px solid var(--rmbz-list-line);
    border-radius: 9px;
    background: #fff;
    color: #526075;
    font-size: 10px;
    font-weight: 720;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.rmbz-site-list-filters .rmbz-mod-filter:hover { border-color: #c7d0dc; color: #0f172a; }
.rmbz-site-list-filters .rmbz-mod-filter.is-active { border-color: #0f172a; background: #0f172a; color: #fff; box-shadow: 0 5px 13px -9px rgba(15,23,42,.8); }
.rmbz-site-list-filters .rmbz-mod-filter-count { display: inline-flex; align-items: center; justify-content: center; min-width: 19px; height: 19px; margin-left: 5px; padding: 0 5px; border-radius: 999px; background: #eef2f7; color: #526075; font-size: 9px; }
.rmbz-site-list-filters .is-active .rmbz-mod-filter-count { background: rgba(255,255,255,.16); color: #fff; }
.rmbz-site-list-results.rmbz-mod-list { display: grid; gap: 9px; margin: 0; }
.rmbz-site-list .rmbz-site-submission.rmbz-mod-row {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(260px, 1fr) minmax(155px, .28fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 98px;
    margin: 0;
    padding: 11px 12px;
    overflow: hidden;
    border: 1px solid var(--rmbz-list-line);
    border-left: 3px solid #cbd5e1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 3px 14px -13px rgba(15,23,42,.35);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.rmbz-site-list .rmbz-site-submission.rmbz-mod-row:hover { transform: translateY(-2px); border-color: #cbd5e1; box-shadow: 0 12px 27px -20px rgba(15,23,42,.36); background: #fefefe; }
.rmbz-site-list .rmbz-site-submission[data-status="pendente"] { border-left-color: #f59e0b; }
.rmbz-site-list .rmbz-site-submission[data-status="aprovado"],
.rmbz-site-list .rmbz-site-submission[data-status="em_publicacao"] { border-left-color: #3b82f6; }
.rmbz-site-list .rmbz-site-submission[data-status="finalizado"] { border-left-color: #10b981; }
.rmbz-site-list .rmbz-site-submission[data-status="correcao"] { border-left-color: #f97316; }
.rmbz-site-list .rmbz-site-submission[data-status="rejeitado"] { border-left-color: #ef4444; }
.rmbz-site-list .rmbz-site-submission.is-pending { background: linear-gradient(90deg, #fffdf7 0, #fff 160px); }
.rmbz-site-submission-cover.rmbz-mod-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    overflow: hidden;
    border: 1px solid var(--rmbz-list-line);
    border-radius: 12px;
    background: #f1f5f9;
    color: #738197;
}
.rmbz-site-submission-cover img { width: 100%; height: 100%; object-fit: cover; }
.rmbz-site-submission-cover > span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: #fff; color: #64748b; }
.rmbz-site-submission-copy { min-width: 0; }
.rmbz-site-submission-kicker { display: block; margin-bottom: 5px; color: #8692a3; font-size: 9px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.rmbz-site-list .rmbz-site-submission .rmbz-mod-title { max-width: 760px; margin: 0; overflow: hidden; color: var(--rmbz-list-text); font-size: 14px; font-weight: 760; letter-spacing: -.015em; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.rmbz-site-submission-meta.rmbz-mod-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 7px; color: var(--rmbz-list-muted); font-size: 10px; }
.rmbz-site-submission-meta > span { display: inline-flex; align-items: center; gap: 5px; min-width: 0; }
.rmbz-site-submission-meta svg { flex: 0 0 auto; color: #8290a3; }
.rmbz-site-submission-published { display: inline-flex; align-items: center; gap: 5px; max-width: 100%; margin-top: 7px; color: #087d58; font-size: 10px; font-weight: 700; text-decoration: none; }
.rmbz-site-submission-published:hover { color: #065f46; text-decoration: underline; }
.rmbz-site-submission-state { min-width: 0; }
.rmbz-site-submission-state .rmbz-mod-status { display: inline-flex; align-items: center; min-height: 28px; margin: 0; white-space: nowrap; }
.rmbz-site-submission-state small { display: block; margin-top: 6px; overflow: hidden; color: #7b8798; font-size: 9px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.rmbz-site-submission-actions.rmbz-mod-actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; min-width: 0; }
.rmbz-site-list .rmbz-mod-icon-btn,
.rmbz-site-submission-manage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid var(--rmbz-list-line-strong);
    border-radius: 10px;
    background: #fff;
    color: #536176;
    text-decoration: none;
    box-shadow: 0 2px 8px -7px rgba(15,23,42,.6);
    transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}
.rmbz-site-list .rmbz-mod-icon-btn:hover { transform: translateY(-1px); border-color: #b9c4d1; background: #f8fafc; color: #0f172a; }
.rmbz-site-list .rmbz-mod-icon-btn.is-danger { border-color: #fecaca; color: #dc2626; }
.rmbz-site-list .rmbz-mod-icon-btn.is-danger:hover { border-color: #fca5a5; background: #fff1f2; color: #b91c1c; }
.rmbz-site-submission-manage { gap: 7px; min-width: 142px; padding: 0 13px; border-color: #0f172a; background: #0f172a; color: #fff; font-size: 10px; font-weight: 750; }
.rmbz-site-submission-manage:hover { transform: translateY(-1px); border-color: #1e293b; background: #1e293b; color: #fff; box-shadow: 0 8px 18px -12px rgba(15,23,42,.8); }
.rmbz-site-list-kbdtip.rmbz-mod-kbdtip { display: flex; align-items: center; gap: 16px; margin: 14px 0 0; padding: 13px 2px 0; border-top: 1px solid var(--rmbz-list-line); color: #7b8798; font-size: 9px; }
.rmbz-site-list-kbdtip > span { display: inline-flex; align-items: center; gap: 4px; }
.rmbz-site-list-kbdtip .rmbz-mod-kbd { border-color: #dbe1e9; background: #f8fafc; color: #526075; }
.rmbz-site-list-empty.rmbz-mod-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 280px; padding: 30px; border: 1px dashed #cbd5e1; border-radius: 14px; background: #fafcff; color: #64748b; text-align: center; }
.rmbz-site-list-empty > span { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin-bottom: 13px; border-radius: 16px; background: #eef4ff; color: #2563eb; }
.rmbz-site-list-empty strong { color: #0f172a; font-size: 15px; }
.rmbz-site-list-empty p { max-width: 430px; margin: 6px 0 0; font-size: 11px; line-height: 1.5; }
@media (max-width: 1320px) {
    .rmbz-site-list-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .rmbz-site-list .rmbz-site-submission.rmbz-mod-row { grid-template-columns: 70px minmax(240px, 1fr) minmax(140px, .3fr) auto; }
    .rmbz-site-submission-cover.rmbz-mod-thumb { width: 70px; height: 70px; }
    .rmbz-site-submission-manage { min-width: 40px; width: 40px; padding: 0; }
    .rmbz-site-submission-manage span { display: none; }
}
@media (max-width: 1080px) {
    .rmbz-site-list-toolbar.rmbz-mod-toolbar { grid-template-columns: 1fr; }
    .rmbz-site-list-filters.rmbz-mod-filters { justify-content: flex-start; }
    .rmbz-site-list .rmbz-site-submission.rmbz-mod-row { grid-template-columns: 68px minmax(0, 1fr) auto; }
    .rmbz-site-submission-state { grid-column: 2; }
    .rmbz-site-submission-actions.rmbz-mod-actions { grid-column: 3; grid-row: 1 / span 2; }
}
@media (max-width: 782px) {
    .rmbz-mod-wrap.rmbz-site-list { width: calc(100% + 10px); min-height: 100vh; margin-left: -10px; padding: 12px 12px 90px; }
    .rmbz-site-list-hero { grid-template-columns: 50px minmax(0, 1fr); min-height: 0; padding: 17px; border-radius: 16px; }
    .rmbz-site-list-hero-icon { width: 50px; height: 50px; border-radius: 14px; }
    .rmbz-site-list-hero h1 { font-size: 24px; }
    .rmbz-site-list-hero-copy p { font-size: 11px; }
    .rmbz-site-list-hero-state { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 7px 10px; min-width: 0; padding: 12px 0 0; border-top: 1px solid var(--rmbz-list-line); border-left: 0; text-align: left; }
    .rmbz-site-list-hero-state strong { justify-self: end; margin: 0; font-size: 22px; }
    .rmbz-site-list-hero-state small { grid-column: 1 / -1; margin: 0; }
    .rmbz-site-list-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rmbz-site-list-metric { min-height: 84px; }
    .rmbz-site-list-workspace { padding: 14px; border-radius: 16px; }
    .rmbz-site-list-workspace-head { align-items: center; }
    .rmbz-site-list-workspace-head p { display: none; }
    .rmbz-site-list-toolbar.rmbz-mod-toolbar { padding: 9px; }
    .rmbz-site-list .rmbz-site-submission.rmbz-mod-row { grid-template-columns: 62px minmax(0, 1fr); gap: 11px; padding: 10px; }
    .rmbz-site-submission-cover.rmbz-mod-thumb { width: 62px; height: 62px; }
    .rmbz-site-submission-state { grid-column: 2; }
    .rmbz-site-submission-actions.rmbz-mod-actions { grid-column: 1 / -1; grid-row: auto; justify-content: flex-end; padding-top: 10px; border-top: 1px solid #eef1f5; }
    .rmbz-site-submission-manage { flex: 1 1 auto; width: auto; max-width: 190px; }
    .rmbz-site-submission-manage span { display: inline; }
    .rmbz-site-list-kbdtip { display: none !important; }
}
@media (max-width: 520px) {
    .rmbz-site-list-hero { gap: 12px; }
    .rmbz-site-list-eyebrow { font-size: 9px; }
    .rmbz-site-list-hero h1 { font-size: 21px; }
    .rmbz-site-list-metrics { gap: 8px; }
    .rmbz-site-list-metric { grid-template-columns: 34px minmax(0, 1fr); gap: 8px; min-height: 78px; padding: 10px; }
    .rmbz-site-list-metric-icon { width: 34px; height: 34px; border-radius: 10px; }
    .rmbz-site-list-metric strong { font-size: 18px; }
    .rmbz-site-list-metric em { display: none; }
    .rmbz-site-list-workspace-head { gap: 9px; }
    .rmbz-site-list-records { padding: 0 8px; font-size: 9px; }
    .rmbz-site-submission-kicker { font-size: 8px; }
    .rmbz-site-list .rmbz-site-submission .rmbz-mod-title { font-size: 13px; }
    .rmbz-site-submission-meta.rmbz-mod-sub { gap: 6px 9px; }
    .rmbz-site-submission-state small { white-space: normal; }
}
/* == Social video moderation | 1.5.622 == */
.rmbz-social-list-hero {
    background:
        radial-gradient(circle at 92% -10%, rgba(124, 58, 237, .11) 0 88px, transparent 89px),
        linear-gradient(135deg, #fff 0%, #fcfbff 67%, #f6f2ff 100%);
}
.rmbz-social-list-hero .rmbz-site-list-hero-icon {
    border-color: #e5ddff;
    background: #f3efff;
    color: #6d3fd3;
}
.rmbz-social-list .rmbz-social-submission.rmbz-mod-row {
    grid-template-columns: 112px minmax(260px, 1fr) minmax(155px, .28fr) auto;
}
.rmbz-social-submission-cover.rmbz-site-submission-cover.rmbz-mod-thumb {
    width: 112px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 11px;
    background: #f4f1fb;
}
.rmbz-social-submission-cover > span {
    background: rgba(255,255,255,.86);
    color: #6d3fd3;
}
.rmbz-social-channel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.rmbz-social-channel {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #526075;
    font-size: 9px;
    font-weight: 740;
    text-decoration: none;
}
.rmbz-social-channel:hover { transform: translateY(-1px); }
.rmbz-social-channel.is-facebook { border-color: #dbe7ff; background: #f3f7ff; color: #2563eb; }
.rmbz-social-channel.is-youtube { border-color: #fee2e2; background: #fff5f5; color: #dc2626; }

.rmbz-mod-wrap.rmbz-pub-page.rmbz-social-detail {
    width: calc(100% + 20px);
    max-width: none;
    min-height: calc(100vh - 32px);
    margin: 0 0 0 -20px;
    padding: 24px clamp(18px, 2.1vw, 34px) 44px;
    overflow-x: clip;
    background: #f7f8fa;
    color: #0f172a;
}
.rmbz-social-detail,
.rmbz-social-detail * { box-sizing: border-box; }
.rmbz-social-detail .rmbz-social-detail-topbar {
    min-height: 64px;
    margin-bottom: 12px;
    padding: 0 2px;
}
.rmbz-social-detail-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.rmbz-social-detail-heading-icon {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #e3dcfa;
    border-radius: 13px;
    background: #f3efff;
    color: #6d3fd3;
}
.rmbz-social-detail-heading .rmbz-pub-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #7a689c;
    font-size: 9px;
}
.rmbz-social-detail .rmbz-social-detail-heading h1 {
    margin: 0;
    font-size: clamp(23px, 1.85vw, 30px);
    font-weight: 780;
    letter-spacing: -.035em;
    line-height: 1.05;
}
.rmbz-social-detail .rmbz-social-detail-heading .sub {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 11px;
}
.rmbz-social-detail .rmbz-mod-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #dce2ea;
    border-radius: 10px;
    background: #fff;
    color: #425066;
    box-shadow: 0 1px 2px rgba(15,23,42,.03);
    font-size: 11px;
    font-weight: 720;
    text-decoration: none;
}
.rmbz-social-detail .rmbz-mod-back-btn:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}
.rmbz-social-detail .rmbz-social-detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 126px;
    margin: 0;
    padding: 20px 22px;
    overflow: hidden;
    border: 1px solid #e2e5eb;
    border-radius: 17px;
    background:
        radial-gradient(circle at 95% -22%, rgba(124,58,237,.12) 0 98px, transparent 99px),
        linear-gradient(125deg, #fff 0%, #fcfbff 66%, #f5f1ff 100%);
    box-shadow: 0 5px 22px -13px rgba(15,23,42,.20);
}
.rmbz-social-detail .rmbz-social-detail-hero::after {
    content: "";
    position: absolute;
    right: 70px;
    bottom: -115px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(124,58,237,.035);
    border-radius: 50%;
    pointer-events: none;
}
.rmbz-social-detail .rmbz-social-detail-hero-thumb {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.09);
    border-radius: 12px;
    background-color: #f1f3f7;
    background-position: center;
    background-size: cover;
    box-shadow: 0 12px 28px -18px rgba(15,23,42,.48);
    color: #6d3fd3;
}
.rmbz-social-detail .rmbz-social-detail-hero-thumb .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
}
.rmbz-social-detail .rmbz-mod-hero-body { position: relative; z-index: 1; min-width: 0; }
.rmbz-social-detail .rmbz-mod-hero-title {
    margin: 0;
    overflow-wrap: anywhere;
    color: #0f172a;
    font-size: clamp(22px, 2vw, 31px);
    font-weight: 780;
    letter-spacing: -.04em;
    line-height: 1.08;
}
.rmbz-social-detail .rmbz-mod-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 11px;
    margin: 10px 0 0;
    color: #64748b;
    font-size: 11px;
}
.rmbz-social-detail .rmbz-mod-hero-meta code {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    padding: 0 9px;
    border: 1px solid #dde3eb;
    border-radius: 999px;
    background: rgba(255,255,255,.8);
    color: #475569;
    font-size: 10px;
}
.rmbz-social-detail .status-chip-big {
    position: relative;
    z-index: 2;
    border: 0;
}
.rmbz-social-detail .status-chip-big .dot { display: none; }

.rmbz-social-detail .rmbz-social-detail-metrics {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 9px;
    margin: 12px 0;
}
.rmbz-social-detail .rmbz-pub-metric {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 82px;
    padding: 12px;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.rmbz-social-detail .rmbz-pub-metric:hover {
    transform: translateY(-2px);
    border-color: #d2d9e3;
    box-shadow: 0 10px 24px -17px rgba(15,23,42,.28);
}
.rmbz-social-detail .rmbz-pub-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
}
.rmbz-social-detail .rmbz-pub-metric small { margin: 0 0 2px; font-size: 8px; }
.rmbz-social-detail .rmbz-pub-metric strong { font-size: 13px; }
.rmbz-social-detail .rmbz-pub-metric em {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: #7b8798;
    font-size: 8px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rmbz-social-detail .rmbz-pub-metric.is-blue .rmbz-pub-metric-icon { background: #eef4ff; color: #2563eb; }
.rmbz-social-detail .rmbz-pub-metric.is-violet .rmbz-pub-metric-icon { background: #f3efff; color: #7c3aed; }
.rmbz-social-detail .rmbz-pub-metric.is-amber .rmbz-pub-metric-icon { background: #fff7e6; color: #a66f00; }
.rmbz-social-detail .rmbz-pub-metric.is-green .rmbz-pub-metric-icon { background: #eaf9f2; color: #059669; }
.rmbz-social-detail .rmbz-pub-metric.is-red .rmbz-pub-metric-icon { background: #fff1f2; color: #dc2626; }
.rmbz-social-detail .rmbz-pub-metric.is-slate .rmbz-pub-metric-icon { background: #f1f5f9; color: #64748b; }

.rmbz-social-detail .rmbz-social-detail-grid {
    display: grid;
    grid-template-columns: minmax(230px, .60fr) minmax(0, 1.32fr) minmax(350px, .84fr);
    align-items: start;
    gap: 12px;
}
.rmbz-social-detail-grid .col-meta,
.rmbz-social-detail-grid .col-files,
.rmbz-social-detail-grid .col-form {
    display: grid;
    min-width: 0;
    gap: 12px;
}
.rmbz-social-detail .rmbz-social-card,
.rmbz-social-detail .rmbz-mod-artist-card {
    min-width: 0;
    margin: 0;
    padding: 18px;
    border: 1px solid #e2e6ec;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 20px -14px rgba(15,23,42,.20);
}
.rmbz-social-detail .rmbz-social-card:hover,
.rmbz-social-detail .rmbz-mod-artist-card:hover {
    border-color: #d2d9e3;
    box-shadow: 0 11px 26px -19px rgba(15,23,42,.28);
}
.rmbz-social-detail .rmbz-social-card h3 {
    margin: 0 0 15px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 780;
    letter-spacing: -.01em;
    text-transform: none;
}
.rmbz-social-detail .rmbz-social-card h3 .sect-icon {
    width: 36px;
    height: 36px;
    border-color: #e5ddff;
    border-radius: 10px;
    background: #f3efff;
    color: #6d3fd3;
}
.rmbz-social-detail .rmbz-mod-artist-avatar {
    border-radius: 14px;
    background: #172033;
    color: #fff;
}
.rmbz-social-detail .rmbz-mod-artist-name { color: #0f172a; font-weight: 760; }
.rmbz-social-detail .rmbz-mod-artist-contact .pill {
    max-width: 100%;
    overflow: hidden;
    border-color: #e2e6ec;
    background: #f8fafc;
    color: #526075;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rmbz-social-detail .rmbz-mod-artist-stats { gap: 7px; }
.rmbz-social-detail .rmbz-mod-stat {
    border-color: #e5e7eb;
    background: #f8fafc;
}
.rmbz-social-detail .rmbz-mod-stat-label { color: #8491a3; font-size: 8px; }
.rmbz-social-detail .rmbz-mod-stat-value { color: #0f172a; font-size: 16px; }
.rmbz-social-detail .rmbz-mod-link-row {
    min-width: 0;
    border-color: #e2e6ec;
    background: #f8fafc;
}
.rmbz-social-detail .rmbz-mod-link-row .ico {
    color: #6d3fd3;
}
.rmbz-social-detail .rmbz-mod-btn-primary,
.rmbz-social-detail .rmbz-mod-save-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid #111827;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    font-size: 11px;
    font-weight: 740;
    text-decoration: none;
}
.rmbz-social-detail .rmbz-mod-btn-primary:hover,
.rmbz-social-detail .rmbz-mod-save-btn:hover {
    border-color: #263244;
    background: #263244;
    color: #fff;
    transform: translateY(-1px);
}
.rmbz-social-detail .rmbz-mod-cover {
    width: 100%;
    margin: 0 0 12px;
    border: 1px solid #e2e6ec;
    border-radius: 13px;
    background: #0f172a;
    box-shadow: 0 10px 28px -19px rgba(15,23,42,.42);
}
.rmbz-social-detail .rmbz-mod-cover-actions { margin-bottom: 17px; }
.rmbz-social-detail .rmbz-mod-icon-btn {
    flex: 0 0 auto;
    border-color: #dce2ea;
    color: #526075;
}
.rmbz-social-detail .rmbz-mod-meta-row {
    grid-template-columns: minmax(88px, .34fr) minmax(0, 1fr);
    border-bottom: 1px solid #edf0f4;
}
.rmbz-social-detail .rmbz-mod-meta-label { color: #8491a3; font-size: 9px; }
.rmbz-social-detail .rmbz-mod-meta-value {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #1e293b;
    font-size: 12px;
}
.rmbz-social-detail .rmbz-social-manage-card {
    position: sticky;
    top: 42px;
    border-color: #d9dee7;
    box-shadow: 0 12px 32px -23px rgba(15,23,42,.42);
}
.rmbz-social-detail .rmbz-mod-field-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 15px 0 7px;
    color: #334155;
    font-size: 10px;
    font-weight: 760;
}
.rmbz-social-detail .rmbz-mod-field-label .ico {
    display: inline-flex;
    color: #64748b;
}
.rmbz-social-detail .rmbz-mod-field-label .ico.is-facebook { color: #2563eb; }
.rmbz-social-detail .rmbz-mod-field-label .ico.is-youtube { color: #dc2626; }
.rmbz-social-detail .rmbz-mod-status-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}
.rmbz-social-detail .rmbz-mod-status-pill {
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 0 30px 0 10px;
    border: 1px solid #dfe4eb;
    border-radius: 10px;
    background: #fff;
    color: #526075;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
}
.rmbz-social-detail .rmbz-mod-status-pill.is-active {
    border-color: #172033;
    background: #172033;
    color: #fff;
}
.rmbz-social-detail .rmbz-social-status-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    margin-right: 5px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    vertical-align: middle;
}
.rmbz-social-detail .rmbz-mod-status-pill.is-active .rmbz-social-status-icon {
    background: rgba(255,255,255,.16);
    color: #fff;
}
.rmbz-social-detail .rmbz-mod-status-pill .kbdhint {
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}
.rmbz-social-detail .rmbz-mod-input-group {
    display: flex;
    align-items: stretch;
    gap: 6px;
    min-width: 0;
}
.rmbz-social-detail .rmbz-mod-input-group input,
.rmbz-social-detail .rmbz-mod-textarea {
    width: 100%;
    min-width: 0;
    margin: 0;
    border: 1px solid #dce2ea;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f172a;
    box-shadow: none;
    font-size: 11px;
}
.rmbz-social-detail .rmbz-mod-input-group input {
    min-height: 42px;
    padding: 0 11px;
}
.rmbz-social-detail .rmbz-mod-textarea { padding: 10px 11px; }
.rmbz-social-detail .rmbz-mod-input-group input:focus,
.rmbz-social-detail .rmbz-mod-textarea:focus {
    border-color: #8b72d4;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(124,58,237,.10);
    outline: 0;
}
.rmbz-social-detail .rmbz-mod-rejbox {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    background: #fffaf2;
}
.rmbz-social-detail .rmbz-mod-fixflags-title {
    margin-bottom: 8px;
    color: #7c2d12;
    font-size: 10px;
    font-weight: 760;
}
.rmbz-social-detail .rmbz-mod-fixflags label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 7px 0;
    color: #475569;
    font-size: 10px;
}
.rmbz-social-detail .rmbz-mod-fixflags label > span { display: inline-flex; color: #7c3aed; }
.rmbz-social-detail .rmbz-mod-save-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
}
.rmbz-social-detail .rmbz-mod-save-btn { width: 100%; }
.rmbz-social-detail .rmbz-mod-save-hint { color: #7b8798; font-size: 9px; }

@media (max-width: 1360px) {
    .rmbz-social-list .rmbz-social-submission.rmbz-mod-row {
        grid-template-columns: 96px minmax(240px, 1fr) minmax(140px, .28fr) auto;
    }
    .rmbz-social-submission-cover.rmbz-site-submission-cover.rmbz-mod-thumb { width: 96px; }
    .rmbz-social-detail .rmbz-social-detail-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .rmbz-social-detail .rmbz-social-detail-grid {
        grid-template-columns: minmax(220px, .58fr) minmax(0, 1.25fr) minmax(330px, .86fr);
    }
}
@media (max-width: 1180px) {
    .rmbz-social-list .rmbz-social-submission.rmbz-mod-row {
        grid-template-columns: 88px minmax(0, 1fr) auto;
    }
    .rmbz-social-submission-cover.rmbz-site-submission-cover.rmbz-mod-thumb { width: 88px; }
    .rmbz-social-list .rmbz-social-submission-state { grid-column: 2; }
    .rmbz-social-list .rmbz-social-submission-actions { grid-column: 3; grid-row: 1 / span 2; }
    .rmbz-social-detail .rmbz-social-detail-grid {
        grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
    }
    .rmbz-social-detail-grid .col-form { grid-column: 1 / -1; }
    .rmbz-social-detail .rmbz-social-manage-card { position: static; }
    .rmbz-social-detail .rmbz-mod-status-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 782px) {
    .rmbz-mod-wrap.rmbz-pub-page.rmbz-social-detail {
        width: calc(100% + 10px);
        margin-left: -10px;
        padding: 12px 12px 90px;
    }
    .rmbz-social-detail .rmbz-social-detail-topbar {
        align-items: center;
        gap: 10px;
    }
    .rmbz-social-detail-heading-icon { flex-basis: 40px; width: 40px; height: 40px; }
    .rmbz-social-detail .rmbz-social-detail-heading h1 { font-size: 21px; }
    .rmbz-social-detail .rmbz-social-detail-heading .sub { display: none; }
    .rmbz-social-detail .rmbz-mod-back-btn {
        width: 40px;
        min-width: 40px;
        padding: 0;
        font-size: 0;
    }
    .rmbz-social-detail .rmbz-mod-back-btn svg { font-size: 17px; }
    .rmbz-social-detail .rmbz-social-detail-hero {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 13px;
        min-height: 0;
        padding: 14px;
    }
    .rmbz-social-detail .rmbz-social-detail-hero-thumb { width: 94px; }
    .rmbz-social-detail .rmbz-mod-hero-title { font-size: 19px; }
    .rmbz-social-detail .rmbz-mod-hero-meta { gap: 5px 8px; font-size: 9px; }
    .rmbz-social-detail .status-chip-big { grid-column: 1 / -1; justify-self: start; }
    .rmbz-social-detail .rmbz-social-detail-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rmbz-social-detail .rmbz-social-detail-grid { grid-template-columns: minmax(0, 1fr); }
    .rmbz-social-detail-grid .col-meta,
    .rmbz-social-detail-grid .col-files,
    .rmbz-social-detail-grid .col-form { grid-column: 1; }
    .rmbz-social-detail .rmbz-social-card,
    .rmbz-social-detail .rmbz-mod-artist-card { padding: 15px; border-radius: 14px; }
    .rmbz-social-detail .rmbz-mod-status-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .rmbz-social-list .rmbz-social-submission.rmbz-mod-row {
        grid-template-columns: 78px minmax(0, 1fr);
    }
    .rmbz-social-submission-cover.rmbz-site-submission-cover.rmbz-mod-thumb { width: 78px; }
    .rmbz-social-list .rmbz-social-submission-state { grid-column: 2; }
    .rmbz-social-list .rmbz-social-submission-actions {
        grid-column: 1 / -1;
        grid-row: auto;
        justify-content: flex-end;
    }
    .rmbz-social-detail .rmbz-social-detail-metrics { gap: 7px; }
    .rmbz-social-detail .rmbz-pub-metric {
        grid-template-columns: 32px minmax(0, 1fr);
        min-height: 72px;
        padding: 9px;
    }
    .rmbz-social-detail .rmbz-pub-metric-icon { width: 32px; height: 32px; }
    .rmbz-social-detail .rmbz-pub-metric em { display: none; }
    .rmbz-social-detail .rmbz-social-detail-hero { grid-template-columns: 74px minmax(0, 1fr); }
    .rmbz-social-detail .rmbz-social-detail-hero-thumb { width: 74px; }
    .rmbz-social-detail .rmbz-mod-hero-meta code { max-width: 100%; }
    .rmbz-social-detail .rmbz-mod-meta-row { grid-template-columns: 76px minmax(0, 1fr); gap: 8px; }
    .rmbz-social-detail .rmbz-mod-save-row { grid-template-columns: minmax(0, 1fr); }
    .rmbz-social-detail .rmbz-mod-save-hint { display: none; }
}

