/* ============================================================
   UNPOP — Artist Roles — v1.5.0
   ============================================================ */

.unpop-roles {
    font-family: 'Outfit', sans-serif;
    width: 100%;
}

/* Label */
.unpop-roles__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 12px;
    padding: 0;
}

/* Conteneur de liste */
.unpop-roles__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.unpop-roles--grid .unpop-roles__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.unpop-roles--list .unpop-roles__list {
    flex-direction: column;
    gap: 6px;
}

/* Tag */
.unpop-roles__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #FB923C;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        transform 0.2s ease;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 480px) {
    .unpop-roles--grid .unpop-roles__list {
        grid-template-columns: 1fr;
    }

    .unpop-roles__tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}

.unpop-roles__sep {
    color: #FB923C;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    user-select: none;
}
