﻿.carousel-container {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    padding: 40px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}


.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrolling 35s linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.carousel-slide {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    width: 100%;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-slide img {
    height: 30px;
    margin-right: 10px;
}

.testimonial-content {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.testimonial-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: start;
    height: auto;
}

.namespace {
    display: flex;
    flex-direction: column;
    align-items: start;
}


.testimonial-author {
    margin-top: 10px;
    font-weight: bold;
}

.testimonial-role {
    color: #FF9100;
    font-size: 0.8rem;
}

.testimonial-text {
    min-height: 150px;
}
