.wpch-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.wpch-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.wpch-carousel-slide {
    flex: 0 0 100%; /* padrão: 1 por vez (mobile) */
    max-height: 400px;
    overflow: hidden;
}

.wpch-carousel-slide img,
.wpch-carousel-slide video {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: 8px !important;
}

/* Tablet e acima = 3 slides */
@media (min-width: 768px) {
    .wpch-carousel-track {
        gap: .5rem;
    }

    .wpch-carousel-slide {
        flex: 0 0 33.33%;
    }
}

.wpch-carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.wpch-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    pointer-events: all;
}