.sgrc-carousel {
    position: relative;
    max-width: 500px;
    margin: 2rem auto;
    overflow: hidden;
}

.sgrc-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.sgrc-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
}

.sgrc-review-card {
    text-align: center;
    font-family: inherit;
}

.sgrc-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 0.5rem;
}

.sgrc-avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    font-size: 1.5rem;
    border: 2px solid #ccc;
}

.sgrc-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sgrc-stars {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.sgrc-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.sgrc-prev,
.sgrc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.05);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.sgrc-prev {
    left: 0.5rem;
}

.sgrc-next {
    right: 0.5rem;
}
