section[data-module="business-gallery"] {
    position: relative;
    width: 100%;
    background: transparent;
    overflow: hidden;
    padding: 40px 0 10px;
}

section[data-module="business-gallery"] * {
    box-sizing: border-box;
}

section[data-module="business-gallery"] .business-gallery-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Slider */
section[data-module="business-gallery"] .business-gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

section[data-module="business-gallery"] .business-gallery-slider.is-dragging {
    cursor: grabbing;
}

/* Track */
section[data-module="business-gallery"] .business-gallery-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    transform: translate3d(0, 0, 0);
    transition: transform 0.55s cubic-bezier(0.45, 0, 0.25, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Item */
section[data-module="business-gallery"] .business-gallery-item {
    position: relative;
    flex: 0 0 393px;
    width: 393px;
    overflow: hidden;
    border-radius: 14px;
    background: #f5f5f5;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

section[data-module="business-gallery"] .business-gallery-small {
    height: 393px;
}

section[data-module="business-gallery"] .business-gallery-large {
    height: 480px;
}

section[data-module="business-gallery"] .business-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    transform: scale(1);
    transition: transform 0.55s ease;
}

section[data-module="business-gallery"] .business-gallery-item:hover img {
    transform: scale(1.05);
}

/* Navigation */
section[data-module="business-gallery"] .business-gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 118px;
    margin-top: 32px;
}

section[data-module="business-gallery"] .business-gallery-arrow {
    position: relative;
    width: 40px;
    height: 47px;
    padding: 0;
    border: 0;
    outline: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

section[data-module="business-gallery"] .business-gallery-arrow:hover {
    transform: scale(1.18);
}

section[data-module="business-gallery"] .business-gallery-arrow:active {
    transform: scale(1.05);
}

section[data-module="business-gallery"] .business-gallery-prev {
    background-image: url("https://cab.stagings.entertopwp.com/wp-content/uploads/2026/06/arrow-red-prev.png");
}

section[data-module="business-gallery"] .business-gallery-next {
    background-image: url("https://cab.stagings.entertopwp.com/wp-content/uploads/2026/06/arrow-red-next.png");
}

/* Large screen spacing similar to reference */
@media (min-width: 1200px) {
    section[data-module="business-gallery"] .business-gallery-track {
        padding-left: 0;
        margin-left: -90px;
    }
}

/* Tablet */
@media (max-width: 1199px) {
    section[data-module="business-gallery"] {
        padding: 50px 0 48px;
    }

    section[data-module="business-gallery"] .business-gallery-track {
        gap: 20px;
        margin-left: 0;
    }

    section[data-module="business-gallery"] .business-gallery-item {
        flex: 0 0 320px;
        width: 320px;
    }

    section[data-module="business-gallery"] .business-gallery-small {
        height: 320px;
    }

    section[data-module="business-gallery"] .business-gallery-large {
        height: 390px;
    }

    section[data-module="business-gallery"] .business-gallery-nav {
        gap: 90px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    section[data-module="business-gallery"] {
        padding: 40px 0 42px;
    }

    section[data-module="business-gallery"] .business-gallery-track {
        gap: 16px;
        margin-left: 0;
    }

    section[data-module="business-gallery"] .business-gallery-item {
        flex: 0 0 260px;
        width: 260px;
        border-radius: 12px;
    }

    section[data-module="business-gallery"] .business-gallery-small {
        height: 260px;
    }

    section[data-module="business-gallery"] .business-gallery-large {
        height: 320px;
    }

    section[data-module="business-gallery"] .business-gallery-nav {
        gap: 70px;
        margin-top: 28px;
    }

    section[data-module="business-gallery"] .business-gallery-arrow {
        width: 36px;
        height: 42px;
    }
}