.gmb-reviews-wrap {
    max-width: 100%;
    font-family: inherit;
}

.gmb-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 1.1em;
}

.gmb-summary-rating {
    font-weight: 700;
    font-size: 1.4em;
}

.gmb-stars {
    color: #fbbc04;
    letter-spacing: 1px;
}

.gmb-summary-count {
    color: #666;
    font-size: 0.85em;
}

/* Grade: cards lado a lado, quebrando linha conforme a largura */
.gmb-style-grid .gmb-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

/* Lista: cards empilhados */
.gmb-style-lista .gmb-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Carrossel: rolagem horizontal simples, sem dependência de biblioteca externa */
.gmb-style-carrossel .gmb-reviews-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}
.gmb-style-carrossel .gmb-review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.gmb-review-card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}

.gmb-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.gmb-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.gmb-review-author {
    font-weight: 600;
    display: block;
}

.gmb-review-time {
    color: #888;
    font-size: 0.8em;
    margin-left: 6px;
}

.gmb-review-text {
    font-size: 0.92em;
    line-height: 1.5;
    color: #333;
    /* Trunca reviews muito longos visualmente sem cortar o texto do schema.org */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gmb-review-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85em;
    text-decoration: none;
}

.gmb-see-all {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    text-decoration: none;
}
