/* SKELETON LOADER STYLES */
.skeleton {
    background-color: rgba(255, 255, 255, 0.05); /* Adjust to match theme: use rgba(0,0,0,0.05) for light mode */
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 16px; /* Fallback height for text */
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: pulse 1.5s infinite ease-in-out;
    transform: translateX(-100%);
}

@keyframes pulse {
    100% { transform: translateX(100%); }
}

/* Strip Webflow Branding Globally */
.w-webflow-badge { 
    display: none !important; 
    visibility: hidden !important; 
    opacity: 0 !important; 
    pointer-events: none !important; 
    height: 0 !important;
    width: 0 !important;
}
