.testimonial-slider {
    overflow: hidden;
    width: 100%;
    /*max-width: 1000px;*/
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 20px; /* ← ось тут задаємо відступ між стовпчиками */
    transition: transform 0.6s ease-in-out;
}


.testimonial-slide {
    flex: 0 0 calc(50% - 10px); /* враховуємо gap/2 з кожного боку */
    box-sizing: border-box;
}


@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

.testimonial-slide.modern-style {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating .star {
    font-size: 18px;
    color: #ddd;
    margin-right: 2px;
}

.testimonial-rating .star.active {
    color: #FFD700;
}

.testimonial-title {
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
    color: #222;
}

.testimonial-content {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 12px;
}
