/* Kontainer utama badge */
.sttclean-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0;
    max-width: 100%;
    overflow-x: auto;   /* kalau terlalu panjang, bisa di-scroll dalam kontainer ini */
}

/* Badge / pill */
.sttclean-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;

    white-space: nowrap;   /* pill tetap satu baris */
    box-sizing: border-box;
}

/* Hover */
.sttclean-badge:hover {
    background: #111827;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Versi tanpa link */
.sttclean-badge--nolink {
    cursor: default;
}

/* Responsif: kecilkan pill di layar kecil */
@media (max-width: 480px) {
    .sttclean-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
}