.s4-google-rating-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.google-reviews-rating-summary {
    --gr-main-color: #76020E;
    --gr-bg-color: #FFFFFF;
    --gr-star-fill-color: #76020E;
    --gr-star-empty-color: #E3C7CB;
    display: inline-block;
    background: var(--gr-bg-color);
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: fit-content;
}

.google-reviews-rating-summary__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.google-reviews-rating-summary__value {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    color: var(--gr-main-color);
}

.google-reviews-rating-summary__stars {
    padding-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-reviews-rating-summary__star {
    position: relative;
    width: clamp(14px, 0.9vw, 18px);
    height: clamp(14px, 0.9vw, 18px);
    line-height: 1;
    display: inline-flex;
}

.google-reviews-rating-summary__star svg,
.google-reviews-rating-summary__star-fill,
.google-reviews-rating-summary__star-empty {
    width: 100%;
    height: 100%;
    display: block;
}

.google-reviews-rating-summary__star-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    -webkit-clip-path: inset(0 calc(100% - var(--fill, 0%)) 0 0);
    clip-path: inset(0 calc(100% - var(--fill, 0%)) 0 0);
}

.google-reviews-rating-summary__count {
    font-size: max(0.95rem, 12px);
    line-height: 1.1;
    color: var(--gr-main-color);
}

.google-reviews-rating-summary__error {
    color: #B42318;
    font-size: 14px;
}

.google-review-cta {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.google-review-cta__cta-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 8px;

}

.google-review-cta__cta-icon svg {
    width: clamp(26px, 1.3vw, 34px);
    height: clamp(26px, 1.3vw, 34px);
}

.google-review-cta__cta-text {
    background: #4085F5;
    color: #FFFFFF;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: clamp(11px, 0.9vw, 14px);
    text-align: center;
    max-width: 170px;
    line-height: 1.2;
}

@media screen and (max-width: 1399px) {
    .s4-google-rating-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}