.review_item .item_inner {
    background-color: var(--typo-color-grey);
    position: relative;
}

.review_item .item_inner:after {
    content: ''; position: absolute;
    top: var(--typo-gap); right: var(--typo-gap);
    width: 2em; height: 2em;
    background: url(../img/google_logo.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.review_item .content_title > * {
    font-size: 1.25em;
}

.review_item .stars {
    position: relative;
    width: 7.5em;
    height: 1.5em;
    margin-bottom: 1em;
}
.review_item .stars:before {
    content: ''; position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: #FBBC04;
    mask: var(--typo-svg-star);
    mask-size: contain;
}
.review_item .stars:after {
    content: ''; position: absolute;
    left: 100%; top: 0; width: 1.5em;
    height: 1.5em; background-color: #4285F4;
    mask: var(--typo-svg-checked-badge);
    mask-size: contain;
}