/* ── Testimonials Cards (no left panel) ─────────────────── */
.testimonials-cards {
    padding: 80px 0;
}

.testimonials-cards .testimonials__track-wrap {
    overflow: hidden;
}

.testimonials-cards .testimonials__track {
    width: 100%;
}

.testimonials-cards .testimonials__card {
    width: calc((100% - 48px) / 3);
    justify-content: flex-end;
}

.testimonials-cards .testimonials__card.active {
    justify-content: flex-start;
}

@media (max-width: 1220px) {
    .testimonials-cards {
        padding: 60px 0;
    }

    .testimonials-cards .testimonials__card {
        width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-cards {
        padding: 40px 0;
    }

    .testimonials-cards .testimonials__card {
        width: calc((100% - 60px));
    }
}