.LinkedArtistCell {
    border: 1px solid $koala;
    border-radius: 3px;
    color: $gorilla;
    display: inline-block;
    height: 275px;
    margin: 0 5px 10px 5px;
    padding: 15px;
    width: 270px;

    &:hover {
        border: 1px solid #a2a2a2;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
        transition: border .3s ease, box-shadow .3s ease, background-color .3s ease;
    }

    &-artist-name,
    &-artist-picture {
        text-align: center;
    }

    &-artist-name {
        font-size: 18px;
        font-weight: $weight_bold;
    }

    &-artist-picture-img {
        border-radius: 50%;
        height: 139px;
        margin: 15px 0;
        width: 139px;
    }

    &-accounts {
        float: left;
    }

    &-followers {
        float: right;
    }

    &-accounts-header,
    &-followers-header {
        color: $timberwolf;
        font-size: 12px;
        font-weight: $weight_bold;
        margin-bottom: 10px;
    }

    &-account {
        display: inline-block;
        float: left;
        margin-right: 5px;
    }

    &-followers-value {
        font-size: 16px;
        font-weight: $weight_bold;
    }
}
