.recensioni-container {
max-width: 940px;
margin: 0 auto;
}
.recensione {
border: 1px solid #eee;
border-radius: 8px;
padding: 20px;
width: 300px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.recensione-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.avatar {
width: 60px;
height: 60px;
border-radius: 50%;
margin-right: 15px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
font-weight: bold;
overflow: hidden;
}
.avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.recensione-info h3 {
margin: 0;
font-size: 16px;
font-weight: bold;
}
.titolo-professionale {
font-size: 12px;
font-style: italic;
margin: 0;
}
.rating .star {
font-size: 20px;
color: #ddd;
}
.rating .star.filled {
color: #f39c12;
}
.recensione-body {
margin-top: 15px;
}
.recensione-date {
text-align: right;
margin-top: 15px;
}
.recensione-date p {
font-size: 12px;
color: #999;
margin: 0;
}
@media (max-width: 959px) {
.recensioni-container {
max-width: 620px;
}
}
@media (max-width: 639px) {
.recensioni-container {
max-width: 300px;
}
.recensione {
width: 100%;
}
}