/* Card Scroller - scorrimento orizzontale servizi */
.card-scroller .splide__slide {
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.card-scroller .splide__slide > .gb-container {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Frecce sotto le card */
.card-scroller .splide__arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    position: static !important;
}

.card-scroller .splide__arrow {
    position: static !important;
    transform: none !important;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    opacity: 1 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-scroller .splide__arrow:hover {
    border-color: #333;
}

/* Pallini */
.card-scroller .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: static !important;
    padding: 0 !important;
}

.card-scroller .splide__pagination li {
    line-height: 0;
}

.card-scroller .splide__pagination__page {
    background: #d0d0d0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1 !important;
    margin: 0;
    padding: 0;
}

.card-scroller .splide__pagination__page.is-active {
    background: #333;
    transform: scale(1) !important;
}

/* Mobile */
@media (max-width: 767px) {
    .card-scroller .splide__slide {
        width: 250px;
    }
    .card-scroller .splide__slide > .gb-container {
        padding: 1.5rem 1rem;
    }
    .card-scroller .splide__track {
        padding: 0 2rem 0 0;
    }
}