/* ==========================================================================
   Admin Bar Component – Production Design
   ========================================================================== */

.pf-redes-admin-bar {
    background: #C91517;
    color: #ffffff;
    padding: 8px 16px;
    margin-bottom: 0;
    border-radius: 0;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
    width: 100%;
}

.pf-redes-admin-bar__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    max-width: var(--pf-redes-max-width);
    margin: 0 auto;
}

.pf-redes-admin-bar__field {
    line-height: 1.5;
    white-space: nowrap;
}

.pf-redes-admin-bar__field::after {
    content: "|";
    margin: 0 8px;
    opacity: 0.6;
    font-weight: 400;
}

.pf-redes-admin-bar__field:last-child::after {
    content: none;
}

.pf-redes-admin-bar__field strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .pf-redes-admin-bar__grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .pf-redes-admin-bar__field::after {
        content: none;
    }
}
