/* ================================
   Recent Comments (Sidebar Widget)
   ================================ */

.recent-comments-box {
    margin: 1rem 0;
    padding: 1rem;
    background: #2a2d32;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
}

.recent-comments-box h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    color: #fff;
}

.rc-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.rc-item:last-child {
    border-bottom: none;
}

.rc-item a {
    text-decoration: none;
    color: #d9dde4;
    display: block;
}

.rc-item a:hover {
    color: #ffffff;
}

.rc-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.rc-author {
    font-weight: bold;
    color: #e6eaff;
}

.rc-date {
    font-size: 0.8rem;
    opacity: 0.6;
}

.rc-body {
    white-space: normal;
    line-height: 1.3;
    color: #cfd5df;
}

