.social-links-section {
    flex-wrap: wrap;
    padding: 0.8rem 0;
}

.social-links-section,
.social-links-section .social-link-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.social-links-section .social-link-wrapper {
    background-color: var(--ghost-white);
    border-radius: 50%;
    transition: background-color 0.15s ease-in-out;
}

.social-links-section .social-link-wrapper:hover {
    background-color: var(--azure);
}

.social-link {
    display: inline-block;
    width: 1.85rem;
    height: 1.85rem;
    padding: 4px;
    border-radius: inherit;
    transition: filter 0.15s ease-in-out;
}

.social-link:first-of-type,
.social-link:last-of-type {
    margin-left: 0;
    margin-right: 0;
}

.social-links-section .social-link.lazy {
    background-image: none;
}

.social-link.instagram {
    background: url("../../images/social-icons/instagram.png") no-repeat center/50%;
}

.social-link.linkedin {
    background: url("../../images/social-icons/linkedin.png") no-repeat 50% 40%/48%;
}

.social-link.youtube {
    background: url("../../images/social-icons/youtube.png") no-repeat center/54%;
}

.social-link.facebook {
    background: url("../../images/social-icons/facebook.png") no-repeat 50% 48%/50%;
}

.social-link.google-business {
    background: url("../../images/social-icons/google-business.png") no-repeat center/50%;
}

.social-link.pinterest {
    background: url("../../images/social-icons/pinterest.png") no-repeat center/50%;
}

.social-link.bark {
    background: url("../../images/social-icons/bark.png") no-repeat 50% 48%/50%;
}

.social-link.clutch {
    background: url("../../images/social-icons/clutch.png") no-repeat 50% 48%/50%;
}

.social-link.x {
    background: url("../../images/social-icons/x.png") no-repeat center/50%;
}

.social-link:hover {
    filter: brightness(0) invert(1);
}