.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: #333;
    background: white;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Dark mode alternative */
.social--dark .social__icon {
    background: #333;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover effects */
.social__icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.social--dark .social__icon:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Pseudo-element for hover effect */
.social__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    opacity: 0;
}

.social--dark .social__icon::before {
    background: rgba(255, 255, 255, 0.1);
}

.social__icon:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social {
        gap: 1.25rem;
        padding: 1.5rem;
    }
    
    .social__icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .social {
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .social__icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* banner image */


/* ******** IMAGE LAZY LOADING ********* */
:root {
    --skeleton-light: #e0e0e0;
    --skeleton-dark: #444;
}

.image-wrapper9900 {
    position: relative;
    /* width: 250px;
    height: 250px; */
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.image-wrapper9900 img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    filter: blur(20px);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.5s ease-in;
    display: block;
}

.image-wrapper9900 img.loaded {
    filter: blur(0);
    opacity: 1;
}

.image-wrapper9900 .skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            var(--skeleton-light) 25%,
            #ccc 50%,
            var(--skeleton-light) 75%);
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite;
    z-index: 1;
}

@media (prefers-color-scheme: dark) {
    .image-wrapper9900 .skeleton {
        background: linear-gradient(90deg,
                var(--skeleton-dark) 25%,
                #666 50%,
                var(--skeleton-dark) 75%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.image-wrapper9900 .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}