/* =========================================================
   LyricsGroove
   Artist Hero Metadata Badges
   Premium v1
========================================================= */


.lg-badges{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin-top:16px;

}


/* =========================================================
   BADGE
========================================================= */

.lg-badge{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:9px;

    min-height:40px;

    padding:0 17px;

    border-radius:999px;

    box-sizing:border-box;

    color:#ffffff;

    font-size:13px;

    font-weight:700;

    line-height:1;

    letter-spacing:.01em;

    white-space:nowrap;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.22);

    box-shadow:

        0 8px 22px rgba(0,0,0,.18),

        inset 0 1px 0 rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    transition:

        transform .25s ease,

        box-shadow .25s ease,

        border-color .25s ease;

}


/* =========================================================
   SUBTLE LIGHT
========================================================= */

.lg-badge::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            120deg,
            rgba(255,255,255,.18),
            transparent 42%
        );

    pointer-events:none;

}


/* =========================================================
   ARTIST TYPE
========================================================= */

.lg-badge-type{

    background:

        linear-gradient(
            135deg,
            rgba(44,92,255,.95),
            rgba(111,25,157,.94)
        );

}


/* =========================================================
   ORIGIN
========================================================= */

.lg-badge-origin{

    background:

        linear-gradient(
            135deg,
            rgba(71,45,205,.95),
            rgba(190,0,113,.94)
        );

}


/* =========================================================
   ICON
========================================================= */

.lg-badge-icon{

    position:relative;

    z-index:1;

    width:25px;

    height:25px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    flex:0 0 25px;

    border-radius:50%;

    background:rgba(255,255,255,.16);

    color:#ffffff;

    font-size:12px;

    box-shadow:

        inset 0 1px 0 rgba(255,255,255,.22);

}


.lg-badge-icon i{

    display:block;

    line-height:1;

}


/* =========================================================
   TEXT
========================================================= */

.lg-badge-text{

    position:relative;

    z-index:1;

    display:inline-block;

    color:#ffffff;

}


/* =========================================================
   HOVER
========================================================= */

.lg-badge:hover{

    transform:translateY(-2px);

    border-color:

        rgba(255,255,255,.38);

    box-shadow:

        0 12px 30px rgba(0,0,0,.25),

        0 0 18px rgba(116,93,255,.16),

        inset 0 1px 0 rgba(255,255,255,.22);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1024px){

    .lg-badges{

        gap:9px;

        margin-top:14px;

    }

    .lg-badge{

        min-height:38px;

        padding:0 15px;

        font-size:12px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

    .lg-badges{

        justify-content:center;

        gap:8px;

        margin-top:14px;

    }

    .lg-badge{

        min-height:38px;

        padding:0 14px;

        font-size:12px;

    }

    .lg-badge-icon{

        width:23px;

        height:23px;

        flex-basis:23px;

        font-size:11px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px){

    .lg-badges{

        max-width:100%;

    }

    .lg-badge{

        min-height:36px;

        padding:0 12px;

        font-size:11px;

    }

}