.google-company-review a {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: end;
}

.google-company-review a span {
    color: #fff;
}

.google-company-review a span.mark-divider {
    align-self: center;
    height: 3px;
    width: 3px;
    border-radius: 50%;
    background-color: #fff;
}

.google-company-review a span.google-company-mark {
    font-weight: 700;
}

.google-company-review.mobile{
    display: none;
}

@media(max-width: 75em){
    .google-company-review a {
        justify-content: end;
    }
    
    .google-company-review.mobile{
        display: none;
    }
}

@media (max-width: 56.25em){
    .google-company-review a {
        justify-content: center;
    }
    
    .google-company-review.desktop{
        display: none;
    }
    
    .google-company-review.mobile{
        display: block;
    }
}