.custom-image-component {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: auto;
    max-width: 100%;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE y Edge */
}
.custom-image-component::-webkit-scrollbar {
    display: none; /* Safari y Chrome */
}

.custom-image-component-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding-right: 10px;
}

.custom-image-component-item img {
    height: 511px;
    border-radius: 20px;
    pointer-events: none;
}

.custom-image-component:active {
    cursor: grabbing;
}

@media only screen and (max-width: 768px) {
    .custom-image-component-item img {
        max-height: 240px;
    }
    .custom-image-component{
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-left: 20px;
    }
}
