.ts-wrapper-fc6449d3 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
    overflow: hidden;
}

.ts-slides-container-fc6449d3 {
    position: relative;
    display: flex;
    align-items: stretch;
}

.ts-slide-fc6449d3 {
    width: 100%;
    flex-shrink: 0;
    display: none;
    animation: fade-in-fc6449d3 0.4s ease-in-out forwards;
}

.ts-slide-fc6449d3.active {
    display: block;
}

@keyframes fade-in-fc6449d3 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ts-slide-inner-fc6449d3 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
}

.ts-avatar-fc6449d3 {
    flex-shrink: 0;
}

.ts-avatar-fc6449d3 img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.ts-content-fc6449d3 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.ts-review-fc6449d3 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #111;
    margin: 0;
}

.ts-meta-fc6449d3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ts-name-fc6449d3 {
    font-size: 16px;
    font-weight: 600;
    color: #777;
}

.ts-stars-fc6449d3 {
    display: flex;
    align-items: center;
    gap: 2px;
}

.ts-star-fc6449d3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-dots-fc6449d3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.ts-dot-fc6449d3 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ts-dot-fc6449d3.active {
    background-color: #000;
}

@media (max-width: 767px) {
    .ts-slide-inner-fc6449d3 {
        gap: 12px;
        padding: 10px 0;
    }
    .ts-review-fc6449d3 {
        font-size: 15px;
    }
    .ts-name-fc6449d3 {
        font-size: 14px;
    }
}