.social-media-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-media-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #333;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e0e0e0;
}

.social-media-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.social-media-icons a:nth-child(1):hover { color: #0077b5; border-color: #0077b5; }
.social-media-icons a:nth-child(2):hover { color: #e4405f; border-color: #e4405f; }
.social-media-icons a:nth-child(3):hover { color: #000; border-color: #000; }
.social-media-icons a:nth-child(4):hover { color: #1877f2; border-color: #1877f2; }
.social-media-icons a:nth-child(5):hover { color: #ff6b35; border-color: #ff6b35; }

/* Responsive */
@media (max-width: 768px) {
    .social-media-icons {
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .social-media-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
}
