.hero-carousel-placeholder {
    overflow: hidden;
}

.hero-skeleton-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: 0;
}

.hero-skeleton-surface {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    border-radius: 1.25rem;
    background-color: #e3e3e3;
}

.hero-skeleton-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background-image: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%);
    animation: hero-skeleton-shimmer 30s ease-in-out infinite; 
}

@keyframes hero-skeleton-shimmer {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%); 
    }
}
