/* OXBikers Google Reviews V13 */
.ox-google-reviews {
    padding: 88px 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(230, 103, 38, .10), transparent 28%),
        #f6f7f9;
}

.ox-google-reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}

.ox-google-reviews-header h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.ox-google-reviews-header p:not(.ox-section-eyebrow) {
    max-width: 720px;
    margin: 0;
    color: #61666d;
}

.ox-google-score {
    flex: 0 0 auto;
    min-width: 230px;
    padding: 18px 22px;
    border: 1px solid #e2e4e8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(20, 24, 31, .08);
}

.ox-google-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    font-weight: 700;
    color: #202124;
}

.ox-google-brand i,
.ox-review-google-icon {
    color: #4285f4;
}

.ox-score-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ox-score-line strong {
    font-size: 30px;
    color: #17191c;
}

.ox-google-stars {
    letter-spacing: 2px;
    color: #fbbc04;
    font-size: 17px;
}

.ox-google-score small {
    color: #6f7378;
}

.ox-google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ox-google-review-card {
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 25px;
    border: 1px solid #e4e6e9;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(20, 24, 31, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.ox-google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 46px rgba(20, 24, 31, .12);
}

.ox-review-author {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 12px;
}

.ox-review-author img,
.ox-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.ox-review-author img {
    object-fit: cover;
}

.ox-review-avatar {
    display: grid;
    place-items: center;
    background: #1f2733;
    color: #fff;
    font-weight: 800;
}

.ox-review-author a,
.ox-review-author strong {
    display: block;
    color: #1c1f23;
    font-weight: 800;
    line-height: 1.25;
}

.ox-review-author small {
    display: block;
    margin-top: 3px;
    color: #777c83;
}

.ox-review-google-icon {
    font-size: 20px;
}

.ox-review-rating {
    margin: 18px 0 12px;
    color: #fbbc04;
    letter-spacing: 2px;
}

.ox-review-text {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 18px;
    color: #50555c;
    line-height: 1.7;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.ox-review-source {
    margin-top: auto;
    color: #d75b20;
    font-size: 13px;
    font-weight: 700;
}

.ox-google-reviews-actions,
.ox-google-reviews-empty {
    margin-top: 34px;
    text-align: center;
}

.ox-google-reviews-actions .button-primary i {
    margin-right: 8px;
}

.ox-google-reviews-empty {
    padding: 36px;
    border: 1px dashed #ccd0d5;
    border-radius: 18px;
    background: #fff;
}

.ox-google-reviews-empty > i {
    margin-bottom: 12px;
    color: #4285f4;
    font-size: 30px;
}

@media (max-width: 991px) {
    .ox-google-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ox-google-reviews-header {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .ox-google-reviews {
        padding: 62px 0;
    }

    .ox-google-reviews-header {
        display: block;
    }

    .ox-google-score {
        width: 100%;
        margin-top: 24px;
    }

    .ox-google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .ox-google-review-card {
        min-height: auto;
    }
}
