.girc-comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.girc-comment-item {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.girc-comment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.girc-comment-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.girc-avatar-col {
    flex-shrink: 0;
    line-height: 0;
}

.girc-avatar {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.girc-avatar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    font-size: 2rem;
}

.girc-avatar-default .bi {
    line-height: 1;
}

.girc-content-col {
    flex: 1;
    min-width: 0;
}

.girc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.girc-author-link,
.girc-author-clean {
    font-weight: 600;
    font-size: 0.9rem;
    color: #212112;
    text-decoration: none;
}

.girc-author-link:hover {
    color: #dc3545;
}

.girc-author-spam {
    font-weight: 600;
    font-size: 0.9rem;
    color: #212112;
    cursor: default;
}

.girc-rating {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.girc-excerpt {
    display: block;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #555;
    text-decoration: none;
    margin-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.girc-excerpt:hover {
    color: #dc3545;
}

.girc-meta {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.4;
}

.girc-post-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.girc-post-link:hover {
    color: #dc3545;
}

.girc-empty {
    text-align: center;
    padding: 25px 15px;
    color: #999;
}

.girc-empty .bi {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
    opacity: 0.5;
}

.girc-author-trackback {
    font-weight: 600;
    font-size: 0.9rem;
    color: #212112;
    cursor: default;
    text-decoration: none;
}

@media (max-width: 768px) {
    .girc-comment-inner {
        gap: 10px;
    }

    .girc-avatar {
        width: 36px;
        height: 36px;
    }

    .girc-avatar-default {
        width: 36px;
        height: 36px;
        font-size: 1.7rem;
    }
}