/* Wrapper */
.ls-wrapper-aa9de67d {
    width: 100%;
    box-sizing: border-box;
}

/* Grid Layout */
.ls-grid-aa9de67d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .ls-grid-aa9de67d {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Scroll Layout */
.ls-scroll-aa9de67d {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.ls-scroll-aa9de67d::-webkit-scrollbar {
    height: 6px;
}
.ls-scroll-aa9de67d::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.ls-scroll-aa9de67d .ls-item-aa9de67d {
    flex: 0 0 85%;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .ls-scroll-aa9de67d .ls-item-aa9de67d {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* Scene Items */
.ls-item-aa9de67d {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #f5f5f5;
}

.ls-bg-aa9de67d {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.ls-item-aa9de67d:hover .ls-bg-aa9de67d {
    transform: scale(1.05);
}

.ls-overlay-aa9de67d {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.ls-item-aa9de67d:hover .ls-overlay-aa9de67d {
    opacity: 1;
}

.ls-content-aa9de67d {
    position: relative;
    z-index: 3;
    padding: 30px;
    text-align: center;
    width: 100%;
}

.ls-title-aa9de67d {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}
