/* Swiper core layout fallback */
.tc-carousel-wrapper.swiper-container {
    position: relative;
    overflow: hidden;
}
.tc-carousel-wrapper .swiper-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    box-sizing: content-box;
    transition-property: transform;
}
.tc-carousel-wrapper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    box-sizing: border-box;
}
.tc-carousel-wrapper .swiper-pagination {
    position: relative;
    text-align: center;
    margin-top: 10px;
}
.tc-carousel-wrapper .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    opacity: 1;
    margin: 0 4px;
    cursor: pointer;
}

.tc-carousel-wrapper {
    position: relative;
    padding-bottom: 40px;
    width: 100%;
}
.tc-card {
    display: flex;
    flex-direction: row-reverse; /* Swaps avatar to the left and testimonial text to the right */
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    gap: 30px;
    margin: 10px;
}
.tc-card-left {
    flex: 1;
}
.tc-card-right {
    flex-shrink: 0;
}
.tc-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.tc-quote {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1;
}
.tc-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.tc-stars {
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}
.tc-stars svg {
    width: 18px;
    height: 18px;
    fill: #FF8A00;
}
.tc-stars svg.tc-star-empty {
    fill: #E0E0E0;
}
.tc-name {
    font-size: 15px;
    font-weight: 600;
}
.swiper-pagination-bullet-active {
    background: #FF7676 !important;
}
@media (max-width: 768px) {
    .tc-card {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }
    .tc-stars {
        justify-content: center;
    }
}