.cea-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.cea-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.cea-carousel-track {
    display: flex;
    will-change: transform;
    touch-action: pan-y;
}

.cea-slide {
    box-sizing: border-box;
    padding: 9px;
    flex: 0 0 16.6667%;
    user-select: none;
}

.cea-card {
    display: block;
    text-decoration: none;
    text-align: center;
    height: 100%;
    cursor: pointer;
}

.cea-card-inner {
    border-radius: 14px;
    height: 100%;
    transition: transform .2s ease;
}

.cea-card:hover .cea-card-inner {
    transform: translateY(-2px);
}

.cea-image-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    padding: 15px;
    border: 2px solid #c8c8c8;
    border-radius: 10px;
}

.cea-image-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.cea-title {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    color: #482680;
    word-break: break-word;
    padding: 0px 6%;
    line-height: 17px;
}

.cea-title:hover {
    color: #7800ff!important;

}

.cea-carousel.theme-municipal {
    padding: 5px 30px 0px;
    border-radius: 0;
}

.cea-carousel.theme-municipal .cea-card-inner {
    background: transparent;
}

.cea-nav {
    position: absolute;
    top: 37% !important;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    z-index: 3;
    background: rgba(0,0,0,.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
}

.cea-nav:hover {
    background: rgba(0,0,0,.25);
}

.cea-prev {
    left: 0px;
}

.cea-next {
    right: 0px;
}

.cea-bullets {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.cea-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    border: none;
    cursor: pointer;
    padding: 0;
}

.cea-bullet.active {
    background: rgba(0,0,0,.65);
}

.cea-carousel[data-show-arrows="0"] .cea-nav {
    display: none;
}

.cea-carousel[data-show-bullets="0"] .cea-bullets {
    display: none;
}

.cea-carousel.is-dragging .cea-card {
    pointer-events: none;
}

@media (max-width: 767px) {
    .cea-carousel.theme-municipal {
        padding: 12px 32px 20px;
    }

    .cea-slide {
        padding: 3px;
    }

    .cea-image-box {
        margin-bottom:5px;

    }

    .cea-image-box img {
        max-height: 85px;
    }

    .cea-title {
        font-size: 12px;
    }

    .cea-nav {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .cea-carousel:not(.cea-arrows-mobile-visible) .cea-nav {
        display: none;
    }

    .cea-title {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    word-break: break-word;
    padding: 0px 25px;
    line-height: 18px;
  }

}
