/* -------------
    SOMMAIRE
------------- */

/*
    @AUTHOR : Nicolas BOUDOT

    MOLÉCULE : RS
    Style des réseaux sociaux
*/



.molecule_rs {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
}

    .molecule_rs li:not(:first-child) {
        margin: 0 0 0 2px;
    }

.molecule_rs a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--c-primary);
    color: var(--gold-light);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    transition: background-color .4s;
}

    /* Hover */
    .molecule_rs a:hover {
        background-color: var(--gray-900);
    }
