/* Social Share Widget Styles */
.social-share-widget {
    border-color: color-mix(in srgb, currentColor 20%, transparent);
    border-width: 1px;
    border-style: solid;
    border-radius: 20px;
    padding-top: var(--wp--preset--spacing--30);
    padding-right: var(--wp--preset--spacing--20);
    padding-bottom: var(--wp--preset--spacing--30);
    padding-left: var(--wp--preset--spacing--20);
    box-shadow: var(--wp--preset--shadow--natural);
    background-color: var(--wp--preset--color--base);
    margin-bottom: 20px;
    text-align: center;
}

.social-share-widget.sticky {
    position: sticky;
    top: 100px !important;
    z-index: 100;
}

.social-share-widget-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-share-widget .social-icons {
    display: grid;
    gap: 15px;
    flex-display: column;
    justify-items: center;
    align-items: center;
}

.social-share-widget .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.social-share-widget .social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-share-widget .social-icons .social-icon.facebook {
    background-color: #3b5998;
}

.social-share-widget .social-icons .social-icon.twitter-x {
    background-color: #000000;
}

.social-share-widget .social-icons .social-icon.linkedin {
    background-color: #0077b5;
}

.social-share-widget .social-icons .social-icon.email {
    background-color: #777777;
}

.social-share-widget .social-icons .social-icon.truth-social {
    background-color: #0A133E;
}

.social-share-widget .social-icons .social-icon.gab {
    background-color: #00D178;
}

.social-share-widget .social-icons .social-icon.parler {
    background-color: #BE1E2D;
}

.social-share-widget .social-icons .social-icon.gettr {
    background-color: #E50A02;
}

.social-share-widget .social-icons .social-icon.rumble {
    background-color: #85C742;
}

.social-share-widget .social-icons i {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .social-share-widget.sticky {
        position: relative !important;
        top: auto !important;
    }
    
    .social-share-widget .social-icons {
        grid-template-columns: repeat(4, 1fr);
        flex-display: row;
        max-width: 100%;
        gap: 12px;
    }

}
