.wx-google-reviews {
    padding: clamp(34px, 5vw, 70px) clamp(16px, 4vw, 42px);
    background: var(--google-reviews-bg, #f8fafc);
    color: #111827;
}

.wx-google-reviews__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.wx-google-reviews__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.wx-google-reviews__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5f6368;
    font-size: .92rem;
    font-weight: 700;
}

.wx-google-reviews__g {
    width: 22px;
    height: 22px;
    display: block;
}

.wx-google-reviews h2 {
    margin: 8px 0 0;
    color: #111827;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.wx-google-reviews__head p {
    max-width: 680px;
    margin: 10px 0 0;
    color: #64748b;
    line-height: 1.6;
}

.wx-google-reviews__verify,
.wx-google-review-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid #dadce0;
    border-radius: 999px;
    background: #fff;
    color: #1a73e8;
    font-weight: 700;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.wx-google-reviews__verify:hover,
.wx-google-review-card__link:hover {
    border-color: rgba(26, 115, 232, .45);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .12);
    transform: translateY(-1px);
}

.wx-google-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wx-google-review-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.wx-google-review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wx-google-review-card__top img,
.wx-google-review-card__avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 999px;
    object-fit: cover;
    background: #e8f0fe;
}

.wx-google-review-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-weight: 800;
}

.wx-google-review-card strong {
    display: block;
    color: #202124;
    font-size: 1rem;
}

.wx-google-review-card small {
    display: block;
    margin-top: 2px;
    color: #80868b;
}

.wx-google-review-card__stars {
    color: #fbbc04;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.wx-google-review-card__stars span {
    color: #dadce0;
}

.wx-google-review-card p {
    margin: 0;
    color: #3c4043;
    line-height: 1.62;
}

.wx-google-review-card__link {
    width: fit-content;
    margin-top: auto;
    min-height: 36px;
    padding-inline: 12px;
    font-size: .9rem;
}

@media (max-width: 900px) {
    .wx-google-reviews__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .wx-google-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .wx-google-reviews__grid {
        grid-template-columns: 1fr;
    }
}
