/* Custom Styles *//*============================================================================
  #Override Stylesheet
  #Add Custom Styles Here
==============================================================================*/
/* Ensure Font Awesome is loaded */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

.link-list__links a {
    text-decoration: none; /* Remove underline */
    color: #fff;          /* Set icon color */
    position: relative;   /* Position relative for pseudo-element */
    padding-left: 30px;  /* Space for the icon */
    display: inline-block; /* Ensures proper spacing */
}

/* Hide the text */
.link-list__links a {
    font-size:0; /* Hide the text */
}

/* Add icons using pseudo-elements */
.link-list__links a:nth-child(1)::before {
    content: "\f167"; /* YouTube icon */
    font-family: FontAwesome;
    font-weight: 500;
}

.link-list__links a:nth-child(2)::before {
    content: "\f3d9"; /* Patreon icon */
    font-family: FontAwesome;
    font-weight: 500;
}

.link-list__links a:nth-child(3)::before {
    content: "\f16d"; /* Instagram icon */
    font-family: FontAwesome;
    font-weight: 500;
}

.link-list__links a:nth-child(4)::before {
    content: "\f099"; /* Twitter icon */
    font-family: FontAwesome;
    font-weight: 500;
}

.link-list__links a:nth-child(5)::before {
    content: "\f09a"; /* Facebook icon */
    font-family: FontAwesome;
    font-weight: 500;
}

.link-list__links a:nth-child(6)::before {
    content: "\f1bc"; /* Spotify icon */
    font-family: FontAwesome;
    font-weight: 500;
}

.link-list__links a:nth-child(7)::before {
    content: "\e07b"; /* TikTok icon */
    font-family: FontAwesome;
    font-weight: 500;
}

/* Style the icons */
.link-list__links a::before {
    font-size: 24px; /* Adjust icon size */
    position: absolute; /* Position the icon */
    left: 0;           /* Align to the left */
    top: 50%;          /* Center vertically */
    transform: translateY(-66%); /* Adjust for vertical centering */
}
