.reviewsync__source {
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin: 0 auto;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    color: #202124;
}

.reviewsync__title {
    font-size: 1.1rem;
    font-weight: 500;
}

.reviewsync__summary {
    font-size: 0.9rem;
}

.reviewsync__list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x proximity;
}

.reviewsync__item {
    width: 100%;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
}

.reviewsync__rating {
    font-size: 1rem;
    color: #fbbc05;
    font-weight: 500;
    margin: 0 0 8px;
}

.reviewsync__rating span {
    font-size: 0.85rem;
    color: #5f6368;
    margin-left: 4px;
}

.reviewsync__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #202124;
    margin: 8px 0 0;
    height: 6em;
    overflow: hidden;
}

.reviewsync__meta {
    font-size: 0.9375rem;
    font-weight: bold;
    color: #202124;
    margin: 0 0 8px;
}

.reviewsync__meta__date {
    font-size: 0.875rem;
    color: #5f6368;
}

.reviewsync__stars {
    --rating-percent: 100%;
    width: 110px;
    height: 18px;
    background: linear-gradient(90deg, #fbbc05 var(--rating-percent), #d9d9d9 var(--rating-percent));
    mask-image: url(../stars.svg);
    mask-size: contain;
    mask-position: center;
}

/* Summary */
.reviewsync_summary {
    background: #fff;
    color: #5f6368;
    white-space: nowrap;
    text-align: center;
    font-size: 0.75rem;
}

.reviewsync_summary strong {
    font-weight: 700;
}

.reviewsync_summary__logo {
    display: block;
    margin: 0 auto 6px;
    height: auto;
}

.reviewsync_summary__stars {
    width: 110px;
    height: 18px;
    margin: 0 auto 6px;
}

.reviewsync_summary--standalone {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
}

.reviewsync_summary--header {
    font-size: 0.9375rem;
    margin: 0 auto 16px;
}

.reviewsync_summary--header .reviewsync_summary__logo {
    width: 100%;
    max-width: 195px;
    margin: 0 auto 10px;
}

.reviewsync_summary--header .reviewsync_summary__stars {
    width: 165px;
    height: 27px;
    margin: 0 auto 8px;
}

@media (min-width: 460px) {
    .reviewsync__source {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        padding: 24px;
    }

    .reviewsync_summary--header,
    .reviewsync__list {
        width: calc(50% - 8px);
    }

    .reviewsync_summary--header {
        margin: 0;
    }
}

@media (min-width: 768px) {
    .reviewsync_summary--header {
        width: calc(33.333% - 8px);
    }

    .reviewsync__list {
        width: calc(66.666% - 8px);
    }

    .reviewsync__item {
        width: calc(50% - 8px);
    }
}

@media (min-width: 1024px) {
    .reviewsync_summary--header {
        width: calc(25% - 8px);
    }

    .reviewsync__list {
        width: calc(75% - 8px);
    }

    .reviewsync__item {
        width: calc(33.333% - 11px);
    }
}
