/* Testimonial Carousel Slider — aum-tcs */
.aum-tcs-wrap {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Track */
.aum-tcs-track-wrap { overflow: hidden; }
.aum-tcs-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Slide */
.aum-tcs-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 56px 80px;
    background-color: var(--card-bg, #ffffff);
    border: 1px solid var(--border, rgba(0,0,0,0.08));
    border-radius: 20px;
    box-sizing: border-box;
}

/* Quote icon */
.aum-tcs-quote-icon {
    color: var(--primary, #3b82f6);
    line-height: 0;
}
.aum-tcs-quote-icon svg { width: 32px; height: 24px; display: block; }

/* Stars */
.aum-tcs-stars { display: flex; gap: 3px; font-size: 15px; line-height: 1; }
.aum-tcs-star-filled { color: #f59e0b; }
.aum-tcs-star-empty  { color: var(--border, rgba(0,0,0,0.15)); }

/* Quote text */
.aum-tcs-quote {
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1.65;
    color: var(--text-on-bg, #111110);
    margin: 0;
    font-style: normal;
    letter-spacing: -0.01em;
    flex: 1;
}

/* Author */
.aum-tcs-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}
.aum-tcs-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.aum-tcs-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary, #3b82f6);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}
.aum-tcs-author-info { display: flex; flex-direction: column; gap: 3px; }
.aum-tcs-name { display: block; font-size: 15px; font-weight: 600; color: var(--text-on-bg, #111110); }
.aum-tcs-role { display: block; font-size: 13px; color: var(--text-muted, #6f6e69); }

/* Arrows */
.aum-tcs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg, #ffffff);
    border: 1px solid var(--border, rgba(0,0,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-on-bg, #111110);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    z-index: 2;
    padding: 0;
}
.aum-tcs-arrow:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.aum-tcs-arrow--prev { left: 12px; }
.aum-tcs-arrow--next { right: 12px; }
.aum-tcs-arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.aum-tcs-arrow--next:hover { transform: translateY(-50%) translateX(2px); }

/* Dots */
.aum-tcs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.aum-tcs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border, rgba(0,0,0,0.2));
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, width 0.2s ease;
}
.aum-tcs-dot--active {
    background-color: var(--primary, #3b82f6);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .aum-tcs-slide { padding: 36px 56px; }
    .aum-tcs-arrow--prev { left: 8px; }
    .aum-tcs-arrow--next { right: 8px; }
}
