.block-google-reviews {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.block-google-reviews .container {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.google-reviews__top {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px 0;
    height: 100%;
}
.google-reviews__top .section-text-block {
    margin-bottom: 4rem;
}
.google-reviews__top .section-text-block h2 {
    margin-bottom: 22px;
}
.google-reviews__top .section-text-block p {
    margin-bottom: 0;
}
.google-reviews__title {
    margin: 0 0 40px;
    text-align: center;
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 700;
}

.google-reviews__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.google-reviews__card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: rgba(10, 15, 20, 0.9);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 3;
}

.google-reviews__summary-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.google-reviews__google-logo {
    width: 90px;
    max-width: 90px;
    height: auto;
}

.google-reviews__google-logo .g-blue {
    color: #4285f4;
}
.google-reviews__google-logo .g-red {
    color: #ea4335;
}
.google-reviews__google-logo .g-yellow {
    color: #fbbc05;
}
.google-reviews__google-logo .g-green {
    color: #34a853;
}

.google-reviews__rating-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}
.google-reviews__rating-row img {
    width: 186px;
    max-width: 186px;
    height: auto;
}
.google-reviews__rating-value {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #d4d1cb;
}

.google-reviews__stars,
.google-reviews__review-stars {
    width: 186px;
    max-width: 186px;
    height: auto;
}

.google-reviews__reviews-count {
    font-weight: 500;
    font-size: 26px;
    line-height: 34px;
    color: #d4d1cb;
}

.google-reviews__verified-text,
.google-reviews__reviewer-sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #aba59c;
}

.google-reviews__maps-btn {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}
.google-reviews__maps-btn .btn-label {
    font-weight: 700;
    font-size: 20px;
    line-height: 16px;
}
.google-reviews__maps-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.google-reviews__review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.google-reviews__review-person {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.google-reviews__review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.google-reviews__review-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #444;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.google-reviews__reviewer-name {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 4px;
}

.google-reviews__review-menu {
    font-size: 22px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
}

.google-reviews__review-stars {
    margin-bottom: 18px;
}

.google-reviews__review-text {
    font-size: 18px;
    line-height: 1.55;
    color: #fff;
}

.google-reviews__review-text p {
    margin: 0;
}
.google-reviews__review-text p a {
    color: #4babe7;
}
.google-reviews__map {
    position: relative;
    height: 440px;
    overflow: hidden;
    z-index: 1;
}
.google-reviews__marker {
    width: 32px;
    height: auto;
}
.google-reviews__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(0.9) brightness(0.7);
}

@media (max-width: 991px) {
    .google-reviews__cards {
        grid-template-columns: 1fr;
    }

    .google-reviews__map {
        margin-top: 24px;
        height: 320px;
    }
}

@media (max-width: 767px) {
    .google-reviews__top {
        padding-top: 48px;
    }

    .google-reviews__title {
        margin-bottom: 28px;
    }

    .google-reviews__card {
        padding: 22px;
        border-radius: 22px;
    }

    .google-reviews__summary-head {
        gap: 16px;
        margin-bottom: 22px;
    }

    .google-reviews__google-logo {
        font-size: 46px;
    }

    .google-reviews__map {
        height: 260px;
    }
}
