/**handles:bluebeechild-social-links**/
.wp-block-social-links {
    &.is-style-header,
    &.is-style-cta,
    &.is-style-footer {
        .wp-block-social-link {
            background-color: transparent !important;

            .wp-block-social-link-anchor {
                transition: 0.5s;
            }
        }

        .wp-block-social-link-anchor {
            padding: 0;

            svg {
                width: 18px;
                height: 18px;
            }
        }
    }

    &.is-style-footer {
        .wp-block-social-link-anchor {
            svg {
                width: 24px;
                height: 24px;
            }
        }
    }

    &.is-style-cta {
        .wp-block-social-link-anchor {
            svg {
                width: 40px;
                height: 40px;
            }
        }
    }

    .wp-block-social-link{
        &:hover{
            svg{
                fill: var(--wp--preset--color--primary) !important;
            }
        }
    }
}