.reviews-grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.review-grid-item {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
padding: 20px;
transition: transform 0.3s ease;
}
.review-grid-item:hover {
transform: translateY(-5px);
}
.review-grid-content {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
height: 320px;
}
.review-grid-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
margin-right: 15px;
}
.review-grid-author {
justify-content: center;
display: flex;
flex-direction: column;
gap: 5px;
text-align: center;
align-items: center;
}
.author-name {
font-weight: bold;
color: #333;
}
.rating {
display: flex;
gap: 5px;
color: #ffd700;
}
.star.filled {
color: #ffd700;
}
.review-grid-text {
color: #666;
line-height: 1.6;
text-align: center;
align-items: center;
font-size: 14px;
overflow-y: auto;
}
.review-date {
font-size: 12px;
color: #888;
}