/* Gallery Slider Styles */
.wp-block-gallery {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 12px;
    /* Adjust gap as needed */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    cursor: grab;
    padding-bottom: 20px;
    /* Space for shadow/effects */
}

.wp-block-gallery::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.wp-block-gallery .wp-block-image {
    flex: 0 0 auto;
    width: 300px;
    /* Fixed width for slider items */
    max-width: 80vw;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.wp-block-gallery .wp-block-image img {
    width: 100%;
    height: 200px;
    /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 0px;
    display: block;
}

/* Active Class for potential JS highlighting */
.wp-block-gallery:active {
    cursor: grabbing;
}