/* 
 * Social Share Widget Block Styles
 */

.social-share-widget {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-share-widget.sticky {
    position: sticky;
    top: 30px;
}

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

.social-share-widget .social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: 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;
}

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

.social-share-widget .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Custom icon for X (formerly Twitter) */
.social-share-widget .x-icon {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Custom icons for additional networks */
.social-share-widget .truth-social-icon,
.social-share-widget .gab-icon,
.social-share-widget .parler-icon,
.social-share-widget .gettr-icon,
.social-share-widget .rumble-icon {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-share-widget.sticky {
        position: static; /* Disable sticky on mobile */
    }
    
    .social-share-widget .social-icons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}