/**
 * Fichier  : /ott/library/assets/css/sections/shortcuts.css
 * Fonction : style des rangées de type 'raccourcis'
 */


/* ==================================================
   SHORTCUTS
================================================== */

#library .shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* ==================================================
   ITEM
================================================== */

#library .shortcuts a {
    position: relative;
    overflow: hidden;
}

#library .shortcuts a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#library .shortcuts a {
    padding: 10px 14px;
}

#library .shortcuts a {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;

    backdrop-filter: blur(18px);
}

#library .shortcuts a {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 10px 30px rgba(0,0,0,0.30);
}

#library .shortcuts a {
    font-family: 'content-font';
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
}

#library .shortcuts a {
    transition:
        transform .2s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}


/* ==================================================
   HOVER
================================================== */

#library .shortcuts a:hover {
    transform: translateY(-1px);
}

#library .shortcuts a:hover {
    color: #fff;
}

#library .shortcuts a:hover {
    border-color: rgba(255,120,0,0.22);

    background:
        linear-gradient(
            135deg,
            rgba(255,95,45,0.16),
            rgba(255,145,0,0.08)
        );
}

#library .shortcuts a:hover {
    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        0 0 25px rgba(255,120,0,0.08);
}