.bne-post-testimonials {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 2em 0;
}
.bne-slides-wrapper { overflow: hidden; }
.bne-slides-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}
.bne-slide {
    flex: 0 0 calc(100% / var(--cols));
    padding: 0 1em;
    box-sizing: border-box;
}
.bne-dots {
    text-align: center;
    margin-top: 1em;
}
.bne-dot {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 0.33em;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.3;
}
.bne-dot:not(.active):hover {
    opacity: 0.6;
}
.bne-dot.active {
    opacity: 1;
}
@media (max-width: 767px) {
    .bne-slide { flex: 0 0 100%; padding: 0 0.5em; }
}