#locations-skeleton-overlay {
    background: #ffffff;
    width: 100%;
}

#locations-skeleton-overlay.skeleton-hidden {
    display: none;
}

#locations-skeleton-overlay:not(.skeleton-hidden) ~ section {
    display: none;
}

#locations-skeleton-overlay .lcs-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 12px;
    width: 100%;
}

#locations-skeleton-overlay .sk {
    display: block;
    background: #e7e8ea;
    border-radius: 8px;
    animation: lcsSkelPulse 1.4s ease-in-out infinite;
}

@keyframes lcsSkelPulse {
    50% {
        opacity: 0.5;
    }
}

#locations-skeleton-overlay .lcs-title-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

#locations-skeleton-overlay .sk-back {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

#locations-skeleton-overlay .sk-page-title {
    width: 220px;
    max-width: 50%;
    height: 40px;
}

#locations-skeleton-overlay .lcs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
    overflow: hidden;
}

#locations-skeleton-overlay .sk-location-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    height: 283px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    #locations-skeleton-overlay .sk-location-card {
        flex: 1 1 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    #locations-skeleton-overlay .sk-location-card {
        flex: 1 1 100%;
        min-width: 100%;
    }
}
