/* Social Sharing Styles */
.social-share {
    margin: 1rem auto;
    padding: 0;
    text-align: center;
    width: 100%;
    clear: both;
    overflow: visible;
    position: absolute;
    bottom: 0;
}

.social-share h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #999;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
    margin-bottom: 0.5rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    opacity: 0.7;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    opacity: 1;
}

.social-button.linkedin {
    background-color: #0077b5;
}

.social-button.xing {
    background-color: #026466;
}

.social-button.twitter {
    background-color: #1da1f2;
}

.social-button.whatsapp {
    background-color: #25d366;
}

.social-button.email {
    background-color: #ea4335;
}

/* Nur auf Mobilgeru00e4ten anzeigen */
.mobile-only {
    display: none;
}

.social-share-container {
    width: 100%;
    text-align: center;
    clear: both;
    padding: 0.5rem 0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-top: 1px solid #f8f8f8;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }
    
    .social-share {
        margin: 0.5rem auto;
        position: relative;
    }
    
    .social-button {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
    
    .social-buttons {
        gap: 10px;
        padding: 0 5px;
    }
    
    .social-share-container {
        padding: 0.5rem 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* Animation beim Hover */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.social-button:hover i {
    animation: pulse 0.3s ease-in-out;
}
