body {
    background-color: #f8fafc;
}

.hbjhdh-container {
    padding: 2rem;
}

.hbjhdh-slider-wrapper {
    position: relative;
    max-width: 78rem;
    margin: 0 auto;
    overflow: hidden; /* Hide the overflow to prevent container sliding */
}

.hbjhdh-slider {
    display: flex;
    aspect-ratio: 16 / 9;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    -ms-overflow-style: none; /* Hide scrollbar IE and Edge */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hbjhdh-slider::-webkit-scrollbar {
    display: none;
}

.hbjhdh-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.hbjhdh-slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hbjhdh-slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.hbjhdh-slider-nav a:hover {
    opacity: 1;
}
