.grid-reviews {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
padding: 16px;
box-sizing: border-box;
text-align: left;
}
.grm-review {
display: flex;
flex-direction: column;
gap: .3em;
background: #f5f5f5;
border-radius: 15px;
padding: 20px;
}
.grm-review-head {
display: flex;
gap: 20px;
justify-content: flex-start;
align-items: center;
}
p.review-name {
color: #154fc1;
font-size: 14px;
font-weight: 700;
line-height: 1.2em;
margin: 0;
}
span.review-published-at {
font-size: 11px;
color: #555;
line-height: 1.2em;
}
.review-stars {
color: #ff9900;
font-size: 18px; 
}
.grm-review-body {
color: #333;
font-size: 14px;
line-height: 1.25em;
font-weight: 400;
}
@media screen and (max-width: 480px) {
.grid-reviews {
grid-template-columns: 100%;
}
}