/* ==========================
   STATUS BADGE
   Open/closed indicator, overlaid on a listing card's photo
========================== */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-badge::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: currentColor;
}

.status-badge--open {
    background: rgba(34, 197, 94, 0.92);
    color: #fff;
}

.status-badge--closed {
    background: rgba(63, 42, 29, 0.78);
    color: #fff;
}
