.wb-testimonials {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.wb-testimonials

.wb-viewport {
    overflow: hidden;
}

.wb-track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.6s ease;
}

.wb-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.wb-card {
    background: transparent;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    pointer-events: auto;
}

.wb-image img {
    width: 220px;
    border-radius: 16px;
    object-fit: cover;
}

.wb-content {
    flex: 1;
}

.wb-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.wb-name {
    font-weight: 700;
    color: #000000;
    padding-bottom: 0;
}

.wb-title {
    font-size: 14px;
    color: #000000;
}

/* ARROWS – guaranteed clickable */
.wb-nav {
    position: absolute;
    top: 79%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid black;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    pointer-events: auto;
}

.wb-nav.prev { left: -50px; }
.wb-nav.next { right: -50px; }
