.custom-social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.custom-social-icon {
    width: var(--custom-icon-size, 36px);
    height: var(--custom-icon-size, 36px);
    border-radius: 999px;
    background: var(--custom-icon-bg, #333);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none !important;
    line-height: 1;
    transition: transform .22s ease, background-color .22s ease, opacity .22s ease, box-shadow .22s ease;
    will-change: transform;
}

.custom-social-icon.custom-icon-transparent {
    background: transparent;
}

.custom-social-icon:hover {
    background: var(--custom-icon-hover, #555);
    color: #fff;
}

.custom-social-icon.custom-icon-transparent:hover {
    background: transparent;
}

.custom-social-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

.custom-social-icon span {
    color: inherit;
    font-weight: 700;
    font-size: calc(var(--custom-icon-size, 36px) * .42);
}

.custom-social-icon.custom-hover-lift:hover {
    transform: translateY(-3px);
}

.custom-social-icon.custom-hover-grow:hover {
    transform: scale(1.12);
}

.custom-social-icon.custom-hover-pulse:hover {
    animation: customIconPulse .65s ease-in-out;
}

.custom-social-icon.custom-hover-rotate:hover {
    transform: rotate(8deg) scale(1.06);
}

.custom-social-icon.custom-hover-glow:hover {
    box-shadow: 0 0 0 4px rgba(255,255,255,.25), 0 8px 22px rgba(0,0,0,.22);
    transform: translateY(-2px);
}

.custom-social-icon.custom-hover-fade:hover {
    opacity: .72;
}

.custom-social-icon.custom-hover-none:hover {
    transform: none;
}

@keyframes customIconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.16); }
    100% { transform: scale(1); }
}
