.social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
    gap: 10px;
	margin: 0;
	padding: 0;
	font-size: 17px;
	line-height: 1;
	list-style: none;
}

.panel-social .social-container{
    flex-basis: 50%;
    width: 100%;
    .contentRender_name_plugins_collections_template_custom_social_links {
        width: 100%;
        position: relative;
        .social-links{
            width: fit-content;
            margin-inline: auto;
            background-color: var(--orange);
            border-radius: var(--rounded-full);
            border: var(--space-1) solid var(--white);
            padding: 6px;
        }
        &::before{
            content: '';
            background-image: url('../png/cta_bg_texture_d2d96bff-1bf1-48ec-b27d-131a03ff73da.png');
            background-size: cover;
            width: 100vw;
            height: 3.625rem;
            bottom: calc(var(--space-6) * -1);
            position: absolute;
            z-index: -1;
        }
    }

    @media(min-width: 64em){
        .contentRender_name_plugins_collections_template_custom_social_links {
            .social-links{
                margin-inline-start: 7.1875rem;
            }
            &::before{
                width: 100%;
                border-radius: var(--rounded-full) 0 0;
            }
        }
    }

    
}

.social-links a i.fa-facebook::before{
    --fa: '\f39e';
}
.social-links a {
	color: inherit;
	text-decoration: none;
}

.social-links .social-network {
	padding: 0;
	margin: 0;
}


.social-links {
    margin: 0 0 var(--space-4);
}
.social-links a {
    background-color: var(--orange);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-circle);
    border: 2px solid var(--orange);
    transition: background-color 100ms cubic-bezier(0,0,0.3,1);
    color: var(--white);
}



@media (hover:hover) {
    .social-links a:hover {
        color: var(--orange);
        background-color: var(--white);
        transition: background-color 100ms cubic-bezier(0,0,0.3,1);
    }
}
@media (min-width: 40em) {
    .social-links {
        flex-direction: row;
    }   
}

