.testimonial-wrapper {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.arrow {
    width: 35px;
    height: 35px;
    margin: 10px auto;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.testimonial-viewport {
    height: 300px; /* 4 boxes x 130px + margin */
    overflow: hidden;
    position: relative;
}

.testimonial-container {
    transition: transform 0.3s ease-in-out;
}

.testimonial-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    height: 120px;
}

.testimonial-img {
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-content {
    text-align: left;
}

.testimonial-text {
    margin: 0;
    font-size: 14px;
}

.testimonial-author {
    margin-top: 5px;
    font-weight: bold;
    font-style: italic;
}
