.tm-marquee-container-2d14c45b {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
}

.tm-marquee-row-wrapper-2d14c45b {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.tm-marquee-track-2d14c45b {
    display: flex;
    gap: 24px;
    width: max-content;
}

.tm-marquee-track-2d14c45b:hover {
    animation-play-state: paused;
}

.tm-marquee-left {
    animation: scroll-left-2d14c45b 60s linear infinite;
}

.tm-marquee-right {
    animation: scroll-right-2d14c45b 60s linear infinite;
}

@keyframes scroll-left-2d14c45b {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right-2d14c45b {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.tm-testimonial-card-2d14c45b {
    flex: 0 0 380px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tm-card-header-2d14c45b {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tm-card-img-2d14c45b,
.tm-card-img-placeholder-2d14c45b {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.tm-card-img-placeholder-2d14c45b {
    background: #e0e0e0;
}

.tm-card-meta-2d14c45b {
    display: flex;
    flex-direction: column;
}

.tm-card-name-2d14c45b {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}

.tm-card-role-2d14c45b {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.tm-card-content-2d14c45b {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .tm-testimonial-card-2d14c45b {
        flex: 0 0 300px;
        padding: 20px;
    }
}