/* Container ensures the card uses exactly 100% and makes room for the overlapping image */
.tc-container-bbbee50d {
    width: 100%;
    /* Leave room on the left for the absolute image overlay */
    padding-left: calc(var(--tc-img-size-bbbee50d, 80px) / 2);
    box-sizing: border-box;
}

.tc-card-bbbee50d {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: inherit;
    width: 100%;
    min-width: 0;
    border-style: none; /* Elementor default fallback style if not configured, or overridden by style group controls */
    /* Extra padding left to clear the other half of the image inside the card */
    padding-left: calc( (var(--tc-img-size-bbbee50d, 80px) / 2) + 20px );
    /* transition for background hover and box-shadow */
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* Image container using absolute positioning relative to the card */
.tc-left-col-bbbee50d {
    position: absolute;
    /* Center it exactly on the left edge of the card */
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Strict Image Formatting - completely circular at all times */
.tc-photo-bbbee50d {
    width: var(--tc-img-size-bbbee50d, 80px);
    height: var(--tc-img-size-bbbee50d, 80px);
    border-radius: 50% !important;
    overflow: hidden;
    object-fit: cover !important;
    aspect-ratio: 1/1;
    border-style: solid;
    display: block;
    flex-shrink: 0 !important;
    max-width: none !important;
}

/* Right Content Column (Now main content area) */
.tc-right-col-bbbee50d {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tc-quote-icon-bbbee50d {
    font-family: serif;
    margin-bottom: 5px;
    margin-top: -10px;
}

.tc-quote-text-bbbee50d {
    margin-bottom: 12px;
}

.tc-name-bbbee50d {
    font-weight: bold;
    margin-bottom: 4px;
}

.tc-stars-bbbee50d {
    line-height: 1;
}