@mixin overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ArtistProfile {
    display: flex;
    height: 80px;
    padding: 10px 0;

    &-right {
        min-width: 0;
    }

    &-icon-placeholder {
        height: 60px;
        position: relative;
        width: 82px;
    }

    &-icon {
        border-radius: 50%;
        height: 60px;
        width: 60px;
    }

    &-store-icon {
        bottom: 2px;
        height: 25px;
        position: absolute;
        right: 12px;
        width: 25px;

        &.Icons-spotify {
            background-color: var(--white);
            border-radius: 50%;
        }
    }

    &-empty-store-icon {
        height: 100%;
        margin-right: 22px;
        opacity: 0.3;
        width: 60px;
    }

    &-name {
        font-size: 12px;
        font-weight: var(--weight-bold);
        line-height: 16px;

        @include overflow;
    }

    &-additional-info {
        color: var(--timberwolf);
        display: flex;
        font-size: 10px;
        font-weight: var(--weight-normal);
        line-height: 18px;
        white-space: nowrap;
    }

    &-followers-divider {
        &::after {
            content: '\2022';
            margin: 0 3px;
        }
    }

    &-genre {
        @include overflow;
    }

    &-link {
        cursor: pointer;
        font-size: 12px;
        font-weight: var(--weight-bold);
        line-height: 24px;

        @include overflow;
    }
}
