.artist-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid var(--color-border, #e5e5e5);
    border-radius: 50%;

    color: var(--color-text-muted, #777);
    text-decoration: none;

    transition: all 0.25s ease;
}

.social-link:hover {
    border-color: #111;
    color: #111;
    transform: translateY(-1px);
}

.social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}