.rc-share-post {
    display: flex;
    gap: 10px 20px;

    & a {
        font-family: "Poppins";
        font-weight: 500;
        font-size: 14px;
        line-height: 1.1em;
        color: #2f2f2f;
        text-decoration: none;
        background: linear-gradient(to right, #2f2f2f);
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: 0% 1px;
        transition: background-size 500ms;

        &:hover {
            background-position: bottom left;
            background-size: 100% 1px;
        }
    }
}