/* Wrapper – rechts ausgerichtet mit negativem Offset */
.escort-available-badge-wrap {
    display: flex;
    justify-content: flex-end;   /* nicht mehr zentrieren */
    margin-top: -41px;           /* Höhe korrekt */
}

/* Badge – Design + pixelgenaue Rechtsverschiebung */
.escort-available-badge,
.escort-available-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;

    background: linear-gradient(135deg, #1f9d55, #167a44);
    color: #ffffff;

    border-radius: 999px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;

    box-shadow: 0 6px 16px rgba(22, 122, 68, 0.35);

    /* 🔑 WICHTIG: negative Rechtsverschiebung */
    position: relative;
    right: 18px;
}

@media (max-width: 360px) {
    .escort-available-badge,
    .escort-available-now {
        right: 18px;
    }
}
