.cgr-box {
    display: flex;
    gap: 24px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.cgr-summary {
    min-width: 210px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cgr-summary strong {
    font-size: 20px;
    font-weight: 700;
}

.cgr-stars {
    color: #F4B400;
    font-size: 18px;
}

.cgr-summary span {
    font-size: 14px;
    color: #666;
}

.cgr-btn {
    margin-top: 8px;
    padding: 7px 14px;
    background: #1A73E8;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cgr-btn:hover {
    background: #185abc;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.35);
}

.cgr-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
}

.cgr-slider::-webkit-scrollbar {
    height: 6px;
}

.cgr-slider::-webkit-scrollbar-thumb {
    background: #cbd5f5;
    border-radius: 4px;
}

.cgr-card {
    min-width: 230px;
    max-width: 260px;
    background: #fafafa;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.cgr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 8px;
}

.cgr-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.cgr-stars-inline {
    font-size: 16px;
    margin-bottom: 6px;
}

.cgr-text {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

/* Dots under slider (for future extension, if needed) */
.cgr-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.cgr-dot {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cgr-dot.active {
    background: #1A73E8;
    transform: scale(1.35);
}

/* Responsive */
@media (max-width: 780px) {
    .cgr-box {
        flex-direction: column;
        padding: 18px;
    }

    .cgr-summary {
        width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .cgr-slider {
        width: 100%;
    }
}
