/* GW19 IMAGE SLIDER — CSS Snap Scroll */

.gw19-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gw19-slider__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 6px;
}
.gw19-slider__track::-webkit-scrollbar { display: none; }

.gw19-slider__slide {
    flex: 0 0 50%;
    scroll-snap-align: start;
    overflow: hidden;
}
.gw19-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dots */
.gw19-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}
.gw19-slider__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(59, 82, 73, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}
.gw19-slider__dot--active {
    background: #3B5249;
}

/* Deko Halbkreis */
.gw19-slider::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: -60px;
    width: 220px;
    height: 220px;
    background-color: #E8A090;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 999px) {
    .gw19-slider__slide { flex: 0 0 80%; }
}
@media (max-width: 690px) {
    .gw19-slider__slide { flex: 0 0 100%; }
    .gw19-slider::after { width: 120px; height: 120px; left: -30px; bottom: 30px; }
}
