.tc-5e908408-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px; /* Room for arrows */
}

.tc-5e908408-card-wrapper {
    padding-top: 50px; /* Space for the overlapping avatar */
    position: relative;
}

.tc-5e908408-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 70px 40px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 0 10px;
}

.tc-5e908408-avatar-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Force perfect circle on container */
    overflow: hidden; /* Clip anything outside the circle */
    border: 6px solid #f6e6d1;
    z-index: 10;
    background: #fff;
    box-sizing: content-box; /* Ensure border is drawn outside the 100x100 circle */
}

.tc-5e908408-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover; /* Fill the circle proportionally */
    display: block;
    border: none; /* Removed from image to prevent doubling up */
    border-radius: 0; /* Let the container handle rounding */
}

.tc-5e908408-stars {
    color: #f8b13c;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.tc-5e908408-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.tc-5e908408-content {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.tc-5e908408-author {
    color: #6a95cc;
    font-size: 16px;
    font-weight: 500;
}

.tc-5e908408-carousel {
    overflow: visible !important; /* Allow avatar to break out of slide */
    width: 100%;
    position: static; 
}

/* Parent wrapper handles clipping of sides instead */
.tc-5e908408-wrapper {
    overflow: hidden;
    padding-top: 20px; /* Extra room for shadow/overlap */
    padding-bottom: 20px;
}

/* Arrows */
.tc-5e908408-wrapper .swiper-button-prev,
.tc-5e908408-wrapper .swiper-button-next {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
}

.tc-5e908408-wrapper .swiper-button-prev:after,
.tc-5e908408-wrapper .swiper-button-next:after {
    display: none;
}

.tc-5e908408-wrapper .swiper-button-prev {
    left: 0;
}

.tc-5e908408-wrapper .swiper-button-next {
    right: 0;
}