.carousel-wrapper-014a5886 {
    width: 100%;
    position: relative;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --bg-card: #f8f8f8;
    --text-main: #1f1f1f;
    --text-muted: #9ca3af;
    --star-color: #a3ad6a;
    --border-color: #e5e7eb;
    --dot-active: #333333;
    --dot-inactive: #d1d5db;
    --slides-to-show: 2;
    --carousel-gap: 24px;
    --peek-width: 50px;
    --calc-card-width: calc((100% - var(--carousel-gap) - (var(--peek-width) * 2)) / var(--slides-to-show));
    --card-width: var(--custom-card-width, var(--calc-card-width));
}

.carousel-track-014a5886 {
    display: flex;
    gap: var(--carousel-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    padding: 0 var(--peek-width);
    box-sizing: border-box;
}
.carousel-track-014a5886::-webkit-scrollbar {
    display: none;
}

.testimonial-card-014a5886 {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    
    width: var(--card-width);
    min-width: var(--card-width);
    max-width: var(--card-width);
    
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    box-sizing: border-box;
}

.stars-014a5886 {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.stars-014a5886 svg {
    width: 20px;
    height: 20px;
    fill: var(--star-color);
}

.quote-text-014a5886 {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.quote-text-014a5886 strong {
    font-weight: 600;
}

.divider-014a5886 {
    display: block;
    height: 1px;
    background-color: var(--border-color);
    margin-top: auto; 
    margin-bottom: 24px;
    border: none;
    width: 100%;
}

.author-info-014a5886 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name-014a5886 {
    font-weight: 600;
    color: var(--text-main);
    font-size: 16px;
    margin: 0;
}

.author-title-014a5886 {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.carousel-footer-014a5886 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 24px;
}

.dots-014a5886 {
    grid-column: 2;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.dot-014a5886 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--dot-inactive);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.dot-014a5886.active {
    background-color: var(--dot-active);
    border-color: var(--dot-active);
}

.controls-014a5886 {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nav-btn-014a5886 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: background-color 0.2s ease;
}

.nav-btn-014a5886:hover {
    background-color: #f3f4f6;
}

.nav-btn-014a5886 svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}