.son-yorumlar-listesi {
list-style: none;
padding: 0;
margin: 0;
max-width: 700px;
margin: 0 auto;
}
.son-yorumlar-listesi li {
display: flex;
background: #fff;
border-radius: 12px;
padding: 10px 15px;
margin-bottom: 18px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
transition: transform 0.2s, box-shadow 0.2s;
}
.son-yorumlar-listesi li:hover {
transform: translateY(-4px);
box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.avatar {
margin-right: 10px;
flex-shrink: 0;
}
.comment-content {
flex: 1;
}
.comment-author a {
font-weight: 600;
color: #2D585D;
text-decoration: none;
}
.comment-author a:hover {
text-decoration: underline;
}
.comment-text {
font-size: 14px;
color: #333;
line-height: 1.4;
}
.comment-post-title a {
color: #2D585D;
text-decoration: none;
font-size: 14px;
}
.comment-post-title a:hover {
text-decoration: underline;
}
.comment-post-title span {
margin-right: 6px;
color: #2D585D;
}