.root {
    position: relative;
    padding: 24px 0;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-neutral-light);
    gap: 24px;
}

.labelWrap {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 0 24px;
}

.swiper {
    width: 100%;
}

.imageWrapper {
    width: 100%;
    height: 480px;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (width <= 1024px) {
    .imageWrapper {
        height: 480px;
    }
}

@media (width <= 768px) {
    .root {
        padding: 16px 0;
        gap: 16px;
    }

    .labelWrap {
        padding: 0 16px;
    }

    .swiper {
        margin-bottom: 0;
    }

    .imageWrapper {
        height: auto;
    }

    .image {
        width: 100%;
        height: auto;
        object-position: center;
        padding: 0 16px;
        box-sizing: border-box;
    }
}

.hideOnDesktop {
    display: none;
}
.hideOnMobile {
    display: inherit;
}
@media (width <= 768px) {
    .hideOnDesktop {
        display: inherit;
    }
    .hideOnMobile {
        display: none;
    }
}